/* css for admin login page starts here */
.login_page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #fff;
}

.box {
    position: relative;
    width: 380px;
    height: 420px;
    border-radius: 8px;
    background: #1c1c1c;
    overflow: hidden;
}

.box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, #fcd77f, #fcd77f);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, #f89034, #f89034);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form {
    position: absolute;
    inset: 5px;
    border-radius: 8px;
    background: #22282f;
    z-index: 10;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}
.form h2 {
    color: #fff;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0, 1em;
}

.inputBox {
    position: relative;
    width: 300px;
    margin-top: 35px;
}
.inputBox input {
    position: relative;
    width: 100%;
    padding: 10px 9px 10px;
    background: transparent;
    border: none;
    outline: none;
    color: #23242a;
    font-size: 1em;
    letter-spacing: 0.05em;
    z-index: 10;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 10px 10px;
    font-size: 1.3em;
    color: #8f8f8f;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.5s;
}

.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
    color: #f89034;
    transform: translateX(0px) translateY(-34px);
    font-size: 1.3em;
}

.inputBox i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #f89034;
    border-radius: 4px;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}

.inputBox input:valid ~ i,
.inputBox input:focus ~ i {
    height: 44px;
}

.links {
    display: flex;
    justify-content: space-between;
}

.links a {
    margin: 10px 0;
    font-size: 00.75em;
    color: #8f8f8f;
    text-decoration: none;
}
.otp-field {
    display: flex;
}
.otp_head {
    color: #fff;
    font-size: 36px;
    text-align: center;
}
.otp-field input {
    width: 40px;
    font-size: 28px;
    padding: 2px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid #55525c;
    background: #21232d;
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    border: 2px solid #f78e40;
    box-shadow: 0 0 2px 2px #a527ff6a;
}

.disabled {
    opacity: 0.5;
}

.space {
    margin-right: 1rem !important;
}

/* forgot password section */
.forgot_psd {
    text-align: end;
}
.forgot_psd a {
    color: #8f8f8f;
    text-decoration: none;
}
.forgot_psd a:hover {
    color: #c0c0c0;
    text-decoration: none;
}
.links a:hover,
.links a:nth-child(2) {
    color: #45f3ff;
}
button[type="submit"] {
    border: none;
    outline: none;
    background: #f89034;
    color: #fff;
    padding: 11px 25px;
    width: 100px;
    font-size: 14px;
    /* margin-top: 10px; */
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

button[type="submit"]:hover {
    opacity: 0.8;
    background: #f89034;
    color: #fff;
}
button[type="submit"]:active {
    opacity: 0.8;
    background: #f89034;
    color: #fff !important;
}
button[type="submit"]:focus-visible {
    opacity: 0.8;
    background: #f89034;
    color: #fff;
}
/* css for admin login page ends here */
/* css for admin dashboard starts here */
.menu_icon {
    background: #fdbd45;
    color: #fff;
}
.admin_logo {
    padding: 3px 0px !important;
}
.admin_logo img {
    width: 100%;
    height: 40px;
}
.sidebar_badge {
    position: absolute;
    left: 7rem;
    font-size: 11px;
    top: 22.2rem;
    border-radius: 50% !important;
    height: 20px;
    width: 20px;
    padding: 4px 0px 0px 0px !important;
}
.sidebar_listings a {
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0.7rem 0rem 0.8rem 1rem;
    border-bottom: 1px solid gainsboro;
}
.sidebar_ul {
    list-style: none;
}
.sidebar_ul a {
    font-weight: normal;
    line-height: 0;
    text-decoration: none;
    font-size: 12px;
    color: #707071;
}

/* On Click active li */
.active,
.sb_li_btn:hover {
    background-color: #c1c1c161;
    color: white;
}
/* On Click active li */

.li_hr {
    border-bottom: 1px solid #686868;
    margin: 0.5rem 0;
}
/* Css for attendance overview */
.total_att_card_section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.att_count_section {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
    padding-top: 0.4em;
}
/* Custom tooltip css here */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
/* Custom tooltip css here */
.table-responsive {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    border-radius: 0px;
}
.overview_card .card-body {
    padding: 0rem 0rem 0rem 0.5rem !important;
}
.overview_card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
}
.overview_card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.att_count_section p {
    margin: 0px;
}
.exp_worktime {
    display: flex;
    justify-content: space-around;
    padding-top: 0.4em;
}
.present_val {
    margin-bottom: 4px !important;
}

.card_overview img {
    width: 40px;
    height: auto;
}
.card_item p {
    margin: 0px;
}
.details_main_card {
    width: 42% !important;
    border-radius: 20px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    padding: 0.5rem 0rem 0rem 0rem;
}
.details_main_card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.card_item .material-symbols-outlined {
    color: #199d76;
    font-size: 1.5rem !important;
    padding-top: 4px;
}
.present_ct_att {
    color: #199d76;
    background: #199d751c;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 13px;
}
.late_ct_att {
    color: #ffc107;
    background: #ffc1072a;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 13px;
}
.halfday_ct_att {
    color: #075eff;
    background: #075eff28;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 13px;
}
.absent_ct_att {
    color: #e11b1b;
    background: #e11b1b23;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 13px;
}
.leave_ct_att {
    color: #64cbd3;
    background: #64cbd32d;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: normal;
    font-size: 13px;
}
.present_ct {
    color: #199d76;
    /* background: #199d751c; */
    border-radius: 50%;
    font-weight: 600;
    height: 30px;
    width: 29px;
}
.late_ct {
    color: #ffc107;
    /* background: #ffc1072a; */
    border-radius: 50%;
    font-weight: 600;
    height: 30px;
    width: 29px;
}
.joining_info {
    color: #199d76;
    font-weight: 600;
    text-align: center;
}
.halfday_ct {
    color: #075eff;
    /* background: #075eff28; */
    border-radius: 50%;
    font-weight: 600;
    height: 30px;
    width: 29px;
}
.absent_ct {
    color: #e11b1b;
    /* background: #e11b1b23; */
    border-radius: 50%;
    font-weight: 600;
    height: 30px;
    width: 29px;
}
.leave_ct {
    color: #64cbd3;
    border-radius: 50%;
    font-weight: 600;
    height: 30px;
    width: 29px;
}
.user_att_profile {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #e4e1e1;
}
.user_att_details .card-text {
    padding: 0px;
    margin: 0px;
}
.user_att_details .material-symbols-outlined {
    position: relative;
    top: 4px;
    color: #058d64;
    font-size: 16px !important;
}
.pro_details .material-symbols-outlined {
    position: relative;
    top: 2px;
    color: #058d64;
    font-size: 20px !important;
    font-weight: 700;
}
.pro_details p{
    margin: 0px;
    font-size: 12px;
}
.user_att_details p,
.exp_worktime p {
    font-size: 12px;
}
.li_content{
    font-size: 12px;
}
.custom_create_button {
    background: #fdbd45;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    gap: 5px;
}
.form_layout {
    background: #fff;
    border: 1px solid gainsboro;
    border-radius: 23px;
    padding: 2rem;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.custom_create_button:hover {
    background: #fdbd45da;
    color: #ffffff;
}
.close_bt_btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.75rem 2rem !important;
}
/* css for admin dashboard ends here */
/* salary slip styles */
.salary_section{
    padding-top: 1rem;
}
/* salary slip styles */
/* user details starts here */
.user_card_1 {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 2rem;
}
.total_att_user_card {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 2rem;
}
.total_att_user_card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.user_card_1 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.card_row_2 {
    border-left: 2px solid #e4e1e1;
    border-left-style: dashed;
    padding-left: 2rem;
}
.card_row_3 {
    margin: 1em 0.5em 0em 0em;
}
.card_row_4 {
    margin: 1em 0em 0em 0.5em;
}
.user_card_layout_row {
    background: #fff;
    border: 1px solid gainsboro;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.user_card_layout_row_bottom {
    background: #fff;
    border: 1px solid gainsboro;
    border-radius: 10px;
    padding: 0rem 2rem 2rem 2rem;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
/* css for admin users listing page starts here */
.user_profile_ul_section {
    gap: 2rem;
}
.notification_icon {
    position: relative;
    top: 0.5rem;
}
.notification_icon .material-symbols-outlined {
    font-size: 30px !important;
}
.notification_item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.notification_item h6 {
    margin: 0px;
    font-size: 13px;
}
.notification_item p {
    margin: 0px;
    font-size: 12px;
}
.notification_item img {
    width: 30px;
    border-radius: 50%;
    height: 30px;
}
.notification_dropdown {
    height: 11rem;
    overflow: auto;
}
.users_page {
    padding: 1rem 0px 0rem 0px;
    border-bottom: 1px solid #e4e1e1;
}
.users_indi_card {
    background: #fdbd45;
    color: #fff;
    font-weight: 600;
    text-align: center;
    gap: 1;
}
.users_indi_card h5 {
    background: #fdbd45;
    color: #fff;
    font-weight: 700;
    text-align: center;
    gap: 1;
}
.users_indi_card .card-body {
    padding: 0.5rem 0.5rem;
}
.users_indi_card p {
    margin: 0px;
}
.details_row_user_header {
    display: flex;
    align-items: center;
    gap: 7rem;
    justify-content: center;
}

/* Circle loader leave balance starts */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;900&display=swap");

.circle_loader_section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #333;
    list-style-type: none;
    text-decoration: none;
}

.circle_loader_body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.loader_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 50%;
    background-color: #f9fbfd;
    box-shadow: 0 0 1px 1px #2221212d;
}

.loader_box::before {
    position: absolute;
    content: "";
    width: calc(100% + 27px);
    height: calc(100% + 27px);
    border-radius: 50%;
    border: 8px solid #dedede;
}

.loader_box .number span {
    color: #000000;
}
.loader_box .number {
    margin: 0px;
}

.loader_box .number .num {
    font-size: 28px;
    font-weight: bold;
}

.loader_box .number .sub {
    font-size: 20px;
}

.loader_box .title {
    font-size: 15px;
    color: #959595;
}

.dots {
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: 2s transform, 2s opacity ease;
}

.dots::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 5px;
    left: 50%;
    border-radius: 50%;
    background-color: #fba138;
    box-shadow: 0 0 5px 2px #fba138a3;
    transform: translateX(-50%);
}

.svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: none;
    transform: rotate(-90deg);
}

.circle {
    stroke: url(#gradientStyle);
    stroke-width: 6px;
    stroke-dasharray: 503;
    stroke-dashoffset: 503;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    transition: 2s stroke-dashoffset;
}
.leave_cal_section {
    display: flex;
    justify-content: space-around;
}
.leave_item {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.leave_item p {
    margin: 0px;
    font-size: 1rem;
}
.leave_item h6 {
    margin: 0px;
    font-weight: 600;
}
.circular_leave_text p {
    margin: 0px;
    font-size: 12px !important;
    text-transform: uppercase;
}
#leave_staus_bar {
    cursor: pointer;
}
/* Circle loader leave balance ends */
/* users table */
.users_table {
    padding: 1rem;
}
.users_table table {
    margin-top: 1rem;
    /* border: 1px solid #d3d2d2; */
    /* text-align: center; */
}
.add_user {
    display: flex;
    justify-content: end;
    padding-bottom: 1rem;
}
/* css for admin users listing page ends here */
/* users page styles */
.edit-del-btn {
    display: flex;
    align-items: center;
    justify-content: left;
}
.manage_users_graph {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* calender css */
.calender_header {
    padding: 1rem 0rem 0rem;
    text-align: center;
    border-bottom: 1px solid #dfdfdf;
}

.calender_header h2 {
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.767);
}
.calender_header h6 {
    font-weight: 500;
    color: #707071;
}
.graph_header {
    text-align: center;
    padding: 8px 0px;
}

.calender_view {
    margin: 1rem 2rem 2rem 1rem;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    padding: 1rem;
    font-size: 12px;
    border-radius: 15px;
}
/* full calender */
.fc-toolbar .fc-center {
    display: inline-block;
    padding-right: 6rem;
}
.fc-toolbar .fc-center h2{
    font-size: 18px;
    font-weight: 700;
}
.excelButton {
    color: #fff;
    border: none;
    background: #fcbb53;
    padding: 5px 19px;
    font-weight: bold;
    border-radius: 7px;
    margin-left: 1.5rem;
}
.id_card p {
    margin: 0px;
    padding-bottom: 5px;
}
.id_card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.id_card_front {
    background-image: url("/images/id_card/id_front.png");
    width: 100%;
    height: 360px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
/* .material-symbols-outlined {
    font-family: 'Material Icons';
} */
.id_card_front img {
    width: 10em;
    height: 10em;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 1.8em;
    border: 6px solid #f37e30;
}
.id_card_back {
    background-image: url("/images/id_card/id_back.png");
    width: 100%;
    height: 360px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.card_back_qr img {
    width: 7.5em;
    height: 7.5em;
    display: block;
    margin: 0 auto;
    border: 4px solid #fec537;
}
.id_card_top_head span {
    color: #f37e30 !important;
}
.id_card_top_head {
    padding-top: 2.8rem;
    text-align: center;
}
.id_card_top_head h6 {
    color: #ffffff;
    margin: 0px;
    font-size: 2rem;
}
.id_card_top_head p {
    color: #f4f4f4;
    margin: 0px;
}
.id_card_contact .item {
    display: flex;
    align-items: center;
    gap: 4.8rem;
}
.id_card_contact_back .item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.id_card_contact p {
    margin: 0px;
    padding-bottom: 6px;
}
.id_card_contact span,
.id_card_icons span {
    color: #fec537;
    font-size: 1.4rem !important;
    font-weight: 600;
    position: relative;
    left: 1.7em;
}
.id_card_contact_back span {
    color: #fec537;
}
.id_card_contact_back p {
    margin: 0px;
    line-height: 20px;
    padding: 31px 0px;
}
.front_id_sign {
    text-align: end;
    padding-right: 1rem;
}
.front_id_sign p {
    text-align: end;
    display: inline-block;
    border-top: 1px solid #fbb95d;
}
.id_card_dob .item {
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* cv */
.cv p {
    margin: 0px;
}
.cv_sidebar {
    background: #fea63c;
    padding: 2em;
    height: 100%;
}
.cv_body {
    background: #eeeeeeee;
    padding: 2em;
    height: 100%;
}
.cv_body_heading {
    text-align: center;
}
.cv_contact_item div {
    display: flex;
    align-items: center;
    gap: 2em;
    color: #fff;
    padding: 8px 0px;
}
.cv_contact h6,
.cv_language h6,
.cv_skills h6 {
    font-size: 1.7rem;
    font-weight: 500;
    color: #ffffff;
    border-bottom: 4px solid;
    padding: 2rem 0px 10px 0px;
    text-transform: uppercase;
}

.cv_skills ul,
.cv_language ul {
    list-style-position: inside;
    color: #fff;
}

.professional_sec h6,
.education h6,
.work_exp h6 {
    font-size: 1.7rem;
    font-weight: 500;
    border-bottom: 4px solid;
    padding: 2rem 0px 10px 0px;
    text-transform: uppercase;
    color: #fda449;
}
.work_exp_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 15px;
}
.cv_body_heading h6 {
    font-size: 2.2rem;
    font-weight: 500;
}
.cv_body_heading p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d0d0e9e;
}
.cv_profile {
    height: 8em;
    width: 8em;
    border-radius: 50%;
    border: 4px solid #ffffff;
    display: block;
    margin: 0 auto;
}
/* cv */
.fc th {
    text-align: center;
    padding: 0.5rem 0rem !important;
    color: #fff;
    background: #fbb95d;
}
.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: left;
    padding-top: 1rem;
}
.fc .fc-button-group > :first-child {
    margin-left: 0;
    background: #fcbb53;
    color: #fff;
}
.fc .fc-button-group > * {
    float: left;
    margin: 0 0 0 -1px;
    background: #fcbb53;
    color: #fff;
}
.fc-state-default.fc-corner-right {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #fcbb53;
    color: #fff;
}
.fc-title {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 2;
}
.fc td,
.fc th {
    border-style: solid;
    border-width: 1px;
    /* padding: 5px 0px 0px 10px !important; */
    vertical-align: top;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
    border-top: 0;
    text-align: center;
}
.fc-ltr .fc-basic-view .fc-day-number {
    position: relative;
    left: 1rem;
}
.fc-basic-view .fc-body .fc-row {
    height: 110px !important;
}
.fc-event .fc-content {
    position: relative;
    text-align: left;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
}
.accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid #dfdfdf;
}
.users_table th {
    font-size: 12px;
}
.users_table td {
    font-size: 12px;
}
.users_table .table > :not(caption) > * > * {
    padding: 0.1rem 0.2rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    padding-top: 0.355em !important;
    font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0em 1em !important;
    /* margin-left: 2px; */
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: inherit !important;
    border: 1px solid transparent;
    border-radius: 4px !important;
    font-size: 13px;
}
.dataTables_wrapper .dataTables_length {
    float: left;
    font-size: 13px;
}
.graph_view {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* User Profile css */
.user_profile img {
    width: 30px;
    border-radius: 50%;
    height: 30px;
}
.notification_dropdown_item {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 1.5rem;
    padding: 10px;
    border-bottom: 1px solid #e4e1e1e1;
}

.logout_dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e4e1e1e1;
}
.modal_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 2rem;
    font-weight: 700;
}
.modal_receipt {
    height: 4rem;
    width: 4rem;
}
.modal_date p,
.modal_total_amt p {
    margin: 0px;
}
.modal_total_amt {
    font-size: 1.3rem;
    text-align: end;
    font-weight: 700;
    padding-right: 2rem;
}
.upload_pro_pic {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.upload_pro_pic label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #f78e40;
    padding: 3px 17px;
    cursor: pointer;
}
.notify_pic label {
    color: #fff;
    background: #f78e40;
    padding: 3px 17px;
    cursor: pointer;
}
.notify_pic label:hover {
    color: #fff;
    background: #f78f40cb;
}
.upload_pro_pic label:hover {
    color: #fff;
    background: #f78f40cb;
}
.push_notification_table {
    padding-top: 2rem;
}
.bulk_aprove_btn{
    text-align: end;
    padding: 1em;
}
.bulk_aprove_btn button{
    color: #fff;
    background: #f78f40cb;
}
/* checkin and checkout css */
.work_hrs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
}
.checkinout_sec img{
    width: 180px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 100%;
}
.checkinout_sec {
    padding: 1em 0em;
}
.cio_heading{
   padding-top: 2em;
}
.cio_heading h2, p{
    margin: 0px;
}
.cio_heading p{
    color: #707071;
}
/* checkin and checkout css */
/* Loader style */
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #eee;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242f3f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.loader {
    display: inline-block;
    /* width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff; */
    animation: loader 2s infinite ease;
}
.loader-inner {
    /* vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff; */
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}
/* Holiday style */
.holiday_body {
    background: url("../images/holiday_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* height: 100vh; */
}

.holiday_cal_head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.holiday_cal_head h2 {
    color: #fff;
    font-size: 5.5em;
    font-weight: 800;
    margin: 0px;
    padding-top: 3rem;
}
.holiday_cal_head p {
    color: #cfab57;
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0px;
}
.table_center_head {
    border-collapse: separate;
    border-spacing: 10em 1em;
    margin: 0 auto;
}

.holiday_item p {
    margin: 0px;
    color: #cfaa5e;
    font-weight: 800;
    font-size: 1.2em;
}
.hl_listing_user_atten li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
/* Accordion styles */
.accordion-button:not(.collapsed) {
    color: #f37d2f;
    font-weight: 700;
    background-color: #fcbb5329;
    box-shadow: inset 0 -1px 0 #fcbb53;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #fcbb53 !important;
    outline: 0;
    box-shadow: 0 0 0 0.15rem #fcbb53;
}
.notify_relative_header {
    position: relative;
    top: 2.8rem;
    margin-top: -3rem;
}
/* Dashboard Accordion css start here */
.dashboard_accordion .accordion-button:not(.collapsed) {
    color: #fcbb53;
    font-weight: 700;
    background-color: #70707129;
    box-shadow: inset 0 -1px 0 #707071;
}
.dashboard_accordion .accordion-button:focus {
    z-index: 3;
    border-color: #707071 !important;
    outline: 0;
    box-shadow: 0 0 0 0.15rem #707071;
}
.dashboard_accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
    color: #fcbb53 !important;
    font-weight: 700;
    gap: 1rem;
}
.dashboard_accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    color: #fcbb53 !important;
    font-weight: 700;
    gap: 0.8rem;
}
.dashboard_accordion .accordion-body {
    padding: 0.5rem 0px;
}
/* Dashboard Accordion css end here */
/* Edit profile css start here */
.admin_userEditBtn {
    font-weight: 700;
    color: #f37d2f;
    float: right;
}
.user_card_head {
    margin: 0px;
}
.edit_icon {
    text-align: end;
}
.edit_icon span {
    color: #fcbb53;
    font-size: 1.8rem !important;
}
.user_pro_pic {
    text-align: center;
}
.user_pro_pic h6 {
    margin: 0px;
}
.user_pro_pic img {
    height: 7em;
    width: 7em;
    border-radius: 50%;
    margin-bottom: 1rem;
}
/* DataTable css starts here */
label {
    display: inline-block;
    padding-top: 0rem;
}
.input_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.input_btn button {
    border-radius: 0px !important;
}
.dataTables_wrapper {
    position: relative;
    clear: both;
    background: #fff;
    /* border: 1px solid gainsboro; */
    padding: 0.5rem 0.5em;
    border-radius: 0px;
}
table.dataTable.no-footer {
    border-bottom: 1px solid rgba(0, 0, 0, 0.082) !important;
}
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #aaa;
    border-radius: 6px !important;
    padding: 5px;
    background-color: #eeeeee !important;
    padding:0px 2px !important;
    height: 25px;
    border-radius: 4px !important;
}
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #aaa;
    border-radius: 6px !important;
    padding: 5px;
    background-color: #eeeeee !important;
    margin-left: 3px;
    font-size: 13px;
    height: 25px;
    width: 130px;
    border-radius: 4px !important;
}
.attendance_table label {
    position: absolute;
    right: 1rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: inherit !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: #fcbb53 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #111;
    background: #fcbb53 !important;
}
.in_time_color {
    color: #24855a;
}
.out_time_color {
    color: #da3349;
}
.is_late_check {
    color: #24855a;
}
.is_late_cancel {
    color: #da3349;
}
.material-symbols-outlined {
    font-size: 17px !important;
}
/* .table_header {
    background: #febf32 !important;
    color: #fff;
    border-right: 1px solid #dfdfdf;
} */
.table_edit_btn {
    color: #1b9c5c;
}

.table_del_btn {
    color: #ff2626;
}
.common_yellow_btn_clr {
    background: #febf32 !important;
}
.export_btn {
    background: #1b9c5c !important;
    padding: 5px;
}
.edit_att_header {
    text-align: center;
    color: #707071;
    font-size: 1.8rem;
}
.edit_att_header_total {
    text-align: center;
    color: #707071;
    font-size: 1.8rem;
    border-bottom: 1px solid #e4e1e1e1;
}
.edit_att_form label {
    display: inline-block;
    padding-bottom: 0.5rem;
}
.toolbarHead {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707071;
    font-size: 16px;
    padding-top: 2.7rem;
}
/* DataTable css ends here */
/* Attendance Dropdown css start */
.edit-del-btn .dropdown-item {
    display: flex;
    width: 100%;
    padding: 0.15rem 0rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    align-items: center;
    justify-content: space-evenly;
    font-size: 13px;
}
/* Attendance Dropdown css end */
.att_details_monthly {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #e4e1e1e1;
    border-top-style: dashed;
}
.card_row_att_total {
    display: block;
    margin: 0 auto;
}
.card_row_att_total .card_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.card_item {
    padding: 0.2rem 0rem 0.2rem 0rem;
}
.total_attendance_table {
    width: 50rem;
    display: block;
    margin: 0 auto;
}
.filter_row_overview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 15px;
    padding-left: 1rem;
    border-radius: 12px;
}
.overview_row {
    border-bottom: 1px solid #e4e1e1e1;
}
.overview_row h4,
.salary_section h4 {
    color: #707071;
}
.filter_row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 15px;
    background: #ffffff;
    padding: 1rem 0rem 0rem 1rem;
    /* border: 1px solid #e4e1e1e1; */
    border-bottom: none;
    z-index: 62;
    border-right: none;
    border-radius: 12px;
    position: absolute;
}
.card_anchor {
    color: #000;
    text-decoration: none;
}
.card_anchor:hover {
    color: #000;
    text-decoration: none;
}
.btn_drpdwn {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #fdbd45;
    font-size: 13px;
    font-weight: bolder;
}
#userFilterSubmit,
#userExportSubmit ,
#exportUserSalary,
#searchUser{
    padding: 5px;
    width: 75px;
}
.admin_overview_section {
    height: 78vh;
    overflow-y: auto;
}
.comn_border_bottom {
    border-bottom: 1px solid #e4e1e1;
    padding: 2.6rem 0rem;
}
.comn_border_bottom_leave {
    border-bottom: 1px solid #e4e1e1;
    padding: 1rem 0rem 0.5rem 0rem;
}
.apply_fr_regu {
    padding-top: 5rem;
}
.apply_fr_regu label {
    padding: 0px;
    color: #707071;
    font-weight: 800;
}

#modal_tbody_time_sheet{
    padding: 1rem 2rem;
}
.ck-editor__editable_inline {
    padding: 0 30px !important;
}
.ck-editor__editable_inline {
    min-height: 200px;
}
.task_date{
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 0px;
    margin: 0px;
}
.task_date label{
    padding: 0px;
    margin: 0px;
}
/* Boootstrap alert css here */
.align-items-center {
    align-items: center !important;
    padding: 8px !important;
    margin: 0 !important;
    font-size: 11.5px !important;
}
.fc-event {
    position: relative;
    display: block;
    font-size: 1em !important;
    line-height: 1.8 !important;
    border-radius: 3px;
    border: 1px solid #3a87ad;
    font-weight: 400;
    bottom: 5px !important;
}
/* datatables menue problem */
/* #userTaskList .dropdown-menu{
    position: fixed !important;
    top: 37% !important;
    left: 86.3% !important;
    transform: translate(-92%, -50%) !important;
} */
/* datatables menue problem */
/* Media queries */
@media only screen and (min-width: 1450px) {
    .users_table td {
        font-size: 14px;
    }
    .users_table th {
        font-size: 14px;
    }
}
@media only screen and (max-width: 1440px) {
    .total_attendance_table {
        width: 50rem;
        text-align: center;
        position: relative;
        left: 2rem;
    }
    /* .calender_header {
        padding: 0rem 0rem 0rem;
        text-align: left;
    } */
    /* .calender_view{
        padding: 0rem 0rem 0rem 0rem;
    } */
    .fc-ltr .fc-basic-view .fc-day-number {
        padding-left: 0px;
        text-align: left !important;
    }
    .fc td,
    .fc th {
        border-style: solid;
        border-width: 1px;
        padding: 0px 0px 0px 2px !important;
        vertical-align: top;
    }

    .fc-event {
        position: relative;
        display: block;
        font-size: 0.85em !important;
        line-height: 1.8 !important;
        border-radius: 3px;
        border: 1px solid #3a87ad;
        font-weight: 400;
        bottom: 5px !important;
    }
}
/* ===== Global DataTable Styles ===== */
