@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;
}

.leave_cont_apply {
    padding: 15px 12px;
}
.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 {
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.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;
    margin-right: 10px;
    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: rgb(10 82 128);
    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;
}

.report_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;
}

.report {
    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 - 168px);
    background-color: rgb(249 253 255);
}

.report_cont {
    padding: 15px 10px;
}

.report_cont label {
    font-weight: 400;
    font-size: 14px;
    color: rgb(47 47 47);
    float: left;
    width: 100%;
}

.report_cont input,
.report_cont select {
    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;
}

.input_icon {
    position: relative;
}

.input_icon input {
    padding-left: 46px;
}

.input_icon::before {
    content: '';
    background-image: url(../images/clock.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.report_btn {
    text-align: center;
}

.report_btn button {
    text-align: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgb(10 82 128);
    border-radius: 3px;
    font-size: 18px;
}

.report_btn .add {
    background-color: rgb(10 82 128);
    color: rgb(255, 255, 255);
}

.report_btn .remove {
    background-color: transparent;
    color: rgb(200, 97, 0);
}

.report_timings {
    margin-top: 15px;
    padding: 20px 20px 0px 20px;
}

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

.report_submit {
    border-top: 1px solid rgb(82 196 247);
    padding-top: 25px;
    margin-top: 10px;
    text-align: right;
}

.report_submit 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;
}

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

.dash_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 13px;
    border-bottom: 1px solid rgb(151 214 255);
    min-height: 45px;
}

.dash_head span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: rgb(10 82 128);
}

.perform_cont {
    padding: 12px;
    height: 136px;
    overflow-y: auto;
}
.star_perform {
    padding: 12px;
    height: 280px;
    overflow-y: auto;
}
.perform_box {
    border: 1px solid rgb(241 241 241);
    border-radius: 6px;
    padding: 7px;
    margin-bottom: 8px;
}

.perform_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(235 235 235);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.perform_info {
    display: flex;
    align-items: center;
}

.perform_image {
    margin-right: 6px;
}

.perform_image img {
    border-radius: 4px;
    width: 40px;
    height: 40px;
}

.perform_txt {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgb(78 78 78);
}

.perform_txt span {
    font-size: 15px;
    color: rgb(0 0 0);
}

.perform_star {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: rgb(67 67 67);
    background-color: rgb(240 240 240);
    border-radius: 2px;
    padding: 10px 22px;
}

.star_image img {
    border-radius: 3px;
    width: 75px;
    height: 75px;
}

.star_name {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: rgb(0 0 0);
}

.star_desc {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: rgb(65 65 65);
    text-align: justify;
}

.star_count {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: rgb(10 82 128);
    margin-right: 5px;
}

.star_icon {
    color: rgb(234 179 19);
    font-size: 18px;
}

.star_box {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

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

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

.star_image {
    margin-right: 15px;
}

.perform_cont .perform_box:last-child {
    margin-bottom: 0px;
}

/* .notification {
    padding: 6px;
    height: 245px;
    overflow: auto;
} */

.notification_image img {
    border: 1px solid rgb(10 82 128);
    border-radius: 5px;
    width: 44px;
    height: 44px;
}

.notification_box {
    border: 1px solid rgb(241 241 241);
    border-radius: 6px;
    padding: 7px;
    margin-bottom: 7px;
    display: flex;
}

.notification_image {
    margin-right: 12px;
}

.notification_date {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgb(116 116 116);
    text-align: right;
    margin-bottom: 2px;
}

.notification_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgb(10 82 128);
    margin-bottom: 5px;
}

.notification_desc {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: rgb(65 65 65);
    text-align: justify;
}

.bell {
    position: relative;
}

.bell b {
    font-weight: 400;
    font-size: 12px;
    color: rgb(199 1 23);
    background: rgb(253 173 182);
    width: 16px;
    height: 16px;
    position: absolute;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    right: -8px;
    top: -8px;
}

.birthday {
    padding: 6px;
    height: 488px;
    overflow-y: auto;
}

.birthday li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(251 251 251);
    border-radius: 5px;
    margin-bottom: 4px;
    padding: 6px;
}

.birthday_image img {
    border: 1px solid rgb(10 82 128);
    border-radius: 5px;
    width: 46px;
    height: 46px;
}

.birthday_name {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: rgb(10 82 128);
    margin: 0px 15px;
}

.birthday_date {
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    color: rgb(116 116 116);
}

.birthday_left {
    display: flex;
    align-items: center;
}

.project_table {
    padding: 7px;
}

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

.project_table th {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(69 69 69);
    border-bottom: 1px solid rgb(230 230 230) !important;
    padding: 10px !important;
}

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

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

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

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

.team_hour {
    color: rgb(200, 97, 0);
    font-weight: 500;
    background-color: rgb(255, 224, 196);
    border-radius: 4px;
    padding: 8px 20px;
}

.view_report {
    font-weight: 400;
    font-size: 12px;
    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;
    padding: 8px 14px;
    border: none;
}

.project_table .table-responsive {
    height: 425px;
    overflow-y: auto;
}

.holiday_list {
    padding: 6px;
}

.holiday_list thead tr th {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(80 80 80);
    padding: 8px !important;
    vertical-align: middle;
    border: none;
}

.holiday_list tbody tr {
    background-color: rgb(251 251 251);
    border-radius: 5px;
    border-top: 2px solid rgb(255, 255, 255);
}

.holiday_list tbody tr:last-child {
    border-bottom: none;
}

.holiday_list tr td {
    font-weight: 300;
    font-size: 12px;
    color: rgb(65 65 65);
    padding: 8px 10px !important;
    border: none !important;
}

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

.holiday_list .table-responsive {
    height: 425px;
    overflow-y: auto;
}

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

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

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

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

.leave_cont {
    padding: 15px 12px;
}

.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;
}

.leave_cont label {
    font-weight: 400;
    font-size: 14px;
    color: rgb(47 47 47);
    float: left;
    width: 100%;
}

.leave_cont input,
.leave_cont select {
    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;
}

.leave_cont textarea {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(116 116 116);
    border: 1px solid rgb(171 171 171);
    border-radius: 5px;
    padding: 13px;
}

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

.leave_table {
    height: 674px;
    overflow-y: auto;
    padding: 5px;
}

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

.leave_table th {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(10 82 128);
    padding: 12px 8px !important;
}

.leave_table tbody tr td {
    vertical-align: middle;
    font-weight: 400;
    font-size: 13px;
    color: rgb(98, 98, 98);
    padding: 25px 8px !important;
}

.leave_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;
}

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

.leave_table td .approved {
    background-color: rgb(0, 196, 85);
}

.leave_table td .rejected {
    background-color: rgb(241, 52, 38);
}

.leave_table td a {
    color: rgb(0 130 214);
    text-decoration: none;
    cursor: pointer;
}

.mt-15 {
    margin-top: 15px;
}

.leave_modal .form-group {
    border-bottom: 1px solid rgb(167 167 167);
    margin-bottom: 22px;
    padding-bottom: 5px;
}

.leave_modal label {
    font-weight: 400;
    font-size: 13px;
    color: rgb(10 82 128);
    float: left;
    width: 100%;
}

.leave_modal_cont {
    font-weight: 400;
    font-size: 13px;
    color: rgb(98 98 98);
}

.leave_modal_btn {
    text-align: right;
}

.leave_modal_btn button {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    color: rgb(255 255 255);
    background-color: rgb(10 82 128);
    border-radius: 4px;
    border: none;
    padding: 13px;
    width: 152px;
}

.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 {
    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;
}

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

.report_left_cont li:nth-child(even) {
    color: rgb(84, 84, 84);
}

.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_box_table tbody tr td {
    font-weight: 400;
    font-size: 14px;
    color: rgb(84 84 84);
    border: none;
    padding: 12px 20px;
    vertical-align: middle;
}

.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%);
}

.notification_cont {
    width: calc(100% - 56px);
}



.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;
}
.project_filter_new select {
    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;
}
.project_filter_new {
    margin-right: 15px;
}
.project_filter_new select {
    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;
}
.leave_count_box{
    margin-bottom: 12px;
}

/* Media Query */

@media (min-width: 320px) and (max-width: 479px) {
    .report_left_cont li:nth-child(odd) {
        text-align: left;
        width: 100%;
        padding-bottom: 5px;
    }
    .report_left_cont li span {
        float: none;
        padding: 0px 10px;
    }
    .report_left_cont li:nth-child(even) {
        width: 100%;
        border-top: none;
        padding-top: 0px;
    }
}

@media (max-width: 767px) {
    .login_container {
        padding: 15px;
    }

    .login_box {
        display: block;
    }

    .login_left {
        display: none;
    }

    .login_right {
        width: 100%;
        min-height: calc(100vh - 30px);
    }

    .perform_cont {
        /* max-height: none; */
        height: 300px;
        /* white-space: nowrap;
        overflow-x: auto; */
    }
    /* .star_perform {
        white-space: nowrap;
        height: auto;
        overflow-x: auto;
    } */
    /* .perform_box {
        display: inline-block;
        width: 90%;
        margin-right: 10px;
        white-space: initial;
        float: none;
        margin-bottom: 0px;
    } */

    .perform_cont .perform_box:last-child {
        width: 100%;
        margin-right: 0px;
    }

    .star_box {
        display: block;
    }

    .star_image {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .notification {
        /* max-height: none;
        height: auto;
        white-space: nowrap;
        overflow-x: auto; */
    }

    .notification_box {
        display: inline-flex;
        width: 90%;
        margin-right: 10px;
        white-space: initial;
        float: none;
        margin-bottom: 0px;
    }

    .birthday {
        height: auto;
    }

    .holiday_list .table-responsive {
        height: auto;
    }

    .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%;
    }

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

    .menuH li a {
        float: left;
        width: 100%;
        padding: 15px 22px;
    }

    .menuH li a:hover {
        background-color: rgb(180 223 251);
        color: rgb(10 82 128);
    }

    .menuH li::before {
        display: none;
    }

    .tea {
        display: block !important;
        float: left;
        width: 100%;
        padding: 15px 22px;
    }

    .tea_txt {
        text-align: center !important;
        padding: 10px 5px !important;
        margin-bottom: 10px !important;
        margin-right: 0px !important;
    }

    .tea_select {
        float: left;
        width: calc(100% - 40px)
    }

    .tea_submit {
        width: 35px;
    }

    .user_box {
        background-color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        padding: 10px;
    }

    .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);
    }

    .user_image {
        margin-right: 10px;
    }

    .user_image img {
        border: 1px solid rgb(10 82 128);
        border-radius: 6px;
        width:41px;
        height:41px;
    }

    .leave_count_box {
        margin-bottom: 20px;
    }

    .leave_cont .col-sm-2:last-child .leave_count_box {
        margin-bottom: 0px;
    }

    .leave_table {
        height: auto;
    }

    .mobile_hide {
        display: none !important;
    }
    .report_daily .col-sm-3 {
        margin-bottom: 15px;
        float: left;
        width: 100%;
    }
    .report_daily .col-sm-3:last-child {
        margin-bottom: 0px;
    }
    .report_timings {
        padding: 0px;
    }
    .project_filter_new {
        margin: 15px 0px;
    }
}


@media (min-width: 640px) and (max-width: 767px) {
    .leave_cont .col-sm-2 {
        width: 50%;
        float: left;
    }
}

@media (min-width: 768px) {
    .desktop_hide {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .login_left {
        width: calc(60% - 25px);
    }

    .login_right {
        width: 40%;
    }

    .login_notif .login_feature {
        width: 100px;
    }

    .login_notif {
        transform: translate(-180px, -114px);
    }

    .login_update {
        transform: translate(180px, -50%);
    }

    .login_notif_txt {
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 10px;
    }

    .login_update .login_feature {
        width: 115px;
    }

    .leave_cont .col-sm-2 {
        width: 33.33%;
        margin-bottom: 25px;
    }
    .menu_container {
        padding: 10px 15px;
    }
    .menuH {
        width: 75%;
    }
    .menuH li {
        padding: 0px 10px;
    }
    .menuH li a {
        font-size: 10px;
    }

    .menuH li a img {
        margin-right: 5px;
        width: 13px;
    }

    .tea {
        width: 25%;
        display: block;
        padding-right: 0px;
    }

    .tea_txt {
        font-size: 10px;
        text-align: center;
        margin-bottom: 5px;
    }

    .tea_select {
        width: 78%;
        display: inline-flex;
    }

    .tea_select select {
        font-size: 11px;
    }

    .tea_submit {
        width: calc(19% - 5px);
        display: inline-block;
        padding: 7px;
    }
    .star_box {
        align-items: flex-start;
    }
    .star_image img {
        width: 60px;
        height: 60px;
    }
    .notification_image img {
        width: 34px;
        height: 34px;
    }
    .birthday_image img {
        width: 34px;
        height: 34px;
    }
    .birthday_name {
        font-size: 11px;
        margin: 0px 5px;
    }
    .birthday_date {
        font-size: 10px;
        width: 25%;
    }
    .report_left_cont li:nth-child(odd) {
        text-align: left;
        width: 100%;
        padding-bottom: 5px;
    }
    .report_left_cont li span {
        float: none;
        padding: 0px 10px;
    }
    .report_left_cont li:nth-child(even) {
        width: 100%;
        border-top: none;
        padding-top: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .leave_cont .col-sm-2 {
        width: 33.33%;
        margin-bottom: 25px;
    }
    .menuH {
        width: 70%;
    }
    .tea {
        width: 30%;
    }
    .menuH li {
        padding: 0px 10px;
    }
    .tea_txt {
        font-size: 10px;
    }
    .report_left_cont li:nth-child(odd) {
        text-align: left;
        width: 100%;
        padding-bottom: 5px;
    }
    .report_left_cont li span {
        float: none;
        padding: 0px 10px;
    }
    .report_left_cont li:nth-child(even) {
        width: 100%;
        border-top: none;
        padding-top: 0px;
    }
}

@media (min-width: 1200px) and (max-width: 1365px) {
    .tea_txt {
        font-size: 10px;
        text-align: center;
        padding: 5px;
    }
    .menuH li {
        padding: 0px 14px !important;
    }
}