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

body {
    font-family: 'Roboto', sans-serif;
}

ul {
    padding: 0px;
    margin: 0px;
}

.flt {
    float: left;
    width: 100%;
}

.login_container {
    background-image: url('../images/login-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login_left {
    background-image: url(../images/login-left-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: calc(70% - 25px);
    margin-right: 25px;
    min-height: calc(100vh - 90px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0px;
    position: relative;
    overflow: hidden;
}

.login_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: rgb(85 189 255);
    text-align: center;
    margin-bottom: 25px;
}

.login_right {
    width: 30%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 6px rgb(10 82 128 / 10%);
    border-radius: 6px;
    padding: 20px;
    min-height: calc(100vh - 90px);
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login_man {
    text-align: center;
    z-index: 1;
}

.login_form .form-group {
    margin-bottom: 25px;
}

.login_form label {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: rgb(0, 0, 0);
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.login_form input {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 6px;
    padding: 15px;
    outline: none;
}

.login_form input::placeholder {
    color: rgb(96 96 96);
}

.login_logo {
    text-align: center;
    margin-bottom: 70px;
}

.login_btn {
    margin-top: 15px;
}

.login_btn button {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    background-color: rgb(10 82 128);
    border-radius: 5px;
    padding: 18px;
    border: none;
    width: 100%;
    text-align: center;
}

.bottom_slide {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
}

.bottom_slide img {
    width: 100%;
}

.circle_slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login_feature {
    background-color: rgb(10 82 128);
    box-shadow: 0px 0px 15.4238px rgb(0 0 0 / 25%);
    border-radius: 10px;
    padding: 20px 5px;
    text-align: center;
    z-index: 1;
}

.login_notif_txt {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.login_notif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-200px, -114px);
}

.login_update {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(220px, -50%);
}

.login_notif .login_feature {
    width: 115px;
}

.login_update .login_feature {
    width: 150px;
}

.header_container {
    padding: 10px 15px;
    background-image: url(../images/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.profile_image {
    margin: 0px 15px;
}

.profile_name {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    text-align: right;
    color: rgb(109 109 109);
}

.profile_name span {
    font-weight: 500;
    color: rgb(10, 82, 128);
}

.profile_image img {
    border: 1px solid rgb(10 82 128);
    border-radius: 6px;
}

.setting {
    background-color: rgb(245 245 245);
    border: 1px solid rgb(10 82 128);
    border-radius: 6px;
    font-size: 18px;
    color: rgb(10 82 128);
    text-decoration: none;
    position: relative;
    padding: 8px 12px;
    cursor: pointer;
}

.setting ul {
    width: 200px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 0px;
    top: 45px;
    z-index: 1;
    box-shadow: 0px 0px 10px rgb(10 82 128 / 14%);
    border-radius: 6px;
    padding: 10px 0px;
    border-bottom: 3px solid rgb(10 82 128);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease-in-out;
}

.setting:hover ul {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
    transition: 0.5s all ease-in-out;
}

.setting ul li {
    list-style-type: none;
    float: left;
    width: 100%;
    border-bottom: 1px solid rgb(245 245 245);
}

.setting ul li:last-child {
    border-bottom: none;
}

.setting ul li a {
    float: left;
    width: 100%;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    text-decoration: none;
}

.menu_container {
    background-color: rgb(10 82 128);
    padding: 10px 0px;
    border-bottom: 3px solid rgb(151 214 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuH li {
    list-style-type: none;
    display: inline-block;
    padding: 0px 22px;
    position: relative;
}

.menuH li::before {
    content: '';
    width: 1px;
    height: 20px;
    background-color: rgb(0 134 248);
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}


.menuH li a img {
    margin-right: 10px;
}

.tea {
    display: flex;
    align-items: center;
    padding-right: 22px;
}

.tea_txt {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: right;
    color: rgb(10 82 128);
    background-color: rgb(180 223 251);
    border: 1px solid rgb(0 134 248);
    border-radius: 3px;
    padding: 5px 8px;
}

.tea_select {
    border: 1px solid rgb(255, 255, 255);
    border-radius: 3px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.tea_select span {
    border-right: 1px solid rgb(255, 255, 255);
    padding-right: 7px;
    margin-right: 7px;
}

.tea_select select {
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    color: rgb(255 255 255);
    /* background-color: transparent; */
    border: none;
    outline: none;
    text-transform: uppercase;
}

.tea_submit {
    color: rgb(10 82 128);
    font-size: 14px;
    border: none;
    border-radius: 3px;
    background-color: rgb(255, 255, 255);
    padding: 7px 12px;
    margin-left: 5px;
}

.performer_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(151 214 255);
    border-radius: 4px 4px 0px 0px;
    padding: 13px;
}

.performer {
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px rgb(10 82 128 / 14%);
    border-radius: 6px;
}

.footer_container {
    background-color: rgb(10 82 128);
    padding: 10px 25px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid rgb(94 181 255);
}

.footer_container a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.page_container {
    padding: 15px;
    min-height: calc(100vh - 155px);
}

.create_form_main {
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px rgb(10 82 128 / 14%);
    border-radius: 6px;
}

.create_form_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    border-bottom: 1px solid rgb(94 181 255);
    padding: 15px 10px;
}

.create_form {
    padding: 15px 10px;
}

.create_form label {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: rgb(47, 47, 47);
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.create_form input,
.create_form select,
.create_form textarea {
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    padding: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(47, 47, 47);
    float: left;
    width: 100%;
    outline: none;
    background-color: transparent;
}

.create_form input::placeholder {
    color: rgb(116 116 116);
}

.create_form .form-group {
    margin-bottom: 25px;
}

.list_table {
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px rgb(10 82 128 / 14%);
    border-radius: 6px;
    overflow-y: auto;
    padding: 5px;
}

.list_table th {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    vertical-align: middle !important;
    color: rgb(10 82 128);
    border-bottom: 1px solid rgb(94 181 255) !important;
    padding: 12px 8px !important;
}

.list_table tbody tr {
    background-color: rgb(251 251 251);
    border-radius: 5px;
    border-bottom: 6px solid rgb(255, 255, 255);
}

/* 
.list_table table tr {
    background-color: rgb(251 251 251);
    border-radius: 5px;
    border-top: 6px solid rgb(255, 255, 255);
} */

.list_table tbody tr td {
    font-weight: 400;
    font-size: 14px;
    color: rgb(84 84 84);
    vertical-align: middle;
    padding: 20px;
    border: none;
}

.list_table td .edit {
    background-color: rgb(40 167 69);
    border: 1px solid rgb(0 128 0);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: rgb(255 255 255);
    font-size: 13px;
    margin-right: 5px;
    line-height: 25px;
}

.list_table td .view {
    background-color: rgb(40 167 69);
    border: 1px solid rgb(0 128 0);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: rgb(255 255 255);
    font-size: 13px;
    margin-right: 5px;
    line-height: 25px;
}

.list_table td .view {
    background-color: rgb(61 147 239);
    border: 1px solid rgb(0 123 255);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: rgb(255 255 255);
    font-size: 13px;
    margin-right: 5px;
    line-height: 25px;
}

.list_table .table {
    margin-bottom: 0px;
}

.page_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.page_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgb(10 82 128);
}

.table_search {
    width: 25%;
    position: relative;
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    padding: 10px 10px 10px 30px;
}

.table_search input {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: rgb(47, 47, 47);
    float: left;
    width: 100%;
    outline: none;
    background-color: transparent;
    border: none;
}

.table_search::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(171 171 171);
}

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

.pagination li a {
    color: rgb(10, 82, 128);
}

.pagination li.active a {
    background-color: rgb(10 82 128);
}

.project_btn {
    text-align: right;
}

.project_btn button {
    background-color: rgb(10 82 128);
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 30px;
    border-radius: 3px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.create_form input[type="file"] {
    padding: 12px 15px;
}

.profile_name .employee_id {
    font-weight: 400;
    font-size: 17px;
    color: #6D6D6D;
}

.list_table td .delete {
    background-color: rgb(223 13 13);
    border: rgb(126 4 4);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: rgb(255 255 255);
    font-size: 13px;
    margin-right: 5px;
    line-height: 25px;
}

.holiday_title {
    width: 60%;
    font-weight: 500;
    font-size: 18px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgb(10 82 128);
}

.holiday_btn {
    width: 15%;
    text-align: right;
    padding-right: 10px;
}

.holiday_btn button {
    background-color: rgb(10 82 128);
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px 30px;
    border-radius: 3px;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
}

.pending_leave {
    font-size: 12px;
    background-color: #e91e63;
    color: #FFFFFF;
    padding: 7px;
    border-radius: 4px;
}

.pending_leave:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.leave_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 14px;
    color: rgb(10 82 128);
}

.leave_box {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    background-color: rgb(61 147 239);
    color: #FFFFFF;
    padding: 14px 10px;
    border-radius: 4px;
}

.leave_div {
    padding: 20px 0px;
}

.leave_head {
    padding-bottom: 10px;
}

.applicate_name {
    font-weight: 500;
    font-size: 18px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    padding-top: 20px;
}

.pending_select select {
    background-color: #3d93ef;
    color: #ffffff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #0752a3;
}

.reject_select select {
    background-color: #db0303;
    color: #ffffff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #980909;
}

.revert_status select {
    background-color: #FFF9C4; /* light yellow */
    color: #333333;            /* dark text for contrast */
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #F57F17;
  }

.approved_select select {
    background-color: rgb(40 167 69);
    color: #ffffff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgb(0 128 0);
}

.project_report {
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px rgb(10 82 128 / 14%);
    border-radius: 6px;
    margin-bottom: 10px;
}

.report_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    border-bottom: 1px solid rgb(151 214 255);
    border-radius: 4px 4px 0px 0px;
    padding: 13px;
}

.project_search input {
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    padding: 10px 10px 10px 30px;
}

.leave_cont {
    padding: 15px 12px;
    display: flex;
    align-items: center;
    width: 100%;
}

.project_details {
    padding-right: 10px;
}

.project_details label {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: rgb(47, 47, 47);
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.project_details select {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(116 116 116);
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    height: 46px;
    background-color: transparent;
    outline: none;
}

.project_details input {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(116 116 116);
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    height: 46px;
}

.project_details input:hover {
    outline: none;
}

.project_name span {
    color: rgb(98, 98, 98);
    font-size: 12px;
}

.project_name {
    padding: 4px 0px;
    font-size: 14px;
}

.project_Time {
    color: rgb(98, 98, 98);
    font-size: 12px;
}

.project_date {
    color: rgb(0 130 214);
    font-size: 18px;
}

.total_hour {
    color: rgb(37 84 0);
    font-weight: 500;
    background-color: rgb(223 255 193);
    border-radius: 4px;
    padding: 8px 20px;
}

.view_report {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: rgb(255 255 255);
    background-color: rgb(10 82 128);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 4px;
    height: 46px;
    border: none;
}

.report {
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px rgb(10 82 128 / 14%);
    border-radius: 6px;
    margin-top: 15px;
}

.report_left_head {
    font-weight: 400;
    font-size: 14px;
    color: rgb(10 82 128);
    text-align: center;
    padding: 15px 0px;
}

.report_left_cont {
    padding: 0px 10px;
}

.report_left_cont li:nth-child(odd) {
    text-align: right;
    color: rgb(10 82 128);
}

.report_left_cont li {
    list-style-type: none;
    float: left;
    width: 50%;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 0px;
    border-top: 1px solid rgb(235 235 235);
}

.report_left_cont li span {
    float: right;
    padding: 0px 22px;
}

.work_details {
    padding: 10px;
    height: calc(100vh - 250px);
    overflow-y: auto;
}

.work_box {
    background-color: rgb(249 253 255);
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 3px rgb(108 108 108 / 50%);
}

.work_box_head {
    font-weight: 300;
    font-size: 12px;
    color: rgb(65 65 65);
    padding: 12px 10px;
    border-bottom: 1px solid rgb(180, 223, 251);
}

.work_box_head span {
    font-weight: 500;
    font-size: 14px;
    color: rgb(10 82 128);
}

.work_box_table table thead th {
    font-weight: 400;
    font-size: 14px;
    color: rgb(10 82 128);
    padding: 12px 20px;
    border: none;
}

.work_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(151 214 255);
    border-radius: 4px 4px 0px 0px;
    padding: 13px;
}

.work_box_table tbody tr td {
    font-weight: 400;
    font-size: 14px;
    color: rgb(84 84 84);
    border: none;
    padding: 12px 20px;
    vertical-align: middle;
}

.leave_count_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(245 245 245);
    box-shadow: 0px 0px 15px rgb(0 134 219 / 20%);
    border-radius: 4px;
    padding: 20px;
}

.total_project {
    padding: 15px 12px;
}

.project_count_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(245 245 245);
    box-shadow: 0px 0px 15px rgb(0 134 219 / 20%);
    border-radius: 4px;
    padding: 20px;
}

.project_count_txt {
    font-weight: 400;
    font-size: 12px;
    color: rgb(47 47 47);
}

.work_head input {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(116 116 116);
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    height: 46px;
    padding: 0px 12px;
}

.leave_count_no.blue {
    color: rgb(10 82 128);
}

.leave_count_no {
    font-weight: 600;
    font-size: 26px;
    line-height: 52px;
    color: rgb(93, 181, 255);
}

.holiday_btn select {
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    padding: 15px;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: rgb(47, 47, 47);
    float: left;
    width: 100%;
    outline: none;
    background-color: transparent;
}

.overshoot {
    background-color: rgb(241, 52, 38) !important;
}

.overshoot td {
    color: #fff !important;
}

.list_table td button {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: rgb(255 255 255);
    padding: 4px;
    border: none;
    outline: none;
    width: 66px;
    border-radius: 4px;
}

.list_table td .pending {
    background-color: rgb(173 173 173);
}

.list_table td .approved {
    background-color: rgb(0, 196, 85);
}
.emp_reoprt {
    padding: 10px 20px;
}
.emp_report_head {
    font-weight: 500;
    font-size: 16px;
    color: rgb(10 82 128);
    text-transform: uppercase;
}
.emp_report_box {
    background-color: rgb(245 245 245);
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgb(168 168 168 / 40%);
    padding: 20px;
    margin: 15px 0px;
}
.emp_report_list {
    padding: 0px;
    margin: 0px;
}
.emp_report_list li {
    list-style-type: none;
    font-weight: 400;
    font-size: 14px;
    color: rgb(84 84 84);
    margin-top: 10px;
}
.emp_report_list li span {
    font-weight: 500;
    font-size: 14px;
    color: rgb(10 82 128);
    text-transform: uppercase;
}




.hamburger {
    width: 25px;
    height: 20px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    display: flex;
    border: none;
    background-color: transparent;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background: rgb(10 82 128);
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
}

.open_hamburger .bar:first-child {
    transform: rotate(45deg);
    transition: 0.3s all ease-in-out;
    translate: 0px 7px;
}

.open_hamburger .bar:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
}

.open_hamburger .bar:last-child {
    transform: rotate(-45deg);
    transition: 0.3s all ease-in-out;
    translate: 0px -8px;
}

/* Media Query */
@media (min-width: 320px) and (max-width: 479px) {
    .leave_div .col-sm-2 {
        width: 100%;
        float: left;
        margin-bottom: 15px;
    }
    .report_left_cont li:nth-child(odd) {
        text-align: left;
        width: 100%;
        padding-bottom: 5px;
    }
    .report_left_cont li:nth-child(even) {
        width: 100%;
        border-top: none;
        padding-top: 0px;
    }
    .report_left_cont li span {
        float: none;
        padding: 0px 10px;
    }
}
@media (min-width: 480px) and (max-width: 639px) {
    .leave_div .col-sm-2 {
        width: 50%;
        float: left;
        margin-bottom: 15px;
    }
}
@media (min-width: 640px) and (max-width: 767px) {
    .leave_div .col-sm-2 {
        width: 33.33%;
        float: left;
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .mobile_hide {
        display: none !important;
    }
    .user_box {
        background-color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        padding: 10px;
    }
    .user_image {
        margin-right: 10px;
    }
    .user_image img {
        border: 1px solid rgb(10 82 128);
        border-radius: 6px;
    }
    .user_name {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: left;
        color: rgb(109 109 109);
    }
    .user_name span {
        font-weight: 500;
        color: rgb(10, 82, 128);
    }
    .footer_container {
        display: block;
        text-align: center;
    }
    .footer_left {
        margin-bottom: 10px;
    }
    .menu_container {
        position: fixed;
        z-index: 1;
        height: 100vh;
        width: 0px;
        box-shadow: 0px 0px 10px rgb(0 0 0 / 49%);
        display: block;
        left: 0px;
        top: 0px;
        padding: 0px;
        transition: 0.3s all ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .open_menu {
        width: 250px;
        transition: 0.3s all ease-in-out;
        opacity: 1;
        visibility: visible;
    }

    .menuH {
        float: left;
        width: 100%;
        padding-top: 10px;
    }

    .menuH li {
        float: left;
        width: 100%;
        padding: 0px !important;
    }

    .menuH li a {
        float: left;
        width: 100%;
        padding: 15px 22px;
    }
    .page_head {
        display: block;
    }
    .holiday_title {
        width: 100%;
    }
    .holiday_btn {
        width: 100%;
        padding-right: 0px;
        margin: 10px 0px;
    }
    .table_search {
        float: left;
        width: 100%;
    }
    .page_title {
        margin-bottom: 10px;
    }
    .login_container {
        padding: 15px;
    }
    .login_box {
        display: block;
    }
    .login_left {
        display: none;
    }
    .login_right {
        width: 100%;
        min-height: calc(100vh - 30px);
    }
    .leave_cont {
        display: block;
    }
    .work_details {
        height: auto;
    }
    .project_count_box {
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) {
    .desktop_hide {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .holiday_btn {
        width: 25%;
    }
    .emp_reoprt .col-sm-3 {
        width: 33.33%;
    }
    .login_left {
        width: calc(60% - 25px);
    }
    .login_right {
        width: 40%;
    }
    .leave_div .col-sm-2 {
        padding: 0px 10px;
    }
    .pending_leave {
        font-size: 10px;
    }
    .report_left_cont li:nth-child(odd) {
        text-align: left;
        width: 100%;
        padding-bottom: 5px;
    }
    .report_left_cont li:nth-child(even) {
        width: 100%;
        border-top: none;
        padding-top: 0px;
    }
    .report_left_cont li span {
        float: none;
        padding: 0px 10px;
    }
    .total_project .col-sm-3 {
        width: 50%;
        margin: 15px 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .holiday_btn {
        width: 20%;
    }
    .report_left_cont li:nth-child(odd) {
        text-align: left;
        width: 100%;
        padding-bottom: 5px;
    }
    .report_left_cont li:nth-child(even) {
        width: 100%;
        border-top: none;
        padding-top: 0px;
    }
    .report_left_cont li span {
        float: none;
        padding: 0px 10px;
    }
    .total_project .col-sm-3 {
        width: 50%;
        margin: 15px 0px;
    }
}