:root{
    --font:"Poppins", sans-serif;
    --animate-duration: 1.5s;
    --animate-delay: 1.5s;
  }
  /* html,
body {
    &,
    * {
        cursor: none;

    }
} * 
  .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }

  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }

  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }

  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }

  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }

  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }

  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }

  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }

  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }

  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }

  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
/*scroll-btn*/
.scroll-btn {
  position: fixed;
  right: 20px;
  bottom: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  background: #1e30b3;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}
.scroll-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-btn.show i {
  animation: scroll-up 1.5s linear infinite;
  -webkit-animation: scroll-up 1.5s linear infinite;
  fill: #fff;
  transition: fill 0.3s;
}

@keyframes scroll-up {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  40%, 60% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

@-webkit-keyframes scroll-up {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  40%, 60% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
/*scroll-btn*/
/* Login_page_start */
.main_login
{
    background: #fff;
}
.loginpage {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_img
{
    background: linear-gradient(0deg,rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 36%, rgba(119, 172, 252, 1) 100%);
    padding: 10px;
    width: 50%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.login_img h2 {
    font-size: 32px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    margin: 15px;
    text-transform: capitalize;
    text-align: center;
}
.login_img h2 strong {
    font-size: 42px;
    font-family: var(--font);
}
.login_img h3 {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font);
    color: #fff;
    margin: 15px;
    text-transform: capitalize;
    text-align: center;
}
.login_img img {
    margin: 0 auto;
    display: block;
    width: 380px;
    max-width: 100%;
}
.login_form
{
    background:#efefef;
    padding: 10px;
    width: 50%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.login_form_inner {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    box-shadow: inset 0 0 5px #444;
    border-radius: 20px;
    width: 75%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.login_form_inner h2 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #0000a5;
    text-align: center;
    margin: 15px 0 5px 0;
}
.login_form_inner p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #2d76ff;
    text-align: center;
    text-transform: capitalize;
}
.loginlogo img {
    width: 120px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.login_form_inner form {
    padding: 15px;
    box-shadow: inset 0 0 5px #999;
    border-radius: 20px;
    margin: 20px 0;
}

.login_checkbox label {
    font-size: 12px !important;
}
.login_checkbox input {
    margin: 0 5px 0 0;
}
.login_checkbox {
    display: flex;
    align-items: center;
    justify-content: start;
}
.login_form_inner form label {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #0000a5;
    text-transform: capitalize;
}
.login_form_inner form input {
    border: 1px solid #ccc;
    box-shadow: inset 0 0 5px #ccc;
    font-size: 14px;
    background: #fff;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.login_form_inner form input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 5px #ccc !important;
    box-shadow: inset 0 0 5px #ccc !important;
    -webkit-text-fill-color: #000 !important; /* text color */
    transition: background-color 5000s ease-in-out 0s; /* prevent flicker */
}
.login_form_inner form button {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    border: none;
    background: #0000a5;
    text-transform: uppercase;
}
.circle_element {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(0deg,rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 36%, rgba(119, 172, 252, 1) 100%);
    position: absolute;
    top: 22px;
    left: 62px;
    animation: moveCircle 5s linear infinite; /* animation applied */
}
@keyframes moveCircle {
    0% {
        top: 0px;
        left: 0px;
    }
    50% {
        top: 22px;
        left: 62px;
    }
    100% {
        top: 0px;
        left: 0px;
    }
}
.circle_element2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg,rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 36%, rgba(119, 172, 252, 1) 100%);
    position: absolute;
    bottom: 22px;
    right: 80px;
    animation: moveCircle2 5s linear infinite; /* animation applied */
}
@keyframes moveCircle2 {
    0% {
        bottom: 0px;
        right: 0px;
    }
    50% {
        bottom: 22px;
        right: 80px;
    }
    100% {
        bottom: 0px;
        right: 0px;
    }
}
/* Login_page_end */
/* Dashboard_page_start */
.main_dashboard
{
    padding:0;
    background: #fefefe;
}
.sidenav {
  height: 100%;
  width: 250px; /* Open by default */
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  background:linear-gradient(0deg,rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 36%, rgba(119, 172, 252, 1) 100%);
  overflow-x: hidden;
  transition: 0.5s;
}
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size:16px;
  font-weight: 500;
  font-family: var(--font);
  color: #fff;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav_logo a {
    padding: 0;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}
.sidenav_logo a:focus-visible {
   outline: none;
   border: none;
   box-shadow: none;
}
#main {
  margin-left: 250px;
  transition: margin-left 0.5s;
}
.main_inner_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px;
    background: #fbfbfb;
    border-bottom: 1px solid #ddd;
}
.main_inner1 {
    display: flex;
    align-items: center;
    width: 100%;
}
.main_inner2 {
    display: flex;
    align-items: center;
}
.employee_notify_icon
{
    position: relative;
}
.employee_setting_icon a {
    font-size: 16px;
    color: #666;
    margin: 0 0 0 10px;
    background: #f1f1f1;
    padding: 5px 10px;
    box-shadow: 0 0 5px #ccc;
    text-decoration: none;
}
.main_inner1 .employee_setting_icon a i{
-webkit-animation: fa_spin 2s infinite linear;
    animation: fa_spin 2s infinite linear;
}
@keyframes fa_spin {
    0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(1turn);
}
}
.employee_notify_icon a {
    font-size: 16px;
    color: #666;
    margin: 0 0 0 10px;
    background: #f1f1f1;
    padding: 5px 10px;
    box-shadow: 0 0 5px #ccc;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.employee_notify_icon a i {
-webkit-animation: ring 4s 4s infinite;
    animation: ring 4s 4s infinite;
}
@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}
.notification_status_dot {
    width: 6px;
    height: 6px;
    background: #2d76ff;
    border-radius: 50%;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
}
.notification_status_dot:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #4d8bff;
    top: -4px;
    left: -4px;
    background: #4d8bff;
    z-index: -1;
}
@keyframes pulsate1 {
    0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
}
100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
}
}
.notification_top_box {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
    position: absolute;
    right: 58px;
    width: 35%;
    max-height: 0;           /* collapsed */
    overflow: hidden;        /* hide content when collapsed */
    opacity: 0;              /* fade out */
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    top: 50px;
    z-index: 9;
    border-radius: 5px;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent; /* thumb | track */
}
.notification_top_box.active {
    max-height: 400px;       /* big enough to fit content */
    opacity: 1;           /* fade in */
}
/* Chrome, Edge, Safari */
.notification_top_box::-webkit-scrollbar {
    width: 5px; /* scrollbar width */
}
.notification_top_box::-webkit-scrollbar-thumb {
    background: #888; /* scrollbar thumb color */
    border-radius: 5px;
}
.notification_top_box::-webkit-scrollbar-thumb:hover {
    background: #555; /* hover effect */
}
.notification_top_box h2 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border-bottom: 4px solid #777;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
}
.notification_top_box .notify_count {
    font-size: 12px;
    font-weight: bold;
    font-family: var(--font);
    color: #0000a5;
}
.notify_emp_list {
    display: flex;
    align-items: center;
    justify-content: start;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 0;
}
.notify_emp_list .notify_emp_list_img
 {
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
}
.notify_emp_list .notify_emp_list_img img {
    width: 50px;
    height: 50px;
    max-width: 100%;
    border-radius: 10px;
}
.notify_emp_list_text h3 {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    margin: 0;
}
.notify_emp_list_text p {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    text-transform: capitalize;
    color: #444;
    margin: 0;
}
.notify_emp_list_text span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
.employee_profile_icon a {
    font-size: 16px;
    color: #666;
    margin: 0 0 0 10px;
    box-shadow: 0 0 5px #ccc;
    text-decoration: none;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
}
.emp_profile_icon_box {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
    position: absolute;
    right: 10px;
    width: 15%;
    max-height: 0;           /* collapsed */
    overflow: hidden;        /* hide content when collapsed */
    opacity: 0;              /* fade out */
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    top: 60px;
    z-index: 9;
    border-radius: 5px;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent; /* thumb | track */
}
.emp_profile_icon_box.active {
    max-height: 358px;       /* big enough to fit content */
    opacity: 1;           /* fade in */
}
.emp_profile_icon_box .profile_icon_img {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    margin: 0 0 10px 0;
}
.emp_profile_icon_box .profile_icon_img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    max-width: 100%;
}
.emp_profile_icon_box .profile_icon_img strong {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    margin: 0 0 0 10px;
}
.emp_profile_icon_box .profile_icon_img strong span {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    display: block;
    color: #666;
    line-break: anywhere;
}
.emp_profile_icon_box .profile_icon_list ul {
    margin: 0;
    padding: 0;
}
.emp_profile_icon_box .profile_icon_list ul li {
    display: block;
    list-style: none;
    padding: 5px;
}
.emp_profile_icon_box .profile_icon_list ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    display: block;
    transition: all 0.2s;
}
.emp_profile_icon_box .profile_icon_list ul li a:hover {
    color: #2d76ff;
}
.emp_profile_icon_box .profile_icon_list ul li a i {
    font-size: 16px;
    color: #999;
    margin: 0 5px 0 0;
    width: 25px;
    transition: all 0.2s;
}
.emp_profile_icon_box .profile_icon_list ul li a:hover i {
    color: #2d76ff;
    transform: scale(1.1);
}
.employee_profile_icon a img {
    width: 35px;
    height: 35px;
    max-width: 100%;
    border-radius: 50%;
}
/* Toggle button */
#toggleBtn {
    background:linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    box-shadow:0 0 5px #ccc;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 18px;
    left: 250px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    z-index: 2;
    transition: left 0.5s;
}
#toggleBtn i {
 font-size: 16px;
 color: #fff;
}
#main #main_inner_search {
    padding:6px 0;
    margin: 0 0 0 22px;
    width: 20%;
}
#main #main_inner_search input {
    height: 30px;
    border: 1px solid #666;
    box-shadow: 0 0 5px #ccc;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    padding: 2px 5px;
}
#main #main_inner_search button {
    height: 30px;
    padding: 0 10px;
    border-radius: 0;
    background: #2d76ff;
    color: #fff;
    line-height: 0;
    font-size: 16px;
    border: 1px solid #2d76ff;
    box-shadow: 0 0 5px #ccc;

}
.sidenav_logo {
    display: block;
    background: #fff;
    padding: 10px 10px 10px 10px;
    text-align: center;
    box-shadow:inset 0 0 5px #2d76ff;
}
.sidenav_logo img {
    width: 60px;
    max-width: 100%;
}
.shrink .sidemenu ul li a span{
    display: none;
}
.side_nav_submenu {
    margin: 0;
    padding: 0;
}
.side_nav_submenu li {
    display: block;
    list-style: none;
}
.side_nav_submenu li a {
    display: block;
    margin: 5px 0;
    padding: 5px 0 5px 30px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    text-decoration: none;
    color: #0000a5;
    background: rgba(255, 255, 255, 0.2);
}
.sidemenu ul {
    margin: 0;
    padding: 0;
}
.sidemenu ul li {
    list-style: none;
    display: block;
}
.sidemenu ul h5 {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 0.5) 0%, rgba(29, 119, 204, 0.5) 60%, rgba(119, 172, 252, 0.5) 100%);
    padding: 5px;
    box-shadow: inset 0 0 5px #fff;
    margin: 2px 0;
}
.shrink .sidemenu ul h5 {
    font-size: 10px;
    text-align: center;
}
.sidemenu ul li a.nav-link
 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    padding: 5px 0 5px 20px;
    text-align: left;
    border-bottom: 0.5px solid #fff;
}
.sidemenu ul li a.nav-link i {
    font-size: 14px;
    margin: 2px 5px 0 0;
    width: 20px;
    height: 15px;
}
.sidemenu ul.dropdown-menu.show {
    width: 100%;
    background: #0c273b;
    display: block;
}
.sidemenu ul.dropdown-menu.show li {
    display: block;
    list-style: none;
}
.sidemenu ul.dropdown-menu.show li a.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    padding: 4px 0 5px 16px;
    transition: all 0.4s ease;
}
.sidemenu ul.dropdown-menu.show li a.dropdown-item.active
{
    background: #0000a5;
}
.sidemenu ul.dropdown-menu.show li a.dropdown-item:hover{
    background: none;
    color: #0000a5;
}
.sidemenu ul.dropdown-menu.show li a.dropdown-item:focus{
    background: none;
    color: #fff;
}
.sidemenu ul.dropdown-menu.show li a.dropdown-item:focus-visible{
    background: none;
    color: #fff;
    outline: none;
    border: none;
}
/* employee-details-box-start */
.employee_details_box
{
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
}
.employee_name_box h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.employee_breadcrumb {
    display: flex;
    align-items: center;
}
.employee_breadcrumb i
 {
    font-size: 12px;
    color: #333;
    margin: 0 5px 0 0;
}
.employee_breadcrumb h5 {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    color: #999;
    margin: 0 0 0 10px;
}
.employee_breadcrumb span {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    margin: 0 0 0 10px;
}
.employee_setting_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.employee_setting_box ul {
    margin: 0;
    padding: 0;
}
.employee_setting_box ul li {
    list-style: none;
    display: block;
}
.employee_setting_box ul li > a {
    font-size: 14px;
    font-family: var(--font);
    font-weight: 500;
    color: #fff;
    background:linear-gradient(45deg,rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ddd;
    border: 1px solid #ddd;
    width: 160px;
    max-width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.employee_setting_box ul li > a:focus {
    color: #fff;
}
.employee_setting_box ul li > a:hover {
    color: #ccc;
}
.employee_setting_box ul li > a i {
    margin: 0 10px 0 0;
}
.export_emp_details.show {
    margin: 0;
    padding: 0;
}
.export_emp_details.show li {
    list-style: none;
    display: block;
}
.export_emp_details.show li a {
    background: none;
    color: #000;
    font-size: 12px;
    font-family: var(--font);
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    width: 100%;
}
.export_emp_details.show li a:hover {
    color: #0000a5;
}
.export_emp_details.show li a:focus {
    color: #000;
}
.export_emp_details.show li a:focus-visible {
    color: #000;
    outline: none;
    border: none;
}
.add_employee {
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5;
    width: 160px;
    max-width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    text-decoration: none;
}
.add_employee i {
    padding: 2px;
    width: 20px;
    max-width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fff;
    margin: 0 8px 0 0;
}
.add_employee:focus {
    color: #fff;
}
.add_employee:hover {
    color: #ccc;
}
/* employee-details-box-end */
/* employee-status-start */
.employee_status
{
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.totel_employee {
    background: #f6f6f6;
    padding: 20px 10px;
    box-shadow: inset 0 0 5px #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.totel_employee i {
    font-size: 18px;
    color: #fff;
    background: #0000a5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.totel_employee h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    margin: 0 0 0 10px;
}
.totel_employee h3 strong {
    font-size: 14px;
    font-family: var(--font);
    display: block;
    color: #000;
    margin: 5px 0 0 0;
}
.active_employee i {
    background: #23a103;

}
.inactive_employee i {
    background: #E70D0D;

}
.new_joiner_employee i {
    background: #2d76ff;

}
/* employee-status-end */
/* employee-list-content-start */

.all_emp_details_table {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 20px;
}
.list_employee_name {
    padding: 10px;
}
.list_employee_name h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font);
    color: #000;
    margin: 0;
    line-height: 38px;
}
.search_emp_datewise {
    padding: 10px;
}
.search_emp_datewise input
 {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    padding: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    text-transform: capitalize;
}
.emp_designation  {
    padding: 10px;
}
.emp_designation select {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #ffffff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border: 1px solid #ddd;
    width: 80%;
    max-width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 0 0 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    cursor: pointer;
}
.emp_designation select option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
.emp_designation select:focus {
    border: 1px solid #ddd;
    outline: none;
}
.emp_designation select:focus-visible {
    border: 1px solid #ddd;
    outline: none;
}
.emp_status  {
    padding: 10px;
}
.emp_status select {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #ffffff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border: 1px solid #ddd;
    width: 80%;
    max-width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 0 0 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 0 0 auto auto;
    cursor: pointer;
}
.emp_status select option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
.emp_status select:focus {
    border: 1px solid #ddd;
    outline: none;
}
.emp_status select:focus-visible {
    border: 1px solid #ddd;
    outline: none;
}
/* employee-list-content-end */
/* all-emp-details-table-start */
.all_emp_details_table table thead tr th {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    color: #000;
}
.all_emp_details_table table thead tr th input
 {
    display: block;
    margin:5px auto;
}
.all_emp_details_table table tbody tr th input
 {
    display: block;
    margin:15px auto 0 auto;
}
.all_emp_details_table table tbody tr td
 {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    vertical-align: middle;
}
.all_emp_details_table table tbody tr td .not_Punch_In, .all_emp_details_table table tbody tr td .not_Punch_Out
 {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    vertical-align: middle;
}
.all_emp_details_table table tbody tr td .inactive_status_table {
    background: #e70d0d;
    padding: 4px 2px;
    max-width: 100%;
    width: 60px;
    height: 25px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 400;
}
.all_emp_details_table table tbody tr td .active_status_table {
    background: #23a103;
    padding: 4px 2px;
    max-width: 100%;
    width: 60px;
    height: 25px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 400;
}
.details_btn_prevnext {
    display: flex;
    align-items: center;
    justify-content: end;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 12px;
}
.details_btn_prevnext #prevBtn
{
    border: none;
    background:#0000a5;
    padding: 5px;
    width: 70px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.details_btn_prevnext #nextBtn {
    border: none;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5px;
    width: 70px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.main_dashboard_footer {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.main_dashboard_footer span {
    font-size: 12px;
    font-family: var(--font);
    font-weight: 500;
    color: #000;
}
.main_dashboard_footer span strong {
    font-size: 18px;
    display: inline-block;
    font-weight: bold;
    color: #333;
    font-style:normal;
    vertical-align: middle;
}
.main_dashboard_footer strong {
    font-size: 14px;
    font-family: var(--font);
    font-style: italic;
    color: #f00;
    text-align: right;
    display: block;
}
.main_dashboard_footer strong span {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font);
    font-style: normal;
    color: #f00;
    line-height: 0;
}
/* all-emp-details-table-end */
#add_emp_modal .modal-dialog
{
    max-width: 750px;
    width: 100%;
}
#add_emp_modal .modal-dialog .modal-header {
    padding: 10px 18px;
}
#add_emp_modal .modal-dialog .modal-header h1 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#add_emp_modal .modal-dialog .modal-header h1 span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    margin: 0 0 0 10px;
}
#add_emp_modal .modal-dialog .modal-header .btn-close
{
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#add_emp_modal .modal-dialog .modal-body {
    padding: 10px;
}
#add_emp_modal .modal-dialog .modal-body .tab-content {
    padding: 8px;
    box-shadow: inset 0 0 5px #ccc;
    border-radius: 5px;
    margin: 5px 0;
}
/* Remove border from the whole nav-tabs wrapper */
.add_emp_box ul.nav {
    border-bottom: none !important;
    margin: 0;
    padding: 0;
}
/* Default tab style */
.add_emp_box ul.nav li.nav-item a.nav-link {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #333;
    padding: 8px;
    margin: 0;
    border: none !important; /* kills Bootstrap's border */
    border-bottom: 2px solid transparent; /* prevents layout jump */
    background: transparent;
    box-shadow: none;
    transition: all 0.2s ease; /* smoother */
}
/* Active tab style */
.add_emp_box ul.nav li.nav-item a.nav-link.active {
    color: #0000a5;
    border: none !important;
    border-bottom: 2px solid #0000a5;
    background: transparent;
    position: relative;
}
.add_emp_box ul.nav li.nav-item a.nav-link.active:after {
    position: absolute;
    content: "";
    width: 70px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0000a5;
    bottom: 5px;
    margin: 0 auto;
}
/* Hover effect */
.add_emp_box ul.nav li.nav-item a.nav-link:hover {
    color: #0000a5;
    border-bottom: 2px solid #0000a5;
    background: transparent;
}
/* Focus states (accessibility) */
.add_emp_box ul.nav li.nav-item a.nav-link:focus,
.add_emp_box ul.nav li.nav-item a.nav-link:focus-visible {
    outline: none;
    box-shadow: none;
    border: none !important;
}
#add_emp_modal .modal-dialog .modal-footer {
    padding: 0;
    border: none;
}
#add_emp_modal .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#add_emp_modal .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
.add_emp_photo
 {
    background: #F8F9FA;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.add_emp_photo .emp_profile_img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 20px 0 0;
}
.add_emp_photo .emp_profile_img img {
    max-width: 100%;
    border-radius: 50%;
}
.add_emp_photo .emp_profile_text h4 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.add_emp_photo .emp_profile_text h5 {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    color: #777;
}
.add_emp_photo .emp_profile_text .upload {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
}
.add_emp_photo .emp_profile_text .cancel {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: #0000a5;
    border-radius: 5px;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form
{
    margin: 0;
    padding: 10px;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form textarea {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    min-height: 100px;
}
.emp_permission_top {
    background: #F8F9FA;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content:space-between;
}
.emp_permission_top h2 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    margin: 0;
    width: 60%;
}
.emp_permission_top .form-switch label {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    line-height: 24px;
}
.emp_permission_top .form-check label {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    line-height: 24px;
}
.emp_permission_top .form-check-input:checked {
    background-color: #0000a5;
    border-color: #0d6efd;
    cursor: pointer;
}
#emp_permission_table .form-check-input:checked {
    background-color: #0000a5;
    border-color: #0d6efd;
    cursor: pointer;
}
.add_emp_permission_box .table-responsive {
    margin: 15px 0;
}
.add_emp_permission_box .table-responsive table {
    margin: 0;
}
.add_emp_permission_box .table-responsive table tbody tr:last-child td {
    border-bottom: none;
}
/* Dashboard_page_end */
/* Employee_setting_page_start */
.employee_setting_header {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.emp_setting_box {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical
 {
    box-shadow: 0 0 5px #ccc;
    margin: 10px;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li{
    display: block;
    width: 100%;
}
.employee_setting_header .employee_name_box{
    padding: 0 0 0 15px;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link.active {
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    border-radius: 5px 5px 0 0;
    transition: all 0.4s ease;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link.active i {
    display: inline-block;
    line-height: 0;
    vertical-align: middle;
    font-size: 12px;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link i {
    display:none;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    transition: all 0.4s ease;
}
.emp_setting_box .tab-content {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
    margin: 10px;
}
.emp_setting_box h2 {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font);
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 0;
    color: #0000a5;
}
.emp_setting_box h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 0;
}
.emp_profile_photo {
    background: #F8F9FA;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.emp_profile_img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 20px 0 0;
}
.emp_profile_img img {
    max-width: 100%;
    border-radius: 50%;
}
.emp_profile_text h4 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.emp_profile_text h5 {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    color: #777;
}
.emp_profile_text .upload {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
}
.emp_profile_text .cancel {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: #0000a5;
    border-radius: 5px;
}
.profile_setting_form
{
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
}
.profile_setting_form form {
    margin: 0 !important;
    width: 100% !important;
}
.profile_setting_form form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #444;
}
.profile_setting_form form input {
    width: 60%;
    border: 1px solid #ddd !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: var(--font) !important;
    color: #000 !important;
    padding: 5px !important;
    margin: 10px 0 10px 10px;
    box-shadow: 0 0 5px #ddd;
}
.profile_setting_form form textarea {
    width: 100%;
    border: 1px solid #ddd !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: var(--font) !important;
    color: #000 !important;
    padding: 5px !important;
    box-shadow: 0 0 5px #ddd;
    margin: 15px 0 15px 10px;
}
.form_border
{
    border: 1px solid #ddd;
}
.profile_setting_form h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font);
    color: #444;
    margin: 15px 0 0 0;
}
.profile_setting_form form .d-flex {
    justify-content: space-between;
    align-items: center;
}
.profile_setting_form form select{
    width: 60%;
    border: 1px solid #ddd !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: var(--font) !important;
    color: #000 !important;
    padding: 5px !important;
    box-shadow: 0 0 5px #ccc;
    margin: 15px 0 15px 10px;
}
.profile_setting_form form select option{
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#profileset_form .profile_setting_btn .save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#profileset_form .profile_setting_btn .cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
.profile_setting_btn {
    display: flex;
    align-items: center;
    justify-content: end;
}
.security_setting_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 0;
}
.security_setting_box h3 {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    color: #111;
    border: none;
    padding: 0;
    margin: 0;
}
.security_setting_box h3 span {
    font-size: 12px;
    font-weight: 400;
    display: block;
    font-family: var(--font);
    color: #777;
    margin: 5px 0;
}
.security_setting_box button {
    border: none;
    background: #0000a5;
    padding: 7px 10px;
    font-weight: 400;
    font-size: 13px;
    font-family: var(--font);
    color: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.changepassdiv {
    position: absolute;
    right: 0;
    top: 79%;
    z-index: 2;
}
.changepassdiv form {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: -22px;
}
.changepassdiv form input {
    width: 60%;
    border: 1px solid #ddd !important;
}
.changepassdiv form button {
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%) !important;
    padding: 5px !important;
    font-size: 12px !important;
    font-weight: 500;
    font-family: var(--font);
    color: #fff !important;
    border: none !important;
    border-radius: 0 5px 5px 0;
}
.notification_setting_box .form-check-input:checked
{
    background-color: #0000a5;
    border-color: #0d6efd;
    box-shadow: 0 0 5px #000;
    cursor: pointer;
}
/* Employee_setting_page_end */
/* Employee_Detail_page_start */
.employee_detail_header {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.employee_detail_header .employee_name_box {
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.employee_detail_header .employee_name_box h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    margin: 0;
}
.employee_detail_header .employee_breadcrumb {
    display: flex;
    align-items: center;
}
.employee_detail_header .employee_breadcrumb i {
    font-size: 12px;
    font-weight: bold;
    color: #777;
    margin: 0 5px 0 0;
}
.employee_detail_header .employee_breadcrumb a {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    text-decoration: none;
}
.employee_name_box button
{
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5;
    width: 180px;
    max-width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    border: none;
}
.employee_name_box button i
{
    padding:2px;
    width: 20px;
    max-width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fff;
    margin:0 8px 0 0;
}
.emp_profile_details_box
{
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.emp_detail_photo_box
{
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    border-radius: 5px;
    position: relative;
}
.emp_detail_photo_box:before {
    position: absolute;
    content: "";
    width: 100%;
    min-height: 90px;
    background: linear-gradient(0deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 36%, rgba(119, 172, 252, 1) 100%);
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    border-radius: 5px 5px 0 0;
}
.emp_detail_img {
    position: relative;
    z-index: 2;
}
.emp_detail_img img {
    width: 75px;
    height: 75px;
    max-width: 100%;
    display: block;
    margin:40px auto 0 auto;
    border-radius: 50%;
}
.emp_detail_img h2 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 5px 0;
    font-family: var(--font);
    color: #000;
}
.emp_detail_job {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 8px 0;
}
.emp_detail_job span {
    background: #ddd;
    border-radius: 5px;
    font-size: 10px;
    padding: 5px 8px;
    font-family: var(--font);
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.emp_detail_job span.exp_emp {
    background: #ebebeb;
    border-radius: 5px;
    font-size: 10px;
    padding: 5px 8px;
    font-family: var(--font);
    color: #0000a5;
    font-weight: 500;
    text-decoration: none;
}
.emp_detail_photo_box ul {
    margin: 0;
    padding: 0;
}
.emp_detail_photo_box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #777;
}
.emp_detail_photo_box ul li i {
    margin: 5px;
    width: 30px;
    height: 15px;
    font-size: 11px;
    line-height: 16px;
}
.emp_detail_photo_box ul li strong {
    width: 75%;
    font-weight: 500;
}
.emp_detail_photo_box ul li span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    width: 80%;
    text-align: right;
}
.emp_detail_photo_box .emp_edit_btn {
    width: 120px;
    border: none;
    background: #0000a5;
    border-radius: 20px;
    padding: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    display: block;
    margin: 5px auto;
}
.emp_basic_info {
    border-top: 1px solid #ddd;
    margin: 10px 0;
    padding: 5px 0 0 0;
}
.emp_basic_info h2 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.emp_basic_info h2 i {
    color: #000;
    font-size: 10px;
}
.emp_personal_info {
    border-top: 1px solid #ddd;
    margin: 10px 0;
    padding: 5px 0 0 0;
}
.emp_personal_info h2 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.emp_personal_info h2 i {
    color: #000;
    font-size: 10px;
    cursor: pointer;
}
.emp_emergency_info {
    border-top: 1px solid #ddd;
    margin: 10px 0;
    padding: 5px 0 0 0;
}
.emp_emergency_info h2 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.emp_emergency_info h2 i {
    color: #000;
    font-size: 10px;
    cursor: pointer;
}
.emp_emergency_info ul h5 {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    color: #000;
    display: block;
    background: #f3f3f3;
    padding: 4px 2px;
    margin: 0;
}
.emp_detail_text_box {
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    border-radius: 5px;
    height: 100%;
}
.emp_detail_text_box .accordion-item {
    margin: 0 0 10px 0;
    border: none;
}
.emp_detail_text_box .accordion-item .accordion-body {
    padding: 10px;
}
.emp_detail_text_box .accordion-item button {
    background: linear-gradient(45deg, rgba(112, 105, 255, 0.5) 0%, rgba(29, 119, 204, 0.5) 60%, rgba(119, 172, 252, 0.5) 100%);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    padding: 10px;
    border-radius: 5px !important;
}
.emp_detail_text_box .accordion-item button i {
    margin: 0 0 0 10px;
    font-size: 12px;
    color: #000;
    transition: all 0.2s ease;
}
.emp_detail_text_box .accordion-item button .addemp_bank {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    text-decoration: none;
    color: #000;
    display: block;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    width: 10%;
    text-align: center;
    margin: 0 0 0 10px;
    box-shadow: inset 0 0 5px #2d76ff;
}
.emp_detail_text_box .accordion-item button .addemp_family {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    text-decoration: none;
    color: #000;
    display: block;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    width: 10%;
    text-align: center;
    margin: 0 0 0 10px;
    box-shadow: inset 0 0 5px #2d76ff;
}
.emp_detail_text_box .accordion-item button .addemp_experience {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    text-decoration: none;
    color: #000;
    display: block;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    width:22%;
    text-align: center;
    margin: 0 0 0 10px;
    box-shadow: inset 0 0 5px #2d76ff;
}

.emp_detail_text_box .accordion-item button i:hover {
    background: #fff;
    padding: 8px 10px;
    text-align: center;
    font-size: 12px;
    border-radius: 10px;
}
#emp_edit_bankdetail_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_bankdetail_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_bankdetail_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_bankdetail_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_bankdetail_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_bankdetail_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_bankdetail_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_bankdetail_info .modal-body  form{
    margin: 0;
}
#emp_edit_bankdetail_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_add_bank_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_add_bank_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_add_bank_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_add_bank_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_add_bank_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_add_bank_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_add_bank_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_add_bank_info .modal-body  form{
    margin: 0;
}
#emp_add_bank_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
.emp_detail_text_box .accordion-item .accordion-body p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #666;
    text-align: justify;
}
.emp_detail_text_box .accordion-item .accordion-body ul {
    margin: 0;
    padding: 0;
}
.emp_detail_text_box .accordion-item .accordion-body ul li {
    list-style: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.emp_detail_text_box .accordion-item .accordion-body ul li span {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    width: 25%;
    vertical-align: middle;
}
.emp_detail_text_box .accordion-item .accordion-body ul li span i {
    color: #0000a5;
    margin: 0 5px 0 0;
}
.emp_detail_text_box .accordion-item .accordion-body .family_reletive_info {
    margin: 0;
    padding: 0;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info {
    margin: 0;
    padding: 0;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info li span {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    width: 60%;
    vertical-align: middle;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info li span strong
{
    font-size: 13px;
    font-weight: bold;
    font-family: var(--font);
    color: #000;
    display: block;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info {
    margin: 0;
    padding: 0;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    width: 60%;
    vertical-align: middle;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span strong
{
    font-size: 10px;
    font-weight: 400;
    background: #ccc;
    font-family: var(--font);
    color: #000;
    display: block;
    width: 65%;
    padding: 2px;
    border-radius: 20px;
    text-align: center;
    margin: 2px 0;
}
#bank_statutory_modal .modal-dialog {
    max-width: 750px;
    width: 100%;
}
#bank_statutory_modal .modal-dialog .modal-header {
    padding: 10px 18px;
}
#bank_statutory_modal .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#bank_statutory_modal .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#bank_statutory_modal .modal-dialog .modal-body form h2 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 0;
    margin: 10px 0;
}
#bank_statutory_modal .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    margin: 5px 0;
}
#bank_statutory_modal .modal-dialog .modal-body form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#bank_statutory_modal .modal-dialog .modal-body form input {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#bank_statutory_modal .modal-dialog .modal-body form input::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
}
#bank_statutory_modal .modal-dialog .modal-body form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#bank_statutory_modal .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#bank_statutory_modal .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#bank_statutory_modal .modal-dialog .modal-footer {
    padding: 5px 0;
    border: none;
}
#emp_edit_profile_modal .modal-dialog {
    max-width: 750px;
    width: 100%;
}
#emp_edit_profile_modal .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_profile_modal .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_profile_modal .modal-body  form{
    margin: 0;
}
#emp_edit_profile_modal .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_profile_modal .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_edit_profile_modal .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_profile_modal .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_profile_modal .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_profile_modal .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_profile_modal .modal-dialog .modal-body form textarea {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    min-height: 100px;
}
#emp_edit_personal_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_personal_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_personal_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_personal_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_personal_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_personal_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_personal_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_personal_info .modal-body  form{
    margin: 0;
}
#emp_edit_personal_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}

#emp_edit_emergency_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_emergency_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_emergency_info .modal-dialog .modal-body h3 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 15px;
    margin: 0 0 10px 0;
}
#emp_edit_emergency_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_emergency_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_emergency_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_emergency_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_emergency_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_emergency_info .modal-body  form{
    margin: 0;
}
#emp_edit_emergency_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_edit_family_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_family_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_family_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_family_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_family_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_family_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_family_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_family_info .modal-body  form{
    margin: 0;
}
#emp_edit_family_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}

#emp_add_family_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_add_family_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_add_family_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_add_family_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_add_family_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_add_family_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_add_family_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_add_family_info .modal-body  form{
    margin: 0;
}
#emp_add_family_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_edit_education_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_education_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_education_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_education_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_education_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_education_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_education_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_education_info .modal-body  form{
    margin: 0;
}
#emp_edit_education_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_edit_experience_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_edit_experience_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_edit_experience_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_edit_experience_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_experience_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_edit_experience_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_edit_experience_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_edit_experience_info .modal-body  form{
    margin: 0;
}
#emp_edit_experience_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}

#emp_add_experience_info .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_add_experience_info .modal-dialog .modal-header h1
 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_add_experience_info .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_add_experience_info .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_add_experience_info .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
#emp_add_experience_info .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_add_experience_info .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_add_experience_info .modal-body  form{
    margin: 0;
}
#emp_add_experience_info .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
/* Employee_Detail_page_end */
/* Employee_Department_page_Start */
.add_department_box .add_employee {
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5;
    width: 190px;
    max-width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    text-decoration: none;
}
.add_department_box .employee_setting_box ul li > a {
    font-size: 14px;
    font-family: var(--font);
    font-weight: 500;
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ddd;
    border: 1px solid #ddd;
    width: 160px;
    max-width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add_department_box .add_employee i {
    padding: 2px;
    width: 20px;
    max-width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fff;
    margin: 0 8px 0 0;
}
.department_list #departmentList_search {
    margin: 0;
}
.department_search_top input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #666;
    box-shadow: 0 0 5px #ccc;
}
.department_search_top
{
    padding: 10px 10px 10px 0;
}
.department_search_top .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
}
.department_list .all_emp_details_table table tbody tr td i {
    text-align: center;
    display: block;
    font-size: 16px;
    color: #2d76ff;
    line-height: 1.5;
    cursor: pointer;
}
#emp_department_table_edit .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_department_table_edit .modal-dialog .modal-header h1 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_department_table_edit .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_department_table_edit .modal-body form {
    margin: 0;
}
#emp_department_table_edit .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_department_table_edit .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_department_table_edit .modal-dialog .modal-body form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_department_table_edit .modal-dialog .modal-body form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#emp_department_table_edit .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_department_table_edit .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_department_table_edit .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
/* Employee_Department_page_end */
/* Employee_Designation_page_start */
.designation_list #designationList_search
{
    margin: 0;
}
.designation_list .all_emp_details_table table tbody tr td i
{
    text-align: center;
    display: block;
    font-size: 16px;
    color: #2d76ff;
    line-height: 1.5;
    cursor: pointer;
}
#emp_designation_table_edit .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_designation_table_edit .modal-dialog .modal-header h1 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_designation_table_edit .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_designation_table_edit .modal-body form {
    margin: 0;
}
#emp_designation_table_edit .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_designation_table_edit .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_designation_table_edit .modal-dialog .modal-body form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_designation_table_edit .modal-dialog .modal-body form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#emp_designation_table_edit .modal-dialog .modal-footer {
    padding: 5px 0;
    border-top: none;
}
#emp_designation_table_edit .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_designation_table_edit .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
/* Employee_Designation_page_end */
/* Employee_Policies_page_start */
.policies_list #designationList_search
{
    margin: 0;
}
.all_emp_details_table table
{
    margin: 0;
}
.policies_list .all_emp_details_table table tbody tr td i
{
    text-align: center;
    display: block;
    font-size: 16px;
    color: #2d76ff;
    line-height: 1;
    cursor: pointer;
}
#emp_policies_table_edit .modal-dialog .modal-header {
    padding: 10px 18px;
}
#emp_policies_table_edit .modal-dialog .modal-header h1 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#emp_policies_table_edit .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#emp_policies_table_edit .modal-body form {
    margin: 0;
}
#emp_policies_table_edit .modal-dialog .modal-body form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#emp_policies_table_edit .modal-dialog .modal-body form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_policies_table_edit .modal-dialog .modal-body form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#emp_policies_table_edit .modal-dialog .modal-body form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#emp_policies_table_edit .modal-dialog .modal-footer {
    padding: 0 0 5px 0;
    border-top: none;
}
#emp_policies_table_edit .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#emp_policies_table_edit .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
.custom-upload-box {
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f9f9f9;
}
.custom-upload-box i {
    font-size: 30px;
    color: #0000a5;
    position: relative;
    z-index: 1;
    margin: 0 0 15px 0;
}
.custom-upload-box i:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 60px;
    height: 30px;
    margin: 0 auto;
    left: -18px;
    z-index: -1;
    top: 10px;
    border-radius: 10px;
    border: 2px solid #0000a5;
}
.custom-upload-box:hover,
.custom-upload-box.dragover {
  background: #eef6ff;
  border-color: #007bff;
}
.file-icon {
  width: 15px;
  height: 15px;
  object-fit: cover;
  margin-right: 10px;
}
#emp_policies_table_edit .modal-body form .list-group li .customfile_list{
    display: block;
}
#emp_policies_table_edit .modal-body form .list-group li .customfile_list i {
    font-size: 16px;
}
#emp_policies_table_edit .modal-body form .list-group li .customfile_list span {
    font-size: 11px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
}
#emp_policies_table_edit .modal-body form .list-group li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#emp_policies_table_edit .modal-body form .list-group li button {
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font);
    padding: 4px;
}
/* Employee_Policies_page_end */
/* Admin_Attendance_page_start */
.attendance_admin_box {
    justify-content: end;
}
.attendance_admin_table table tbody tr td a {
    text-decoration: none;
    display: block;
    width: 50%;
    padding: 2px;
    background: #D2F5E1;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: #049142;
}
.attendance_admin_table table tbody tr td a.emp_webcheck_no, .attendance_employee_table table tbody tr td a.emp_webcheck_no {
    text-decoration: none;
    display: block;
    width: 50%;
    padding: 2px;
    background: #f5d7d2;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: #f00;
}
.attendance_admin_table table tbody tr td .working_hour {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: #03C95A;
    padding: 3px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 0 #036a30;
}
.attendance_admin_table table tbody tr td .working_hour i {
    font-size: 9px;
    margin: 0 5px 0 0;
}
.attendance_admin_table table tbody tr td .emp_present {
    background: #03c95a;
    padding: 2px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 0 #036a30;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.attendance_admin_table table tbody tr td .emp_absent {
    background: #c90a0a;
    padding: 2px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 0 #720000;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.attendance_admin_table table tbody tr td .emp_view_attendence {
    color: #0000a5;
    background: #f1f1f1;
    border: 1px solid #ddd;
    display: block;
    margin: 0 auto;
}
/* Admin_Attendance_page_end */
/* Employee_Attendance_page_start */
.attendance_employee_box {
    justify-content: end;
}
.attendance_employee_profile
{
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.attendance_empprofile_box {
    background: #fbfbfb;
    box-shadow: 0 0 5px #ddd;
    border-radius: 10px;
    padding: 15px;
}
.attendance_empprofile_box h3 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    text-align: center;
    margin: 0 0 5px 0;
}
.attendance_empprofile_box h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font);
    color: #000;
    text-align: center;
    margin: 0 0 15px 0;
}
.attendance_empprofile_box img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 4px solid #2d76ff;
    display: block;
    margin: 0 auto;
}
.attendance_empprofile_box h5 {
    padding: 5px 15px;
    background: #2d76ff;
    width: 60%;
    border-radius: 5px;
    box-shadow: 0 2px 0 #062e7a;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    text-align: center;
    display: block;
    margin: 5px auto;
}
.attendance_empprofile_box span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    text-align: center;
    margin: 10px 0;
    display: block;
}
.attendance_empprofile_box span i {
    color: #6bcd00;
    font-size: 16px;
    margin: 0 8px 0 0;
    vertical-align: middle;
}
.fingerprint {
  font-size: 36px;
  color: #007bff;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
.attendance_emp_workoingbox {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 5px #ddd;
    background: #fbfbfb;
}
.attendance_emp_workoingbox i {
    width: 30px;
    height: 30px;
    background: #0154f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
}
.attendance_emp_workoingbox strong {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font);
    color: #000;
    margin: 5px 0;
    display: block;
}
.attendance_emp_workoingbox strong span {
    font-size: 16px;
    color: #666;
    margin: 0 0 0 5px;
    font-weight: 500;
}
.attendance_emp_workoingbox h4 {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 600;
}
.attendence_total_hours i {
    background: #2db1ff;
}
.attendence_overtime i {
    background: #01c57c;
}
.attendance_employee_table table tbody tr td a {
    text-decoration: none;
    display: block;
    width: 50%;
    padding: 2px;
    background: #D2F5E1;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: #049142;
}
.attendance_employee_table table tbody tr td .emp_present {
    background: #03c95a;
    padding: 2px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 0 #036a30;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.attendance_employee_table table tbody tr td .emp_absent {
    background: #c90a0a;
    padding: 2px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 0 #720000;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.attendance_employee_table table tbody tr td .working_hour {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: #03C95A;
    padding: 3px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 0 #036a30;
}
.attendance_employee_table table tbody tr td .working_hour i {
    font-size: 9px;
    margin: 0 5px 0 0;
}
/* Employee_Attendance_page_end */
/* Admin_Leave_page_start */
#add_adminLeave_modal .modal-dialog .modal-header {
    padding: 10px 18px;
}
#add_adminLeave_modal .modal-dialog .modal-header h1 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#add_adminLeave_modal .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#add_adminLeave_modal .modal-dialog .modal-body {
    padding: 10px;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form {
    margin: 0;
    padding: 10px;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form textarea {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    min-height: 100px;
}
#add_adminLeave_modal .modal-dialog .modal-footer {
    padding: 0;
    border: none;
}
#add_adminLeave_modal .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#add_adminLeave_modal .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
.admin_leave_status .totel_employee {
    position: relative;
    justify-content: space-between;
}
.admin_leave_status .totel_employee h3 {
    font-size: 14px;
}
.admin_leave_status .totel_employee i {
    background: #fff;
    width: 40px;
    height: 40px;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    color: #6b6afc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.admin_leave_status .totel_employee:after {
    position: absolute;
    content: "";
    background: #6b6afc;
    width: 30%;
    height: 100%;
    border-radius: 0 80% 0 0;
    box-shadow: 10px 0 0 #c5d5f1;
    left: 0;
    z-index: 1;
}
.admin_leave_status .totel_employee_greenColor:after{
    background: #03C95A;
    box-shadow:10px 0 0 #9affc6;
}
.admin_leave_status .totel_employee_yellowColor:after{
    background: #FFC107;
    box-shadow:10px 0 0 #ffe28a;
}
.admin_leave_status .totel_employee_skyblueColor:after{
    background: #1B84FF;
    box-shadow:10px 0 0 #c6e0fd;
}
.admin_leave_status .totel_employee_greenColor i {
    color: #03C95A;
}
.admin_leave_status .totel_employee_yellowColor i {
    color: #FFC107;
}
.admin_leave_status .totel_employee_skyblueColor i {
    color: #1B84FF;
}
/* Admin_Leave_page_end */
/* Employee_Leave_page_start */
#add_empLeave_modal .modal-dialog .modal-header {
    padding: 10px 18px;
}
#add_empLeave_modal .modal-dialog .modal-header h1 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
#add_empLeave_modal .modal-dialog .modal-header .btn-close {
    opacity: 1;
    font-size: 8px;
    color: #000;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 5px #666;
    border-radius: 50%;
}
#add_empLeave_modal .modal-dialog .modal-body {
    padding: 10px;
}
#add_empLeave_modal .modal-dialog .modal-body .admin_leave_box form {
    margin: 0;
    padding: 10px;
}
#add_empLeave_modal .modal-dialog .modal-body .admin_leave_box form label {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
#add_empLeave_modal .modal-dialog .modal-body .admin_leave_box form input {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#add_empLeave_modal .modal-dialog .modal-body .admin_leave_box form select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
#add_empLeave_modal .modal-dialog .modal-body .admin_leave_box form option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
#add_empLeave_modal .modal-dialog .modal-body .admin_leave_box form textarea {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    min-height: 100px;
}
#add_empLeave_modal .modal-dialog .modal-footer {
    padding: 0;
    border: none;
}
#add_empLeave_modal .modal-dialog .modal-footer .emp_cancel {
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #e1e1e1;
    border-radius: 5px;
    margin: 5px;
}
#add_empLeave_modal .modal-dialog .modal-footer .emp_save {
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    border-radius: 5px;
    margin: 5px;
}
.empLeave_status {
    padding:20px 10px;
    justify-content: space-between;
}
.empLeave_status h3 {
    font-size: 14px;
}
.empLeave_status h3 span {
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font);
    padding: 5px;
    border-radius: 5px;
    background: #2d76ff;
    color: #fff;
    display: block;
    margin: 10px 0 0 0;
}
.empLeave_status i {
    font-size: 35px;
    color: #fff;
    background: #2d76ff;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30% 0 30% 30%;
    box-shadow: -10px -5px 0 #adc9fd;
}
.empLeave_status i.skycolor {
  background: #3f9fd7;
  box-shadow:-10px -5px 0 #9cdbff;
}
.empLeave_status i.grencolor {
  background: #0fb357;
  box-shadow: -10px -5px 0 #91ffc1;
}
.empLeave_status i.orngcolor {
  background: #e98014;
  box-shadow: -10px -5px 0 #ffc283;
}
.col-md-3:nth-of-type(2) .empLeave_status h3 span {
  background: #3f9fd7;
}
.col-md-3:nth-of-type(3) .empLeave_status h3 span {
  background: #0fb357;
}
.col-md-3:nth-of-type(4) .empLeave_status h3 span {
  background: #e98014;
}
.Empleave_details_table table tbody tr td select {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 0 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.Empleave_details_table table tbody tr td select:hover {
    color: #e98014;
}
.Empleave_details_table table tbody tr td select option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
.Empleave_details_table table tbody tr th input
 {
    display: block;
    margin:8px auto 0 auto;
}
.Empleave_details_table table tbody tr td i {
    font-size: 14px;
    color: #1e30b3;
    margin: 0 0 0 10px;
}
.Empleave_details_table table tbody tr td select:focus-visible{
    border: 1px solid #ddd;
    outline: #ddd;
}
.pulsate {
   position: relative;
   color: #1e30b3; /* icon color (blue) */
   z-index: 1;
}
.pulsate::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   width: 30px;
   height: 30px;
   background: rgba(30, 48, 179, 0.4); /* blue glow */
   border-radius: 50%;
   transform: translate(-50%, -50%);
   animation: pulse1 1.5s infinite;
   z-index: -1; /* keep glow behind icon */
}
@keyframes pulse1 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}
/* Employee_Leave_page_end */
/* Employee_Performance_Review_page_start */
.emp_performance_basicinfo
{
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
.emp_performance_basicinfo h2 {
    font-size: 26px;
    font-weight: 500;
    font-family: var(--font);
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding: 0 0 10px 0;
}
.empbasic_information label {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.empbasic_information input {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
.empbasic_information {
    background: #fbfbfb;
    padding: 10px;
    box-shadow: 0 0 5px #ccc;
}
.emp_performance_editer {
    width: 325px;
    max-width: 100%;
    box-shadow: 0 0 5px #ddd;
}
.emp_performance_editer .ck-editor__editable_inline {
    min-height: 150px;
}
.emp_performance_editer .ck-editor__editable_inline p {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.emp_professional_table {
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    padding: 10px;
}
/* For Chrome, Edge, Safari */
.emp_professional_table .table-responsive {
  scrollbar-width: thin;    /* Firefox */
  scrollbar-color: rgba(0,0,0,0.30) rgba(0,0,0,0.03);
}
.emp_professional_table table tbody tr td {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    vertical-align: top;
}
.emp_professional_table table tbody tr td select {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    width: 100px;
    max-width: 100%;
    min-height: 35px;
}
.emp_professional_table table tbody tr td select:focus-visible {
   outline: none;
   border: 1px solid #ccc;
}
.emp_professional_table table tbody tr td select option {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #2d76ff;
}
.emp_professional_table table tbody tr td #rating_indicator {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    margin:0 0 5px 0;
    min-height: 35px;
    width: 180px;
    max-width: 100%;
}
.emp_professional_table table tbody tr td #rating_Weightage {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    margin:0 0 5px 0;
    min-height: 35px;
    width: 120px;
    max-width: 100%;
}
.emp_professional_table table tbody tr td #empTotal_Marks {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    margin:0 0 5px 0;
    min-height: 35px;
    width:80px;
    max-width: 100%;
}
.emp_professional_excellence form {
    margin: 0;
}
.performance_rating_btn #addBtn {
    border: none;
    background: #0000a5;
    padding: 5px;
    width: 70px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.performance_rating_btn #removeBtn {
    border: none;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5px;
    width: 70px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.performance_rating_btn #submitBtn {
    border: none;
    background:#19bf05;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
/* Employee_Performance_Review_page_end */
/* Admin_Performance_IPAP_page_start */
.ipap_SearchBar input {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
}
.ipapData_Table table tbody tr td {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    vertical-align: middle;
}
.ipapData_Table table tbody tr td .ipapFilled_Time {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: #0000a5;
    padding: 0 0 0 10px;
}
.ipapData_Table table tbody tr td .ipapApproved_Time {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: #23a103;
    padding: 0 0 0 10px;
}
.ipapData_Table table tbody tr td a {
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
}
.ipapData_Table table tbody tr td .ipap_View i {
    font-size: 14px;
    color: #2d76ff;
    padding:0 5px;
}
.ipapData_Table table tbody tr td a.ipap_View i:hover {
  color: #28a745;   /* green */
}

.ipapData_Table table tbody tr td a.ipap_Edit i:hover {
  color: #f5a123;   /* orange */
}
.ipapData_Table table tbody tr td .ipap_Edit i {
    font-size: 14px;
    color: #2d76ff;
    padding:0 5px;
}
.ipapData_Table table tbody tr td .ipap_Edit i:hover {
    color: #f5a123;
}

/* Admin_Performance_IPAP_page_end */
/* Admin_Performance_IPAP_Approved_page_start */
.ipapApprove_Box {
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
}
.iPap_EmpName {
    display: flex;
    align-items: center;
    justify-content: start;
}
.iPap_totalMarks {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 15px 0;
}
.iPap_EmpName h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font);
    color: #000;
    margin: 0;
}
.iPap_EmpName h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    color: #999;
    margin: 0;
    padding: 0 0 0 15px;
}
.iPap_totalMarks h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    margin: 0;
    padding: 0 0 0 15px;
}
.iPap_totalMarks span{
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    margin: 0;
    padding: 0 10px 0 15px;
    line-height: 0;
}
.iPap_Approve_Table table tbody tr td {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #666;
    vertical-align: top;
    position: relative;
}
.iPap_Approve_Table table tbody tr td input {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
}
.iPap_Approve_Table table tbody tr td input::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
    border: none;
}
.iPap_Approve_Table table tbody tr td input:focus-visible {
    outline: none;
    border: none;
}
.iPap_Approve_Table table tbody tr td input#srNumber {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
    width: 35px;
    max-width: 100%;
}
.iPap_Approve_Table table tbody tr td ul {
    margin: 0;
    padding: 0;
}
.iPap_Approve_Table table tbody tr td ul li {
    list-style: none;
    display: block;
}
.iPap_Approve_Table table tbody tr td textarea#iPap_Perameter {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
}
.iPap_Approve_Table table tbody tr td textarea#iPap_Perameter:focus-visible {
    outline: none;
    border: none;
}
.iPap_Approve_Table table tbody tr td ul li input#iPap_Perameter_List {
    list-style: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #333;
}
.iPap_Approve_Table table tbody tr td ul li input#iPap_Perameter_List::placeholder {
    list-style: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #999;
}
.iPap_Approve_Table table tbody tr td ul li textarea#ratingText {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
}
.iPap_Approve_Table table tbody tr td ul li textarea#ratingText::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
}
.iPap_Approve_Table table tbody tr td ul li textarea#ratingText:focus-visible {
    outline: none;
    border: none;
}
.iPap_Approve_Table table tbody tr td ul li input#WeightageText {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
    width: 80px;
    max-width: 100%;
}
.iPap_Approve_Table table tbody tr td input#iPap_FullMarks {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    border: none;
    width: 50px;
    max-width: 100%;
}
.iPap_Approve_Btn #addBtn {
    border: none;
    background: #0000a5;
    padding: 5px;
    width: 70px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.iPap_Approve_Btn #removeBtn {
    border: none;
    background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
    padding: 5px;
    width: 70px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.iPap_Approve_Btn #commentBtn {
    border: none;
    background: #6b6afc;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.iPap_Approve_Btn #SubmitBtn {
    border: none;
    background: #19bf05;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
}
.iPap_Approve_Btn {
    padding: 10px;
    margin: 0 10px;
}
.Ipap_Approve_EditBtn #editAllBtn {
    border: none;
    padding: 5px;
    width: 75px;
    min-height: 32px;
    max-width: 100%;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: #6b6afc;
    border-radius: 5px;
    display: block;
    margin: 5px 0 5px auto;
}
.Ipap_Approve_EditBtn #saveAllBtn {
    border: none;
    padding: 5px;
    width: 75px;
    min-height: 32px;
    max-width: 100%;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    color: #fff;
    background: #23a103;
    border-radius: 5px;
    display: block;
    margin: 5px 0 5px auto;
}
 /* IPAP_Approve_Comment_Box_Css */
.comment_section {
    padding: 10px;
    border: 1px solid #ddd;
    background: #fbfbfb;
}
.comment_section h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font);
    color: #666;
    border-bottom: 2px solid #ddd;
    margin:0 0 5px 0;
    padding:0 0 10px 0;
}
.comment_section ol#commentList {
    margin: 0;
}
.comment_section #commentList li {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
    margin: 2px 0;
}
.comment_box {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    margin-bottom: 10px;
}
.comment_box.open {
    max-height: 200px; /* enough to show textarea */
    opacity: 1;
    margin-top: 10px;
}
.comment_box textarea {
    width: 100%;
    height: 80px;
    padding: 8px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#saveComment {
    margin-top: 8px;
    padding: 6px 12px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    background:#FFC107;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
#saveComment:hover {
    background: #e98014;
    color: #fff;
}
/* Admin_Performance_IPAP_Approved_page_end */
/* Media_Query_All_Screen_Start */
/* @media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} */

@media (min-width: 1200px) and (max-width: 1365px) {
.login_img img {
    width: 360px;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span {
    width: 50%;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span strong {
    width: 100%;
}
.attendance_emp_workoingbox h4 {
    font-size: 15px;
}
.empLeave_status h3 {
    margin: 0 0 0 0;
}
.empLeave_status i {
    font-size: 30px;
    width: 60px;
    height: 60px;
}
.emp_professional_table table tbody tr td #rating_indicator {
    min-height: 50px;
    width: 150px;
}
.emp_professional_table table tbody tr td #rating_Weightage {
    width: 100px;
}
.emp_professional_table table tbody tr td #empTotal_Marks {
    width: 70px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.login_img h2 strong {
    font-size: 38px;
}
.login_img h2 {
    font-size: 30px;
}
.login_img img {
    width: 320px;
}
.login_img h3 {
    font-size: 20px;
}
.login_form_inner {
    width: 90%;
}
#main #main_inner_search {
    width: 30%;
}
.totel_employee {
    padding: 10px 8px;
}
.totel_employee h3 {
    font-size: 14px;
    margin: 0 0 0 5px;
}
.emp_status select, .emp_designation select {
    width: 100%;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical {
    margin: 10px 0;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info li span {
    width: 100%;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span {
    width: 40%;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span strong {
    width: 100%;
}
.attendance_emp_workoingbox h4 {
    font-size: 14px;
}
.attendance_empprofile_box h5 {
    width: 80%;
}
.admin_leave_status .totel_employee i {
    width: 30px;
    height: 30px;
    font-size: 16px;
}
.totel_employee h3 strong {
    font-size: 12px
}
.admin_leave_status .totel_employee h3 {
    font-size: 12px;
    margin: 0 0 0 50px;
}
.admin_leave_status .totel_employee {
    min-height: 100px;
}
.admin_leave_status .totel_employee:after {
    width: 35%;
}
.empLeave_status h3 {
    font-size: 14px;
    margin: 0;
}
.empLeave_status i{
    font-size: 20px;
    width: 45px;
    height: 45px;
    box-shadow: -5px -5px 0 #adc9fd;
}
.empLeave_status i.skycolor {
    box-shadow: -5px -5px 0 #9cdbff;
}
.empLeave_status i.grencolor{
    box-shadow: -5px -5px 0 #91ffc1;
}
.empLeave_status i.orngcolor {
    box-shadow: -5px -5px 0 #ffc283;
}
.empLeave_status{
    min-height: 120px;
}
.emp_performance_editer {
    width: 280px;
}
.emp_professional_table table tbody tr td #rating_indicator {
    min-height: 50px;
    width: 120px;
}
.emp_professional_table table tbody tr td #rating_Weightage {
    width: 70px;
}
.emp_professional_table table tbody tr td #empTotal_Marks {
    width: 40px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.login_img h2 {
    font-size: 26px;
}
.login_img h2 strong {
    font-size: 32px;
    display: block;
}
.login_img img {
    width: 300px;
}
.login_img h3 {
    font-size: 20px;
    margin: 10px;
}
.login_form_inner {
    width: 90%;
}
#main #main_inner_search {
    width: 50%;
}
.employee_setting_box ul li > a {
    width: 125px;
}
.add_policies_box ul li > a {
    width: 100px;
}
.add_department_box ul li > a {
    width: 110px;
}
.totel_employee {
    padding: 5px;
    display: block;
    text-align: center;
    height: 100%;
}
.totel_employee i {
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin: 5px auto;
}
.totel_employee h3 {
    font-size: 13px;
    margin: 0 0 0 0;
}
.totel_employee h3 strong {
    font-size: 12px;
}
.list_employee_name h2 {
    font-size: 15px;
    line-height: inherit;
}
.list_employee_name {
    padding:15px 0 0 10px;
}
.search_emp_datewise {
    padding: 10px 0;
}
.emp_designation {
    padding: 10px 0;
}
.emp_status{
    padding: 10px 0;
}
.emp_designation select {
    width: 100%;
    padding: 0 0 0 0;
    text-align: center;
}
.emp_status select {
    width: 100%;
    padding: 0;
    text-align: center;
}
.main_dashboard_footer span {
    text-align: center;
    display: block;
}
.main_dashboard_footer strong span {
    text-align: right;
    position: relative;
    top: -18px;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical {
    margin: 10px 0;
}
.emp_setting_box .tab-content {
    margin: 10px 0;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link.active {
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link {
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
}
.profile_setting_form form .d-flex {
    flex-direction: column;
}
.profile_setting_form form input {
    width: 100%;
    margin: 5px 0 5px 0;
}
.profile_setting_form h4 {
    text-align: center;
    border-bottom: 1px solid #999;
    padding: 0 0 5px 0;
    margin: 15px 0 5px 0;
}
.profile_setting_form form select {
    width: 100%;
    margin: 5px 0 5px 0;
}
.profile_setting_btn {
    justify-content: space-between;
}
.notify_emp_list .notify_emp_list_img, .notify_emp_list .notify_emp_list_img img
{
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
}
.notify_emp_list_text h3 {
    font-size: 13px;
}
.notify_emp_list_text p {
    font-size: 12px;
}
.notification_top_box {
    width: 45%;
}
.emp_detail_text_box .accordion-item .accordion-body ul li span {
    width: 40%;
}
.emp_detail_text_box .accordion-item .accordion-body ul li {
    font-size: 12px;
}
.emp_detail_text_box .accordion-item button .addemp_bank, .emp_detail_text_box .accordion-item button .addemp_family {
    width: 20%;
}
.attendance_empprofile_box {
    padding: 10px;
}
.employee_name_box h4 {
    font-size: 18px;
}
.attendance_empprofile_box h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
}
.attendance_empprofile_box img {
    width: 110px;
    height: 110px;
}
.attendance_empprofile_box h5 {
    padding: 5px;
    width: 100%;
}
.attendance_emp_workoingbox strong {
    font-size: 16px;
}
.attendance_emp_workoingbox strong span {
    font-size: 14px;
}
.attendance_empprofile_box h3 {
    font-size: 12px;
}
.attendance_empprofile_box span i {
    font-size: 14px;
}
.attendance_emp_workoingbox {
    padding: 5px
}
.attendance_emp_workoingbox h4 {
    font-size: 14px;
    font-weight: 500;
}
.attendance_employee_table table tbody tr td .working_hour {
    width: 100%;
    display: block;
    text-align: center;
}
.attendance_employee_table table tbody tr td a {
    width: 100%;
}
.all_emp_details_table table thead tr th {
    font-size: 14px;
    font-weight: 500;
}
.emp_profile_icon_box {
    width: 25%;
}
.admin_leave_status .totel_employee:after {
    position: inherit;
}
.admin_leave_status .totel_employee i {
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ccc;
}
.empLeave_status i, .empLeave_status i.skycolor, .empLeave_status i.grencolor, .empLeave_status i.orngcolor {
    box-shadow:inherit;
}
.empLeave_status h3 {
    font-size: 14px;
    margin: 0 0 0 0;
}
.emp_performance_basicinfo h2 {
    font-size: 20px;
}
.empbasic_information label {
    font-size: 14px;
}
.empbasic_information input {
    padding: 4px 8px;
}
.emp_performance_editer {
    width: 250px;
}
.emp_professional_table table tbody tr td #rating_indicator {
    min-height: 50px;
    width: 90px;
}
.emp_professional_table table tbody tr td #rating_Weightage {
    width: 50px;
}
.emp_professional_table table tbody tr td #empTotal_Marks {
    width: 30px;
}
.ipapData_Table table tbody tr td .ipapFilled_Time {
    display: block;
    padding: 0;
}
.ipapData_Table table tbody tr td a.ipap_View {
    padding: 0;
}
.ipapData_Table table tbody tr td .ipapApproved_Time {
    display: block;
    padding: 0;
}
}

@media only screen and (max-width: 767px) {
.loginpage {
    flex-direction: column;
}
.login_img, .login_form
{
    width: 100%;
    height: auto;
}
.login_img h2 {
    font-size: 22px;
    margin: 5px;
}
.login_img h2 strong {
    font-size: 28px;
    display: block;
}
.login_img img {
    width: 280px;
}
.login_img h3 {
    font-size: 20px;
}
.login_form_inner form button {
    padding: 8px;
}
.main_inner_box {
    padding: 10px;
}
.main_inner1 {
    justify-content: space-between;
}
#main #main_inner_search {
    width: 75%;
}
#toggleBtn {
    top: 15px;
}
.employee_details_box {
    padding: 0;
}
.employee_name_box {
    margin: 10px 0;
}
.employee_setting_box ul li > a {
    width: 125px;
    height: 40px;
}
.add_employee {
    width: 170px;
    height: 40px;
}
.totel_employee {
    margin: 5px 0;
}
.list_employee_name h2 {
    text-align: center;
}
.list_employee_name, .search_emp_datewise, .emp_designation, .emp_status {
    padding: 2 10px;
}
.emp_designation select {
    width: 100%;
}
.emp_status select {
    width: 100%;
    font-size: 12px;
}
.emp_designation select {
    font-size: 12px;
}
.search_emp_datewise input {
    font-size: 12px;
}
.all_emp_details_table {
    padding: 10px;
}
.all_emp_details_table table thead tr th {
    font-size: 12px;
}
.all_emp_details_table table tbody tr td {
    font-size: 10px;
    vertical-align: middle;
}
.all_emp_details_table table thead tr th {
    vertical-align: middle;
}
.all_emp_details_table table tbody tr th
 {
    vertical-align: middle;
}
.policies_list .all_emp_details_table table tbody tr td i {
    font-size: 12px;
}
.all_emp_details_table table {
    margin: 0;
}
.details_btn_prevnext {
    padding: 10px;
    justify-content: center;
}
.main_dashboard_footer {
    text-align: center;
}
.main_dashboard_footer strong {
    text-align: center;
    display: block;
}
.main_dashboard_footer strong span {
    line-height: 1;
}
.employee_setting_box {
    margin: 0 0 10px 0;
}
.employee_name_box h4 {
    font-size: 18px;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical {
    margin: 0;
}
.emp_setting_box .tab-content {
    margin: 10px 0 0 0;
}
.emp_setting_box .tab-content .tab-pane h2 {
    font-size: 20px;
}
.emp_setting_box .tab-content .tab-pane h3 {
    font-size: 14px;
}
.emp_profile_text h4 {
    font-size: 15px;
}
.profile_setting_form form input {
    width: 80%;
}
.profile_setting_form form textarea {
    width: 80%;
}
.profile_setting_form form select {
    width: 80%;
}
.security_setting_box button {
    padding: 5px 10px;
    font-size: 12px;
}
.changepassdiv {
    top: 80%;
}
.notify_emp_list_text h3 {
    font-size: 13px;
}
.notify_emp_list_text p {
    font-size: 12px;
}
.notification_top_box {
    width: 65%;
}
.emp_detail_text_box .accordion-item .accordion-body p {
    text-align: justify;
}
.emp_detail_text_box .accordion-item button .addemp_bank, .emp_detail_text_box .accordion-item button .addemp_family {
    width: 30%;
    font-size: 12px;
}
.attendance_admin_box {
    justify-content: center;
}
.emp_profile_icon_box {
    width: 35%;
}
.attendance_empprofile_box h3 {
    font-size: 12px;
}
.attendance_empprofile_box h4 {
    font-size: 18px;
}
.attendance_employee_table table tbody tr td a {
    width: 100%;
}
.attendance_employee_table table tbody tr td .working_hour {
    display: block;
    width: 100%;
    text-align: center;
}
.admin_leave_status .totel_employee:after {
    border-radius: 0;
}
.admin_leave_status .totel_employee i {
    margin: 0 0 0 10%;
}
.admin_leave_status .totel_employee h3 {
    margin: 0 0 0 140px;
    width: 50%;
}
.empLeave_status i {
    font-size: 18px;
    width: 50px;
    height: 50px;
}
.empLeave_status h3 {
    font-size: 12px !important;
}
.Empleave_details_table table tbody tr td select {
    width: 120px;
    max-width: 100%;
}
.Empleave_details_table table tbody tr td select {
    font-size: 12px;
}
.emp_performance_basicinfo h2 {
    font-size: 18px;
}
.empbasic_information label {
    font-size: 12px;
}
.empbasic_information input {
    font-size: 12px;
    padding: 4px;
}
.emp_professional_table table tbody tr td {
    font-size: 10px;
    vertical-align: top;
}
.emp_professional_table table tbody tr td select {
    font-size: 12px;
    width: 100px;
    min-height: 30px;
}
.emp_performance_editer .ck-editor__editable_inline {
    min-height: 100px;
}
.emp_professional_table table tbody tr td #rating_indicator {
    font-size: 12px;
    min-height: 50px;
    width: 120px;
}
.emp_professional_table table tbody tr td #rating_Weightage {
    font-size: 12px;
    min-height: 50px;
    width: 100px;
}
.emp_professional_table table tbody tr td #empTotal_Marks {
    font-size: 12px;
    min-height: 30px;
    width: 30px;
    margin: 0 auto;
    display: block;
}
.performance_rating_btn #addBtn, .performance_rating_btn #removeBtn {
    padding: 5px;
    font-size: 12px;
    width: 60px;
}
.performance_rating_btn #submitBtn {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
}
.emp_performance_editer {
    width: 230px;
}
.ipapData_Table table tbody tr td .ipapFilled_Time, .ipapData_Table table tbody tr td .ipapApproved_Time {
    font-size: 8px;
    font-weight: 600;
    display: block;
    padding: 0;
}
.ipapData_Table table tbody tr td .ipap_View i, .ipapData_Table table tbody tr td .ipap_Edit i {
    font-size: 10px;
    display: block;
    padding: 5px 0;
    text-align: center;
}
.ipapData_Table table tbody tr td a {
    display: block;
}
}

@media only screen and (max-width: 575px) {
.sidenav_logo img {
    width: 40px;
    max-width: 100%;
}
.sidemenu ul li a.nav-link {
    font-size: 12px;
}
.sidemenu ul.dropdown-menu.show li a.dropdown-item {
    font-size: 10px;
    font-weight: 400;
}
.login_img h2
{
    font-size: 18px;
    margin: 5px;
}
.login_img h2 strong
{
        font-size: 22px;
        display: block;
}
.login_img img
{
        width: 200px;
}
.login_img h3
{
    font-size: 16px;
    margin: 5px;
}
.login_form_inner {
    width: 100%;
}
.loginlogo img {
    width: 75px;
}
.login_form_inner h2 {
    font-size: 14px;
    margin: 8px 0 5px 0;
}
.login_form_inner p {
    font-size: 12px;
    margin: 0 0 5px 0;
}
.login_form_inner form {
    margin: 10px 0;
}
.login_form_inner form label {
    font-size: 12px;
}
.login_form_inner form button {
    padding: 4px;
    font-size: 14px;
}
.circle_element {
    width: 50px;
    height: 50px;
}
.circle_element2 {
    width: 30px;
    height: 30px;
}
#mySidenav {
  transition: width 0.4s ease;
}
.Sidenav {
  z-index: 99;
}
#main {
  transition: margin-left 0.4s ease;
}
#toggleBtn {
  background: linear-gradient(45deg, rgba(112, 105, 255, 1) 0%, rgba(29, 119, 204, 1) 60%, rgba(119, 172, 252, 1) 100%);
  transition: left 0.4s ease;
  position: absolute; /* keep it moving with #main if you want that behavior */
  top: 15px;
  z-index: 999;
}
#toggleBtn i {
    color: #fff;
}
.employee_setting_box ul li > a {
    width: 125px;
    height: 40px;
    font-size: 12px;
}.employee_setting_box .add_employee {
    width: 130px;
    height: 40px;
    font-size: 12px;
}
.add_department_box .add_employee {
    width: 145px;
    height: 40px;
    font-size: 12px;
}
.employee_setting_box {
    margin: 0 0 10px 0;
    justify-content: space-around;
}
.employee_name_box h4 {
    font-size: 16px;
}
.totel_employee {
    margin: 5px 0;
    padding: 10px 8px;
}
.totel_employee i {
    font-size: 14px;
    width: 35px;
    height: 35px;
}
.totel_employee h3{
    font-size: 14px;
}
.totel_employee h3 strong {
    font-size: 12px;
}
.list_employee_name h2 {
    text-align: center;
    font-size: 16px;
}
.details_btn_prevnext #prevBtn, .details_btn_prevnext #nextBtn {
    width: 65px;
    font-size: 12px;
}
.details_btn_prevnext {
    padding: 5px;
    justify-content: space-between;
}
.main_dashboard_footer span {
    font-size: 10px;
}
.main_dashboard_footer span strong {
    font-size: 14px;
}
.main_dashboard_footer strong {
    font-size: 12px;
}
.main_dashboard_footer strong span {
    line-height: 1;
    font-size: 24px;
    font-weight: bold;
}
.scroll-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
    right: 0;
    bottom: 0;
}
.emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link.active, .emp_setting_box ul.nav.nav-tabs.nav-tabs-vertical li a.nav-link
{
    font-size: 14px;
    padding: 5px 10px;
}
.emp_setting_box .tab-content .tab-pane h2 {
    font-size: 17px;
}
.emp_setting_box .tab-content .tab-pane h3 {
    font-size: 13px;
}
.emp_profile_text h4 {
    font-size: 13px;
}
.emp_profile_text h5 {
    font-size: 10px;
}
.emp_profile_img {
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
}
.emp_profile_text .upload, .emp_profile_text .cancel {
    padding: 5px 7px;
    font-size: 10px;
}
.profile_setting_form {
    background: #fff;
    padding: 5px;
}
.profile_setting_form form label {
    font-size: 12px;
}
.profile_setting_form form input {
    width: 60%;
    font-size: 12px !important;
    margin: 5px 0 5px 0;
}
.profile_setting_form h4 {
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #999;
    padding: 0 0 5px 0;
}
.profile_setting_form form textarea {
    width: 60%;
    font-size: 12px !important;
    margin: 5px 0 5px 0;
}
.profile_setting_form form select {
    width: 60%;
    font-size: 12px !important;
    margin: 5px 0 5px 0;
}
.profile_setting_btn {
    justify-content: space-between;
}
#profileset_form .profile_setting_btn .cancel {
    padding: 5px 7px;
    font-size: 10px;
}
#profileset_form .profile_setting_btn .save {
    padding: 5px 15px;
    font-size: 10px;
}
.security_setting_box h3
{
    margin: 5px 0 0 0;
    width: 45%;
    text-align: justify;
    line-break: anywhere;
}
.changepassdiv {
    top: 61%;
}
.notification_top_box {
    width: 94%;
    right: 10px;
}
.employee_detail_header .employee_name_box {
    padding: 0;
}
.employee_detail_header .employee_name_box h4 {
    font-size: 16px;
}
.employee_name_box button {
    width: 140px;
    font-size: 12px;
}
.employee_name_box button i {
    padding: 0;
    width: 15px;
    height: 15px;
    font-size: 8px;
    border: 1px solid #fff;
    margin: 0 5px 0 0;
}
.emp_detail_img h2 {
    font-size: 14px;
}
.emp_detail_photo_box ul li strong {
    font-size: 12px;
}
.emp_detail_photo_box .emp_edit_btn {
    width: 100px;
    padding: 2px;
    font-size: 12px;
}
.emp_detail_photo_box ul li i {
    width: 20px;
    font-size: 10px;
}
.emp_emergency_info ul h5 {
    font-size: 13px;
}
.emp_detail_text_box .accordion-item button {
    font-size: 12px;
    padding: 5px;
}
.emp_detail_text_box .accordion-item .accordion-body p {
    font-size: 12px;
}
.emp_detail_text_box .accordion-item .accordion-body ul li span {
    width: 42%;
    text-align: left;
    float: left;
}
.emp_detail_text_box .accordion-item .accordion-body ul li {
    text-align: right;
    font-size: 12px;
    font-weight: 400;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info li span strong {
    font-size: 12px;
}
.emp_detail_text_box .accordion-item .accordion-body .edu_releted_info li span {
    font-size: 11px;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span {
    width: 54%;
}
.emp_detail_text_box .accordion-item .accordion-body .emp_exeperience_info li span strong {
    width: 90%;
}
#add_emp_modal .modal-dialog {
    width: 95%;
}
#add_emp_modal .modal-dialog .modal-header .btn-close {
    font-size: 6px;
    width: 7px;
    height: 7px;
}
#add_emp_modal .modal-dialog .modal-header h1 {
    font-size: 14px;
}
#add_emp_modal .modal-dialog .modal-header h1 span {
    font-size: 11px;
    margin: 0;
    display: block;
}
.add_emp_photo .emp_profile_text h4 {
    font-size: 14px;
}
.add_emp_photo .emp_profile_text h5 {
    font-size: 10px;
}
.add_emp_photo .emp_profile_img {
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
}
.add_emp_photo .emp_profile_text .upload, .add_emp_photo .emp_profile_text .cancel {
    padding: 4px 8px;
    font-size: 10px;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form label {
    font-size: 12px;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form input
{
    font-size: 10px;
}
#add_emp_modal .modal-dialog .modal-body .tab-content form .mb-3
{
    margin-bottom: 5px !important;
}
#add_emp_modal .modal-dialog .modal-footer .emp_cancel, #add_emp_modal .modal-dialog .modal-footer .emp_save {
    padding: 5px 10px;
    font-size: 12px;
}
.add_emp_box ul.nav li.nav-item a.nav-link {
    font-size: 12px;
}
.emp_permission_top h2 {
    font-size: 13px;
    width: 58%;
}
.emp_permission_top .form-check label {
    font-size: 10px;
    line-height: normal;
    margin: 0 5px 0 0;
}
#emp_permission_table tbody tr td label {
    font-size: 12px;
    display: inline-flex;
}
#bank_statutory_modal .modal-dialog {
    width: 95%;
}
#bank_statutory_modal .modal-dialog .modal-body form h2
{
    font-size: 16px;
}
#emp_edit_profile_modal .modal-dialog {
    width: 95%;
}
#emp_edit_emergency_info .modal-dialog .modal-body h3 {
    font-size: 15px;
}
#emp_policies_table_edit .modal-body form .list-group li .customfile_list span {
    width: 75%;
    display: inline-block;
    vertical-align: middle;
    text-align: justify;
    line-break: anywhere;
}
.custom-upload-box i {
    font-size: 24px;
}
.custom-upload-box i:after {
    width: 50px;
    height: 25px;
    left: -16px;
    border: 1px solid #0000a5;
}
.custom-upload-box p {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: #000;
}
.custom-upload-box .text-muted {
    font-size: 11px;
    font-family: var(--font);
    font-weight: 500;
    color: #444;
}
.emp_save, .emp_cancel {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
}
.emp_detail_text_box .accordion-item button .addemp_bank {
    width: auto;
    font-size: 11px;
    background: #000;
    color: #fff;
}
.emp_detail_text_box .accordion-item button .addemp_family {
    width: auto;
    font-size: 11px;
    background:#000;
    color: #fff;
}
.emp_detail_text_box .accordion-item button .addemp_experience {
    width: auto;
    font-size: 11px;
    background: #000;
    color: #fff;
}
.add_emp_box ul.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.add_emp_box ul.nav li {
    background: #f1f1f1;
    margin: 2px;
    box-shadow: 0 0 5px #ccc;
}
.attendance_admin_table table tbody tr td a {
    width: 100%;
}
.attendance_admin_table table tbody tr td .working_hour {
    padding: 5px;
    width: 100%;
    text-align: center;
    display: block;
}
.emp_profile_icon_box {
    width: 70%;
}
.attendance_empprofile_box h4 {
    font-size: 16px;
    font-weight: 500;
}
.attendance_empprofile_box h5 {
    padding: 10px;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
}
.attendance_empprofile_box span {
    font-size: 12px;
}
.attendance_empprofile_box span i {
    font-size: 14px;
}
.attendance_emp_workoingbox i {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    font-size: 24px;
}
.attendance_emp_workoingbox strong {
    font-size: 16px;
}
.attendance_emp_workoingbox strong span {
    font-size: 14px;
}
.attendance_emp_workoingbox h4 {
    font-size: 14px;
}
.attendance_emp_workoingbox {
    text-align: center;
}

.attendance_employee_table table tbody tr td .emp_present, .attendance_employee_table table tbody tr td .emp_absent {
    font-size: 10px;
}
.attendance_employee_table table tbody tr td a {
    font-size: 10px;
}
.attendance_employee_table table tbody tr td .working_hour {
    padding: 3px;
}
.attendance_empprofile_box img {
    width: 90px;
    height: 90px;
    border: 2px solid #2d76ff;
}
.admin_leave_status .totel_employee i {
        margin: 0 0 0 5%;
}
.admin_leave_status .totel_employee {
    justify-content: start;
}
.admin_leave_status .totel_employee h3 {
    margin: 0 0 0 110px;
    width: 50%;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form label {
    font-size: 12px;
}
#add_adminLeave_modal .modal-dialog .modal-body .admin_leave_box form input {
    font-size: 10px;
}
#add_adminLeave_modal .modal-dialog .modal-header .btn-close {
    font-size: 6px;
    width: 7px;
    height: 7px;
}
#add_adminLeave_modal .modal-dialog .modal-header h1 {
        font-size: 14px;
}
#add_adminLeave_modal .modal-dialog .modal-footer .emp_cancel, #add_adminLeave_modal .modal-dialog .modal-footer .emp_save {
    padding: 5px 10px;
    font-size: 12px;
}
}
@media only screen and (max-width: 400px) {
.admin_leave_status .totel_employee h3 {
    margin: 0 0 0 50px;
    width: 50%;
}
}
