@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    outline: none !important;
    font-family: 'Poppins', sans-serif;
}

.PageWallpaper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(80%) grayscale(1);
    opacity: 0.1;
}


img, button {
    user-select: none;
    user-focus: none;
    -webkit-user-drag: none;
}

.Header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #2a2a2a;
    position: relative;
    z-index: 22;
}

.HeaderInner {
    display: flex;
    justify-content: start;
    width: 89%;
}

.HeaderLogo {
    cursor: pointer;
    transition: 300ms;
}

.HeaderLogo img {
    display: block;
    margin: 0 0;
    width: auto;
    height: 60px;
    padding: 13px;
}

.HeaderButtons {
    display: flex;
    justify-content: end;
    width: -webkit-fill-available;
    position: relative;
    padding-right: 90px;
}

.HeaderButtonsIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2%;
    position: relative;
}

.HeaderButtonsIcons u {
    display: inline-block;
    vertical-align: top;
    width: 26px;
    aspect-ratio: 1/1;
    /* overflow: hidden; */
    margin: 0px 14px;
    cursor: pointer;
    transition: 300ms;
    padding: 4px;
    position: relative;
}

.HeaderButtonsIcons u img {
    display: block;
    margin: 0 auto;
    width: 100%;
    filter: invert(1);
}

.HeaderButtonsFull {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 0;
}

.HeaderButtonsFull button {
    display: inline-block;
    vertical-align: top;
    width: fit-content;
    padding: 8px 12px;
    margin: 0px 6px;
    border: none;
    background-color: var(--theme);
    color: aliceblue;
    font-size: 11px;
    border-radius: 5px;
    transition: 300ms;
    background-image: url(
    ../IMG/BtnBg.png);
    background-size: 100% 100%;
}

.HeaderButtonsFull button i {
    margin: 0px;
    margin-right: 3px;
}

.HeaderButtonsFull button:last-child {
    background-color: #ad2d2d;
}

.HeaderButtonsIcons u:hover {
    transform: scale(1.35);
}

.HeaderButtonsFull button:hover {
    transform: scale(1.1);
}

.PageContent {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    background: #c9c9c9;
    mix-blend-mode: multiply;
}

.PageContentInner {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: 90%;
    background: white;
    border-radius: 10px;
    overflow-y: auto;
    position: relative;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.PageContentInner::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.PageContentInner {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    background: none;
}

.PageContentInnerShown {
    background: white;
    overflow: hidden;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.EmployeesGH {
    /* display: none; */
    justify-content: start;
    align-items: start;
    padding: 15px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.EmployeesItem {
    display: inline-block;
    vertical-align: top;
    width: 21%;
    background: whitesmoke;
    margin: 15px 2%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-width: 273px;
    transition: 500ms;
    border: solid 1px #dadada;
}

.EmployeesImgHolder {
    display: block;
    margin: 14px auto 12px;
    width: 75px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 1000px;
    position: relative;
    /* border: solid 3px #d77c0b; */
}

.EmployeesImgHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #adadad;
}

.EmployeesItem h3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.EmployeesItem span {
    display: block;
    margin: 3px auto;
    width: 100%;
    text-align: center;
    font-size: 11px;
}

.EmployeeButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 93%;
    padding: 6px 0px;
    margin: 3px auto;
}

.EmployeeButton button {
    display: inline-block;
    vertical-align: top;
    width: 33%;
    padding: 8px 0px;
    margin: 4px 1%;
    border: none;
    background-color: #0b89d7;
    color: aliceblue;
    font-size: 12px;
    border-radius: 5px;
    transition: 400ms;
    position: relative;
    padding-left: 21px;
    font-weight: bold;
    background-image: url("../IMG/BtnBg.png");
    background-size: 100% 100%;
    overflow: hidden;
}

.EmployeeButton button i {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #2c2c2c1f; */
}

.EmployeeButton button:first-child {
    background-color: var(--theme);
}

.EmployeeButton button:last-child {
    background-color: #bf3e3e;
}


.EmployeeButton button:hover {
    transform: scale(1.1);
}

.EmployeesPageHeader {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: fit-content;
    background: #2a2a2a;
    z-index: 2222;
    display: flex;
    justify-content: space-between;
}

.EmployeesPageBody {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-top: 0;
    background: white;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.EmployeesPageBody::-webkit-scrollbar {
    display: none;
}

.EmployeesPageHeaderItem {
    display: flex;
    align-items: center;
    width: 33%;
    position: relative;
    padding: 20px;
    justify-content: end;
}

.EmployeesPageHeaderItem h1 {
    display: block;
    margin: 0 auto;
    width: 88%;
    font-size: 24px;
    color: aliceblue;
    font-weight: bold;
}

.EmloyeeHeaderSearchHolder {
    display: block;
    margin: 17px auto;
    width: 100%;
    height: 50px;
    background: white;
    overflow: hidden;
    position: relative;
    font-size: 12px;
    border-radius: 5px;
}

.EmloyeeHeaderSearchHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 1px 45px;
}

.EmloyeeHeaderSearchHolder i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a3a3a3;
}

.ViewCloser {
    width: 30px;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #ad2d2d;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    cursor: pointer;
    margin: 0 11px;
}

.ViewCloser img {
    display: block;
    margin: 0 auto;
    width: 60%;
    filter: invert(1);
}

.ViewCloser:hover {
    transform: scale(1.1);
}

.HRWelcoming {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    z-index: 0;
    padding: 50px;
    overflow-y: auto;
}

.HRWelcomingInner {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.HRWelcomingImgHolder {
    display: block;
    margin: 0 auto 25px;
    width: 95px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border-radius: 10000px;
    /* border: solid 2px #d77c0b; */
    background-color: #c5c5c5;
}

.HRWelcomingImgHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.HRWelcomingInner h3 {
    display: block;
    margin: 16px auto 50px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

.HRWelcomingInner h3 u {
    text-decoration: none;
    color: var(--theme);
    font-weight: bold;
    position: relative;
    padding-right: 32px;
    font-size: 16px;
}

.HeaderDropDown {
    position: absolute;
    left: -19px;
    top: 60px;
    width: 300px;
    height: fit-content;
    background: white;
    z-index: 99999;
    box-shadow: 0px 4px 10px -2px #3c3c3c4a;
    display: none;
}

.HeaderDropDownEdge {
    position: absolute;
    left: 86px;
    top: -5px;
    width: 30px;
    aspect-ratio: 1/1;
    background: white;
    transform: rotate(45deg) !important;
}

.HeaderDropDown ul {
    display: block;
    margin: 22px auto;
    width: 89%;
    padding: 0;
    position: relative;
    z-index: 2;
}

.HeaderDropDown ul li {
    display: block;
    margin: 20px auto;
    width: 100%;
    background: #f3f3f3;
    color: #626262;
    position: relative;
    padding: 8px 9px;
    padding-left: 40px;
    font-size: 14px;
    border-radius: 5px;
    transition: 300ms;
    cursor: pointer;
}

.HeaderDropDown ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 10px;
    opacity: 0.6;
}


.HeaderDropDown ul li:hover {
    transform: scale(1.05);
    background: #ededed;
}

.EmployeesFiltration {
    display: flex;
    justify-content: start;
    width: 95%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.EmployeesFiltration button {
    display: inline-block;
    vertical-align: top;
    width: fit-content;
    padding: 5px 12px;
    margin: 5px 6px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: whitesmoke;
    color: #838383;
    transition: 300ms;
    border: solid 1px #d9d9d9;
}

.EmployeesFiltration .ActiveEmpFiltration {
    background: var(--theme);
    color: aliceblue;
    border-color: var(--theme);
}

.EmployeesFiltration button:hover {
    transform: scale(1.1);
    background: #e9e9e9;
}

.EmployeesFiltration .ActiveEmpFiltration:hover {
    background: #232323;
    border-color: #232323;
}

.EmployeesOfTheMonthHeader {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: fit-content;
    background: #2a2a2a;
    z-index: 2222;
    display: flex;
    min-height: 83px;
    justify-content: space-between;
}

.EmployeesOfTheMonthHeader .ViewCloser {
    right: 1%;
}

.EmployeeOfTheMonthCalender {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: start;
    flex-wrap: wrap;
    /* padding-top: 100px; */
}

.EmployeeOfTheMonthCalenderMonth {
    display: inline-block;
    vertical-align: top;
    width: 21%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border: solid 1px #919191;
    margin: 2%;
    user-select: none;
}

.EmployeeOfTheMonthCalenderMonth h4 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    text-align: center;
}

.EmployeeOfTheMonthCalenderMonth .SelectedOTM {
    position: absolute;
    right: 0;
    bottom: 0;
    width: fit-content;
    background: #f1982b;
    overflow: hidden;
    color: aliceblue;
    padding: 7px 7px;
    padding-left: 22%;
    width: 100%;
    min-height: 65px;
}

.EmployeeOfTheMonthCalenderMonth .SelectedOTMImgHolder {
    position: absolute;
    left: 10px;
    top: 10%;
    width: auto;
    height: 80%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 1000px;
}

.EmployeeOfTheMonthCalenderMonth .SelectedOTMImgHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.EmployeeOfTheMonthCalenderMonth h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 15px;
    /* position: relative; */
    z-index: 2;
}

.EmployeeOfTheMonthCalenderMonth h5 u {
    display: block;
    margin: 5px 0;
    width: fit-content;
    text-decoration: none;
    font-size: 11px;
    background: #2a2a2a;
    padding: 4px 7px;
    border-radius: 4px;
}

.EmployeeOfTheMonthCalenderMonth h4 {
}

.EmployeeOfTheMonthCalenderMonth h4 u {
    text-decoration: none;
}

.EmployeeOfTheMonthCalenderMonth h4 u s {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
    font-weight: bold;
    font-size: 52px;
}

.EOTM {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    min-height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.RenoveEOTM {
    position: absolute;
    right: 10px;
    top: 20%;
    width: fit-content;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #ad2d2d;
    color: aliceblue;
    border-radius: 5px;
    font-size: 15px;
    transition: 300ms;
    padding: 1px 9px;
}

.AddEOTMBtn {
    position: absolute;
    right: 10px;
    top: 20%;
    width: fit-content;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #5ca753;
    color: aliceblue;
    border-radius: 5px;
    font-size: 15px;
    transition: 300ms;
    padding: 1px 9px;
}


.RenoveEOTM i {
    pointer-events: none;
}


.RenoveEOTM:hover {
    transform: scale(1.1);
    background: #c53333;
}

.AddEOTMBtn:hover {
    transform: scale(1.1);
    background: #6fb966;
}

.EOTMEditBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    padding: 5px 13px;
    margin: 9px;
    border-radius: 5px;
    border: none;
    background-color: #d77c0b;
    color: aliceblue;
    z-index: 22;
    transition: 300ms;
    padding-left: 29px;
    background-image: url(../IMG/BtnBg.png);
    background-size: 100% 100%;
    font-size: 14px;
}

.EOTMEditBtn i {
    position: absolute;
    left: 0;
    top: 0;
    width: fit-content;
    padding: 1px 9px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.EOTMEditBtn:hover {
    transform: scale(1.1);
    background-color: #2a2a2a;
}

.EmployeeOfTheMonthCalenderMonth .AddEOTMBtnFuture {
    background: #4e4e4e;
}

.EmployeeOfTheMonthCalenderMonth .AddEOTMBtnFuture .EOTM {
    filter: grayscale(1);
    opacity: 0.04;
}

.EmployeeOfTheMonthCalenderMonth .AddEOTMBtnFuture h5 {
    position: unset;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 6% 0px;
}

.AddFormView {
    background: white;
    padding: 10px;
    width: 700px;
    height: fit-content;
    max-height: 80%;
    max-width: 90%;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#AddFormPopUp {
    display: none;
}

.AddFormPopUpInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AddFormPopUpFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
    opacity: 0.7;
}

.AddFromHRRow {
    display: block;
    margin: 0 auto;
    width: 90%;
    position: relative;
    min-height: 51px;
    padding: 0px;
}

.AddFromHRRow .AddFromInputHolder {
    display: block;
    margin: 12px auto;
    width: 100%;
    background: #fdfdfd;
    height: 40px;
    position: relative;
    overflow: hidden;
    border: solid 1px #e3e3e3;
}


.AddFromHRRow label {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
}

.AddFromInputHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0px 11px;
    font-size: 13px;
    background: none;
    cursor: pointer;
}

.AddFromHR h4 {
    display: block;
    margin: 0 auto 32px;
    width: 92%;
    font-size: 20px;
    font-weight: bolder;
    color: var(--theme);
}

.AddFromHRRow .AddFromInputHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0px 11px;
    font-size: 13px;
    background: none;
}

.AddFromHRRow textarea {
    display: block;
    margin: 12px auto;
    width: 100%;
    background: #fdfdfd;
    height: auto;
    position: relative;
    overflow: hidden;
    border: solid 1px #e3e3e3;
    min-height: 120px;
    padding: 10px 14px;
    font-size: 13px;
}

.AddFromHRRow label u {
    text-decoration: none;
    color: #bb3b3b;
    font-size: 10px;
}

.AddFromHRRow .AddFromHRRowSubmit {
    display: block;
    margin: 22px auto;
    width: fit-content;
    padding: 9px 23px;
    color: aliceblue;
    background: #323232;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    right: 0;
    bottom: 0;
    transition: 300ms;
    padding-left: 44px;
    overflow: hidden;
    position: relative;
}


.AddFromHRRow .AddFromHRRowSubmit i {
    position: absolute;
    left: 0;
    top: 0;
    width: 33px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000000f;
}

.AddFromHRRow .AddFromHRRowSubmit:hover {
    transform: scale(1.07);
    background: var(--theme);
}

.AddFromHR {
    padding: 1px;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.AddFormView::-webkit-scrollbar {
    display: none;
}

.Preloader {
}

.PreloaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a5a5a5;
    z-index: 9999999999999;
}

.PreloaderBg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
    filter: grayscale(1);
}

.PreloaderDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.PreloaderDiv img {
    display: block;
    margin: 0 auto 29px;
    width: auto;
    height: 85px;
}

.PreloaderDiv h4 {
    display: block;
    margin: 0 auto;
    color: #444444;
    font-size: 14px;
}

.EmployeesItemDetails {
    display: none;
}

.EmployeesItemDetailsInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: whitesmoke;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    padding: 14px;
    z-index: 3;
}

.EmployeesItemDetailsInner::-webkit-scrollbar {
    display: none;
}

.EmployeesItemDetailsInner p {
    display: block;
    margin: 10px auto;
    width: 100%;
    text-align: left;
    font-size: 12px;
}

.EmployeesItemDetailsInner p u {
    text-decoration: none;
    float: right;
    color: black;
    font-weight: bold;
}

.CurrentMonth {
    background: #e3f3e1;
    color: #43683f;
}

.InterViewedEmployeesTrigger {
    display: inline-block;
    vertical-align: top;
    width: fit-content;
    padding: 5px 12px;
    margin: 1px 6px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: #ededed;
    color: #3e3e3e;
    transition: 300ms;
    cursor: pointer;
    line-height: normal;
}

.InterViewedEmployeesTrigger i {
    margin-right: 6px;
}


.InterViewedEmployeesTrigger:hover {
    background: #d77c0b;
    color: aliceblue;
}

.EmployeesItemDetailsInner c {
    cursor: pointer;
    transition: 300ms;
    color: #ad2d2d;
}

.EmployeesItemDetailsInner c i {
    pointer-events: none;
}

.EmployeesItemDetailsInner c:hover {
    transform: scale(1.2);
}

.ViewPlus {
    width: 30px;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #0b89d7;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    cursor: pointer;
}

.ViewPlus img {
    display: block;
    margin: 0 auto;
    width: 60%;
    filter: invert(1);
}


.ViewPlus:hover {
    transform: scale(1.05)
}

.HeaderButtonsIcons u s {
    display: none;
    position: absolute;
    right: 0;
    top: 29px;
    width: max-content;
    height: 100%;
    background: white;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    padding: 5px 12px;
    color: #2e2e2e;
    font-size: 10px;
}

.HeaderButtonsIcons u:hover s {
    display: flex;
}

#EmoOTMSelector {
    display: none;
}

.EmoOTMSelectorInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999;
}

.EmoOTMSelectorDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    background: white;
    min-width: 700px;
    max-height: 70%;
    max-width: 85%;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    padding: 10px;
    min-height: 300px;
    overflow-y: auto;
}

.EmoOTMSelectorFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
    opacity: 0.6;
    cursor: pointer;
}

.EmoOTMSelectorDiv h1 {
    display: block;
    margin: 11px auto;
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.EmoOTMSelectorDiv h1 u {
    text-decoration: NONE;
    color: #d77c0b;
}

.EmpOfTheMonthSelectionGH {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
}

.EmpOfTheMonthSelectionItem {
    display: inline-block;
    background: #efefef;
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: 300ms;
    padding: 0 4px 15px;
    border-radius: 10px;
    margin: 20px;
}

.EmpOfTheMonthSelectionImgHolder {
    display: block;
    margin: 13px auto 0;
    width: 60px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 1000px;
    position: relative;
}

.EmpOfTheMonthSelectionImgHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.EmpOfTheMonthSelectionItem h3 {
    display: block;
    margin: 11px auto 1px;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
}

.EmpOfTheMonthSelectionItem span {
    display: block;
    margin: 11px auto;
    width: fit-content;
    background: #5e5e5e;
    color: aliceblue;
    padding: 3px 7px;
    font-size: 11px;
    border-radius: 5px;
}


.EmpOfTheMonthSelectionItem:hover {
    transform: scale(1.06);
    background: #fafafa;
    box-shadow: -4px -2px 1px 1px #d8d8d8;
}

.NewEmployeeImageUploader {
}

.NewEmployeeImageUploaderDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    transition: 300ms;
}

.NewEmployeeImageUploaderDiv i {
    position: absolute;
    right: 0;
    top: 7px;
    width: 16px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: #3d9ad1;
    color: aliceblue;
    border-radius: 1000px;
    font-size: 10px;
    pointer-events: none;
}

.NewEmployeeImageUploaderImgHolder {
    display: block;
    margin: 0 auto 28px;
    width: 80px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: solid 2px #3d9ad1;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}

.NewEmployeeImageUploaderImgHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.NewEmployeeImageUploaderDiv:hover {
    transform: scale(1.05);
    filter: brightness(111%);
}

.LockScreen {
    position: fixed;
    left: 1%;
    bottom: 0;
    width: 80px;
    height: 84px;
    background: #383838;
    cursor: pointer;
    border-top-right-radius: 40px;
    border-top-left-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
}

.LockScreen img {
    display: block;
    margin: 0 auto;
    width: 40%;
    filter: invert(1) drop-shadow(-5px -4px 0px #00000021);
}

.LockScreen:hover {
    height: 100px;
    box-shadow: -5px -4px 1px 1px #00000045;
    background: var(--theme);
}

.LockScreenSlider {
}

.LockScreenSliderItem {
}

.LockScreenSliderItem img {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.LockScreenInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b3b3b3;
}

#LockScreen {
    display: none;
}

.LockScreenClock {
    position: fixed;
    left: 0;
    bottom: 0;
    width: fit-content;
    margin: 3%;
}

.LockScreenClock h1 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
    font-weight: bold;
    font-size: 119px;
}

.LockScreenClock h1 u {
    text-decoration: none;
    font-size: 50px;
}

.LockScreenClock span {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    font-size: 26px;
}

.LockScreenClock span i {
    margin-right: 8px;
}

.LockScreenInnerDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 2;
    text-align: center;
}

.LockScreenInnerDiv h3 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 24px;
    font-weight: bold;
    color: #212529;
}

.LockUserImageHolder {
    display: block;
    margin: 14px auto;
    width: 100px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border-radius: 1000px;
}

.LockUserImageHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.LockUserInputHolder {
    display: block;
    margin: 19px auto;
    width: 300px;
    background: white;
    height: 50px;
    overflow: hidden;
    border: solid 1px #414141;
    position: relative;
    border-radius: 5px;
}

.LockUserInputHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0px 17px;
    font-size: 14px;
}

.LockScreenInnerDiv button[type=submit] {
    display: block;
    margin: 39px auto;
    width: fit-content;
    padding: 10px 23px;
    color: aliceblue;
    position: relative;
    padding-left: 55px;
    background: var(--theme);
    border: none;
    border-radius: 5px;
    overflow: hidden;
    transition: 300ms;
}

.LockScreenInnerDiv button[type=submit]:hover {
    transform: scale(1.1);
    background: #0c0c0c;
}

.LockScreenInnerDiv button[type=submit] i {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000000f;
}

.MainStatisticsGH {
}

.MainStatisticsGH .card {
    margin: 36px 10px;
}

#CreateLeaveSuccess {
    display: none;
}

.CreateLeaveSuccessInner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999999;
}

.CreateLeaveSuccessFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
    opacity: 0.5;
}

.CreateLeaveSuccessDiv {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 90%;
    height: fit-content;
    background: white;
    padding: 30px;
    border: solid 2px #6e6e6e;
    border-radius: 10px;
    box-shadow: 0px 0px 25px -8px black;
}

.CreateLeaveSuccessDiv img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.CreateLeaveSuccessDiv h3 {
    display: block;
    margin: 26px auto 0;
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #43953a;
}

.SideMenuBtn {
    position: absolute;
    right: -1px;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
}

.SideMenuBtn img {
    display: block;
    margin: 0 auto;
    width: 100%;
    filter: invert(1);
    padding: 8px;
}


.SideMenuBtn:hover {
    transform: skew(21deg, 12deg);
    filter: drop-shadow(-11px 6px 1px black);
}

.SideMenu {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    background: white;
    height: 100%;
    padding: 30px;
    z-index: 9;
    padding-top: 81px;
    border-left: solid 2px #dbdbdb;
    box-shadow: -4px 0px 38px -12px #00000038;
    display: none;
    overflow-y: auto;
}

.SideMenu ul {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.SideMenu ul li {
    display: block;
    margin: 20px auto;
    width: 100%;
    background: whitesmoke;
    padding: 16px 1px;
    padding-left: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: 300ms;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.SideMenu ul li:hover {
    transform: scale(1.03);
    background: #ebebeb;
}

.SideMenu ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 12px;
    opacity: 0.7;
}


.SideMenu ul .ActiveSideMenuTab {
    background: #2a2a2a !important;
    color: aliceblue;
}

.SideMenu ul .ActiveSideMenuTab img {
    filter: invert(1);
    opacity: 1.0;
}

.EditUserInfo {
    display: none;
}

.EditUserInfoInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EditUserInfoFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
    opacity: 0.7;
}

.EditUserInfoDiv {
    background: white;
    padding: 10px;
    width: 700px;
    height: fit-content;
    max-height: 80%;
    max-width: 90%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.InterviewedItem {
    width: 21%;
    display: block;
    margin: 20px 2%;
    background: whitesmoke;
    border: solid 1px #bdbdbd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 660ms;
}

.InterviewedItem h3 {
    display: block;
    margin: 13px auto 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #383838;
}

.InterviewedItem h4 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 23px;
    z-index: 2;
    background: #0b6aa5;
    padding: 6px 16px;
}

.InterviewedItem h4 strong {
    font-size: 14px;
}

.InterviewedItem label {
    display: block;
    margin: 3px auto 8px;
    width: 100%;
    text-align: center;
    font-size: 13px;
}

.InterviewedItem span {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    /* background: #404040; */
    padding: 4px 0px;
    color: #40af3e;
    font-weight: bold;
    letter-spacing: 3px;
}

.InterviewedItem span i {
    margin: 0 4px;
}

.InterviewedItem img {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
    filter: brightness(90%);
}

.LeavesGH {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
}

.LeaveItem {
    display: block;
    margin: 1% 1%;
    background: #f3f3f3;
    position: relative;
    padding: 19px 83px;
    padding-left: 87px;
    width: 31%;
    border: solid 1px #d5d5d5;
    border-radius: 10px;
    position: relative;
    transition: 800ms;
}

.LeaveItem img {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 59px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    border: solid 2px #9d9d9d;
    object-fit: cover;
}

.LeaveItem h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    color: #4c4c4c;
    font-size: 17px;
}

.LeaveItem h3 {
    display: block;
    margin: 3px auto 0;
    width: 100%;
    font-size: 14px;
}

.LeaveItem h3 i {
    font-size: 12px;
    margin: 0 3px;
}

.LeaveItem h3 strong {
    color: #d31d1d;
}

.LeaveItem p {
    margin: 9px 0;
    width: 100%;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 55px;
    max-width: 100%;
}

.LeaveItem h3 strong:last-child {
    color: #469931;
}

.LeaveItem h3 strong:first-of-type {
    color: #296eb5;
}

.CustomizedListHeader {
    padding: 20px;
    display: flex;
    justify-content: start;
    width: 97%;
    margin: 0 auto;
}

.CustomizedListHeader h1 {
    display: block;
    margin: 0 0;
    width: fit-content;
    font-size: 41px;
    font-weight: bold;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-spacing: 8px;
}

.LeaveItemOptions {
    position: absolute;
    right: 0;
    top: 0;
    width: 55px;
    height: fit-content;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.LeaveItemOptions button {
    width: 62%;
    aspect-ratio: 1/1;
    margin: 5px auto;
    border-radius: 1000px;
    border: none;
    background: var(--theme);
    color: aliceblue;
    transition: 300ms;
}

.LeaveItemOptions button:last-of-type {
    background: #9d3030;
}

.LeaveItemOptions button i {
    pointer-events: none;
}


.LeaveItemOptions button:hover {
    transform: scale(1.1);
    filter: brightness(105%);
    box-shadow: -3px -1px 1px 1px #00000030;
}

.VacationsGH {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
}

.VacationItem {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    transition: 500ms;
}

.VacationItem {
    display: block;
    margin: 1% 1%;
    background: #f3f3f3;
    position: relative;
    padding: 19px 75px;
    padding-left: 87px;
    /* min-width: fit-content; */
    width: 31%;
    border: solid 1px #d5d5d5;
    border-radius: 10px;
    position: relative;
}

.VacationItem .VacEmployeeImage {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 59px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    border: solid 2px #d3d3d3;
    object-fit: cover;
}

.VacationItem .zzAnimated {
    position: absolute;
    left: 55px;
    top: -37px;
    mix-blend-mode: darken;
}

.VacationItem h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    color: #4c4c4c;
    font-size: 17px;
}

.VacationItem h3 {
    display: block;
    margin: 3px auto 0;
    width: 100%;
    font-size: 14px;
}

.VacationItem h3 i {
    font-size: 12px;
    margin: 0 3px;
}

.VacationItem strong {
    color: #d31d1d;
}

.VacationItem p {
    display: block;
    margin: 5px auto 0;
    width: 100%;
    font-size: 13px;
    margin: 9px 0;
    width: 300px;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 55px;
    max-width: 100%;
}

.VacationItem h3 strong:last-child {
    color: #469931;
}

.VacationItem h3 strong:first-of-type {
    color: #d31d1d;
}

.VacationsItemOptions {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
}

.VacationsItemOptions button {
    width: 100%;
    margin: 10px auto;
    border: none;
    background: #ffb42c;
    color: aliceblue;
    transition: 300ms;
    height: 50%;
    border-radius: 10px;
    font-size: 18px;
    text-shadow: 0px 0px 3px #00000054;
}

.VacationsItemOptions button:last-of-type {
    background: #9d3030;
}

.VacationsItemOptions button i {
    pointer-events: none;
}

.VacationsItemOptions button:hover {
    transform: scale(1.1);
    filter: brightness(105%);
    box-shadow: -3px -1px 1px 1px #00000030;
}

.WarningsGH {
}

.WarningsGH {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px;
}

.WarningItem {
    background: #ffecec;
    min-width: fit-content;
    padding: 26px 10px 13px;
    width: 29%;
    padding-left: 109px;
    position: relative;
    border: solid 2px #ffd4d4;
    border-radius: 10px;
    margin: 25px 2%;
    transition: 600ms;
}

.WarningItem .fa-exclamation-triangle {
    position: absolute;
    right: -17px;
    top: -15px;
    width: fit-content;
    font-size: 49px;
    color: #993636;
    transform: rotate(18deg);
    display: none;
}

.WarningItem .WarningUserImage {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 70px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1000px;
    /* border: solid 3px #c55c5c; */
    background: white;
    margin: 8px;
}

.WarningItem .SirenAnimated {
    position: absolute;
    right: 24px;
    top: -37px;
    width: auto;
    height: 69px;
    mix-blend-mode: darken;
    transition: 300ms;
}

.WarningItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #404040;
    font-size: 18px;
}

.WarningItem p {
    display: block;
    margin: 0px 0 10px;
    width: 300px;
    display: block;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 54px;
}

.WarningOptions {
    display: flex;
    margin: 0 auto;
    width: 100%;
}

.WarningOptions button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    border: none;
    margin: 0 13px;
    background: #d77c0b;
    color: aliceblue;
    transition: 300ms;
    margin-left: 0;
}

.WarningOptions button:last-of-type {
    background: #ad2d2d;
}

.WarningOptions button i {
}

.WarningOptions button:hover {
    transform: scale(1.1);
    box-shadow: -2px -3px 1px 1px #0000002e;
}

.PageContentInnerShownInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    overflow-y: auto;
}

.EditedSuccessfully {
    background: #c4d7bb !important;
    border-color: #9cb693 !important;
}

.EmployeesItem h14 {
    background: none;
    border: none;
    color: #244573;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
    font-size: 27px;
    padding: 12px;
    line-height: 15px;
    transition: 300ms;
}

.EmployeesItem .WhatsAppBtn {
    background: none;
    border: none;
    color: #3ca35b;
    font-size: 32px;
    position: absolute;
    left: 3px;
    top: 39px;
    cursor: pointer;
    z-index: 2;
    font-size: 30px;
    padding: 10px;
    line-height: 15px;
    transition: 300ms;
}

.EmployeesItem .WhatsAppBtn i {
    pointer-events: none;
}

.EmployeesItem .WhatsAppBtn:hover {
    transform: scale(1.1);
    filter: brightness(90%);
}

.EmployeesItem h14:hover {
    transform: scale(1.1);
    filter: brightness(90%);
}

.LeaveItem h13 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
}

.LeaveItem h13 strong {
    margin-left: 4px;
}

.BarCodeParent {
}

.BarCodeParentCenter {
}

.BarCodeItem {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.BarCodeItem h3 {
    display: block;
    margin: 20px auto 25px;
    width: 86%;
    font-weight: bold;
    color: aliceblue;
    text-align: center;
}

.BarCode {
    display: block;
    margin: 25px auto;
    width: 189px;
    aspect-ratio: 1/1;
    background: white;
    position: relative;
    border: solid 2px white;
}

.OfficeBG {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    object-fit: cover;
}

#box {
    left: 0;
    top: 0;
    /* transform: translate(-50%, -50%); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    background: #262626;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

#box #qrcode {
    width: 100%;
    height: 100%;
    min-width: unset;
    min-height: unset;
}

#box canvas {
    width: 100% !important;
    height: 100% !important;
}

#box #qrcode img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: unset;
    min-height: unset;
}

#Leavebox #Leaveqrcode img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: unset;
    min-height: unset;
}


#Leavebox {
    left: 0;
    top: 0;
    /* transform: translate(-50%, -50%); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    background: #262626;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

#Leavebox #Leaveqrcode {
    width: 100%;
    height: 100%;
    min-width: unset;
    min-height: unset;
}

#Leavebox canvas {
    width: 100% !important;
    height: 100% !important;
}

.WhiteAnimatedLogoGif {
    display: block;
    margin: 100px auto 0;
    width: auto;
    max-width: 60%;
    height: 96px;
}

.VacationItem h13 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 14px;
}

.VacationItem h13 strong {
    margin: 0 5px;
    color: #222222;
}

.VacationUnEditableLabel {
    display: block;
    margin: 15px auto 0;
    width: 100%;
    font-weight: bold;
    color: #bb3b3b;
}

.InterviewedlinkedinBtn {
    position: absolute;
    right: 0;
    top: 0;
    color: aliceblue;
    background: #496d93;
    z-index: 2;
    border: none;
    border-radius: 5px;
    margin: 10px;
    padding: 5px 8px;
    transition: 300ms;
}

.InterviewedlinkedinBtn i {
}

.InterviewedlinkedinBtn:hover {
    transform: scale(1.1);
    background: #444444;
}

.InterviewedItem iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    transition: 400ms;
    filter: grayscale(1) blur(1px);
    transform: scale(1.2);
}

.InterviewedResumeGH {
    display: block;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/0.7;
    background: #e1e1e1;
    position: relative;
    cursor: pointer;
}

.InterviewedResumeTrigger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.InterviewedResumeGH:hover iframe {
    transform: scale(1.3);
    filter: blur(1px);
}

.InterviewedResumeTrigger a {
    pointer-events: none;
    display: none;
    background: #2a2a2a;
    color: aliceblue;
    padding: 11px 11px;
    position: relative;
    border-radius: 10px;
    padding-left: 33px;
    font-size: 13px;
    font-weight: 700;
    /* box-shadow: 0px 0px 47px -9px white; */
    border: solid 1px white;
}

.InterviewedResumeGH:hover a {
    display: flex;
}


.InterviewedResumeTrigger a i {
    position: absolute;
    left: 0;
    top: 0;
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 7px;
}

#VacationSuccess {
    display: none;
}

.VacationSuccessInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999;
}

.VacationSuccessDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    background: white;
    padding: 26px;
    text-align: center;
    box-shadow: 0px 0px 20px -4px #242424;
}

.VacationSuccessFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: -1;
    opacity: 0.5;
}

.VacationSuccessDiv img {
    display: block;
    margin: 0 auto 31px;
    width: fit-content;
    text-align: center;
    font-weight: bold;
}

.VacationSuccessDiv h4 {
}

.WarningItem h5 {
    font-size: 13px;
    color: #cb4949;
    display: block;
    margin: 7px auto 9px;
    width: 100%;
}

#RemoveSuccess {
    display: none;
}

.RemoveSuccessInner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999;
}

.RemoveSuccessInner p {
    display: block;
    margin: 21px auto;
    width: fit-content;
    background: #ab4747;
    padding: 16px 22px;
    color: aliceblue;
    border-radius: 1000px;
    box-shadow: inset -169px 0px 172px -50px #bd3b3b;
    pointer-events: none;
}

#WarningAddedSuccess {
    display: none;
}

.WarningSuccessInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.WarningSuccessFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -2;
    background: black;
    opacity: 0.5;
}

.WarningSuccessDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 90%;
    background: white;
    padding: 19px 22px;
    border-radius: 10px;
    box-shadow: 0px 0px 50px -19px black;
}

.WarningSuccessDiv img {
    display: block;
    margin: 20px auto;
    width: auto;
    height: 225px;
}

.WarningSuccessDiv h4 {
    color: #c35252;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
}


#InterviewAddedSuccess {
    display: none;
}

.InterviewSuccessInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.InterviewSuccessFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -2;
    background: black;
    opacity: 0.5;
}

.InterviewSuccessDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 90%;
    background: white;
    padding: 19px 22px;
    border-radius: 10px;
    box-shadow: 0px 0px 50px -19px black;
}

.InterviewSuccessDiv img {
    display: block;
    margin: 20px auto;
    width: auto;
    height: 225px;
}

.InterviewSuccessDiv h4 {
    color: #c35252;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
}

.NewLeaveItem {
    background: #ffe5c4;
    border: none;
    transform: scale(1.05);
}


.LeavesListParent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.NewVacationItem {
    background: #ffe5c4;
    border: none;
    transform: scale(1.05);
}

.NewWarningItem {
    background: #ff4343;
    border: none;
    transform: scale(1.05);
}


.WarnedEmployeeName {
    display: block;
    margin: 15px auto 0;
    width: 100%;
    font-weight: bold;
    color: #bb3b3b;
}

.WarningItem h6 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #c31c1c;
}

.EditedSuccessfullyWarning {
    transform: scale(1.2) rotate(3deg);
    position: relative;
    z-index: 22222;
    background: #ffd2d2;
}


.EditedSuccessfullyWarning .SirenAnimated {
    transform: scale(2.2);
}

.Schedule {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ScheduleItem {
    margin: 26px 2%;
    background: #f1f1f1;
    width: 16%;
    /* min-width: 280px; */
    padding: 15px 2px;
    border-radius: 10px;
    position: relative;
}

.ScheduleItem img {
    display: block;
    margin: -30px auto 10px;
    width: 63px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    object-fit: cover;
    /* border: solid 2px #d77c0b; */
    background-color: #d9d9d9;
}

.ScheduleItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    color: var(--theme);
}

.ScheduleItem h5 {
    display: block;
    margin: 15px auto;
    width: 91%;
    font-size: 12px;
    text-align: left;
}

.ScheduleItem h5 u {
    text-decoration: none;
    float: right;
}

.EmployeesRF {
    display: none;
}

.EmployeesRFInner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.EmployeesRFDiv {
    display: block;
    margin: 81px auto 0;
    width: fit-content;
}

.EmployeesRFDiv img {
    display: block;
    margin: 0 auto 26px;
    width: auto;
    height: 233px;
}

.EmployeesRFDiv h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 57px;
    color: #ad2d2d;
}

.EmployeesRFDiv p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
}

.NewInterviewedItem {
    transform: scale(1.1) rotateY(-38deg);
    background: #dcffe0;
    border-color: #7fdf8a;
}

.HomeClock {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: aliceblue;
    margin: 27px auto 0;
    font-size: 71px;
}

.HomeClock u {
    text-decoration: none;
    margin: 0 15px;
    font-size: 38px;
}

#DepartmentList iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.SomethingIsWrong {
    display: none;
}

.SomethingIsWrongInner {
    display: block;
    margin: 0px auto 17px;
    width: 91%;
    background: #ffe4e4;
    overflow: hidden;
    position: relative;
    padding: 17px 24px;
    padding-right: 35%;
    border-radius: 10px;
}

.SomethingIsWrongArt {

}

.SomethingIsWrongArt img {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    object-fit: cover;
}

.SomethingIsWrongInner h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 27px;
    color: #b34b4b;
}

.SomethingIsWrongInner p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.SomethingIsWrongInner label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    position: relative;
    padding-left: 14px;
    color: #444242;
}

.SomethingIsWrongInner label i {
    position: absolute;
    left: 0;
    bottom: 5px;
    font-size: 8px;
}

.HomeLoginBtn {
    position: fixed;
    left: 0;
    top: 0;
    margin: 2%;
    padding: 6px 23px;
    border: solid 2px;
    color: aliceblue;
    background: none;
    border-radius: 1000px;
    transition: 300ms;
    font-weight: bold;
    z-index: 99999;
}


.HomeLoginBtn:hover {
    background: aliceblue;
    color: #ad8e19;
    border-color: aliceblue;
}

.LoginScreen {
}

.LoginScreenInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d9d9d9;
}

.LoginScreenDiv {
    display: block;
    margin: 0 auto;
    width: 600px;
    background: white;
    padding: 30px;
    max-width: 90%;
    position: relative;
    z-index: 22;
}

.LoginScreenDiv form {
}

.LoginLogo {
    display: block;
    margin: 13px auto 29px;
    width: auto;
    max-width: 90%;
    height: 75px;
}


@keyframes BannerBGAnimation {
    0% {
        top: -20%;
    }
    50% {
        top: 0%;
    }
    100% {
        top: -20%;
    }
}


.LoginBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
    transform: translatey(0px);
    -webkit-animation: BannerBGAnimation 10s ease-in-out infinite;
    animation: BannerBGAnimation 10s ease-in-out infinite;
}

.DepartmentsGH {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
    padding: 2%;
    flex-wrap: wrap;
}

.DepartmentItem {
    display: block;
    margin: 16px 2%;
    width: 21%;
    background: #f5f5f5;
    border: solid 1px #dbdbdb;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 0 3px 13px;
}

.DepartmentIcon {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 90%;
    height: 100px;
    padding: 10px;
}

.DepartmentItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 15px;
    color: var(--theme);
}

.DepartmentOptions {
    display: flex;
    margin: 0 auto;
    width: fit-content;
}

.DepartmentOptions button {
    display: flex;
    width: 40px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    margin: 0 8px;
    border: solid 2px #cdcdcd;
    color: #494949;
    background: white;
    transition: 300ms;
}

.DepartmentOptions button i {
    pointer-events: none
}

.DepartmentOptions button:hover {
    transform: scale(1.1);
    box-shadow: -6px -1px 1px 0px #d4d4d4;
    background: #494949;
    color: aliceblue;
    border-color: #494949;
}

.DepartmentItem span {
    display: block;
    margin: 7px auto;
    width: fit-content;
    font-size: 14px;
    color: #828282;
}

.InGHCreateBtn {
    position: absolute;
    right: 3%;
    top: 0;
    margin: 1%;
    padding: 13px 9px;
    padding-left: 40px;
    border: none;
    background: #59875c;
    color: aliceblue;
    border-radius: 5px;
    transition: 300ms;
    font-size: 14px;
    font-weight: 500;
    background-image: url(../IMG/BtnBg.png);
    background-size: 100% 100%;
    background-blend-mode: soft-light;
}

.InGHCreateBtn:hover {
    transform: scale(1.05);
    background: #424242;
}

.InGHCreateBtn i {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SlariesGH {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
    padding: 2%;
    flex-wrap: wrap;
}

.SalaryItem {
    display: block;
    margin: 35px 2%;
    width: 21%;
    background: #f5f5f5;
    border: solid 1px #dbdbdb;
    border-radius: 10px;
    /* overflow: hidden; */
    position: relative;
    text-align: center;
    padding: 0 3px 13px;
}

.SalaryEmpImg {
    display: block;
    margin: -29px auto 10px;
    border: solid 2px var(--theme);
    border-radius: 100000px;
    width: 76px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.SalaryItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 15px;
    color: #515151;
}

.SalaryItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #6aa56e;
}

.SalaryItem label g {
    font-size: 19px;
    margin: 0 3px;
}

.SalaryOptions {
    display: flex;
    justify-content: center;
    align-items: start;
    width: fit-content;
    margin: 9px auto;
}

.SalaryOptions button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    margin: 0 7px;
    border-radius: 1000px;
    border: solid 2px var(--theme);
    color: white;
    background: var(--theme);
    transition: 300ms;
}

.SalaryOptions button i {
    pointer-events: none;
}

.SalaryOptions button:hover {
    transform: scale(1.1);
    box-shadow: -5px -3px 0px 0px #c9c9c9;
    background: #484848;
    border-color: #484848;
}

.SlariesSlipsGH {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
    padding: 2%;
    flex-wrap: wrap;
}

.SalarySlipEmpImg {
    display: block;
    margin: -20px auto 10px;
    /* border: solid 2px #d77c0b; */
    border-radius: 100000px;
    width: 76px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.SalarySlipItem {
    display: block;
    margin: 35px 2%;
    width: 21%;
    background: #f5f5f5;
    border: solid 1px #dbdbdb;
    border-radius: 10px;
    /* overflow: hidden; */
    position: relative;
    text-align: center;
    padding: 0 3px 13px;
}

.SalarySlipItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 15px;
    color: #515151;
}

.SalarySlipItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #6aa56e;
}

.SalarySlipItem label g {
    font-size: 19px;
    margin: 0 3px;
}

.SalarySlipItem span {
    display: block;
    margin: 0 auto 9px;
    width: fit-content;
    font-size: 12px;
    color: #585858;
    font-weight: 600;
    letter-spacing: 2px;
}

.SalarySlipItem span i {
    margin-right: 5px;
}

.SalarySlipOptions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.SalarySlipOptions button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 5px;
    border-radius: 5px;
    border: solid 2px #585858;
    transition: 300ms;
    color: #585858;
    background: white;
    padding: 6px 14px;
    position: relative;
    padding-left: 35px;
    height: fit-content;
}

.SalarySlipOptions button:hover {
    transform: scale(1.1);
    background: #585858;
    color: aliceblue;
}

.SalarySlipOptions button i {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.SalarySlipMonthsParent {
    display: block;
    margin: 0 auto;
    width: 95%;
}

.SalarySlipMonthsParent h4 {
    display: block;
    margin: 5px auto;
    width: 99%;
    font-size: 15px;
}

.SalarySlipMonthsGH {
    display: flex;
    justify-content: start;
    width: 100%;
}

.SalarySlipMonthsGH button {
    display: block;
    margin: 6px 6px;
    width: fit-content;
    border: solid 1px #dddddd;
    background: #ebebeb;
    color: #323232;
    padding: 6px 9px;
    border-radius: 5px;
    transition: 300ms;
    font-size: 13px;
    font-weight: 600;
}

.SalarySlipMonthsGH button:hover {
    transform: scale(1.1);
    filter: brightness(94%);
}

.SalarySlipMonthsGH .ActiveMonth {
    background: var(--theme);
    border-color: var(--theme);
    color: aliceblue;
}

.WarningItem h5 i {
    margin-right: 6px;
}

#InterviewedList .InterViewEditedSuccessfully {
    background: #d3eeff;
    border-color: #94c2df;
}

#InterviewedList {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
}

#EmployeeList {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
}

.DepartmentPositionsAdd {
    display: block;
    margin: 12px auto;
    width: 100%;
    background: #fdfdfd;
    height: 40px;
    position: relative;
    overflow: hidden;
    border: solid 1px #e3e3e3;
}

.DepartmentPositionsAdd input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0px 11px;
    font-size: 13px;
    background: none;
}

.DepartmentPositionsAdd button {
    position: absolute;
    right: 12px;
    top: 15%;
    width: auto;
    height: 70%;
    aspect-ratio: 1/1;
    border: none;
    color: aliceblue;
    background: #65a667;
    border-radius: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    z-index: 3;
    transition: 300ms;
}

.DepartmentPositionsAdd button:hover {
    background: #4e874f;
}

.DepartmentPositionsAdd button i {
    pointer-events: none;
}

.AppendedPositionsGH {
    display: none;
    flex-wrap: wrap;
    background: #efefef;
    padding: 10px;
    margin: 13px auto;
    width: 97%;
    border: solid 1px #e3e3e3;
    max-height: 180px;
    align-items: start;
    justify-content: start;
    align-content: flex-start;
    overflow-y: auto;
    padding-top: 40px;
    position: relative;
}

.AppendedPositionsGH .AppendedPosItem {
    display: flex;
    background: white;
    margin: 10px;
    border: solid 1px #d2d2d2;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    padding: 7px 13px;
    align-items: center;
    padding-right: 100px;
    height: fit-content;
}

.AppendedPositionsGH .AppendedPosItem h6 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    color: #5a5a5a;
    cursor: context-menu;
}

.AppendedPositionsGH .AppendedPosItem .RemovePositionBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    background: #c25757;
    z-index: 2;
    font-size: 12px;
    aspect-ratio: 1/1;
    transition: 300ms;
    filter: brightness(100%);
}

.AppendedPositionsGH .AppendedPosItem button:hover {
    filter: brightness(90%);
}

.AppendedPositionsGH .AppendedPosItem button i {
    pointer-events: none;
}

.AppendedPositionsGH h3 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10px 22px;
    font-size: 13px;
}

.BeforeScaning {
    display: block;
    margin: 90px auto;
    width: 100%;
    background: white;
    padding: 38px 20px;
    border-radius: 10px;
}

.BeforeScaning h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #9f8b56;
}

.BeforeScaning p {
    display: block;
    margin: 12px auto;
    font-size: 14px;
}

.BeforeScaningParent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ConfirmPassword {
    display: none;
}

.ConfirmPasswordInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ConfirmPasswordFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: -1;
    cursor: pointer;
    opacity: 0.5;
}

.ConfirmPasswordDiv {
    display: block;
    margin: 0 auto;
    width: 400px;
    background: white;
    padding: 20px;
    position: relative;
    z-index: 99;
    border-radius: 10px;
    box-shadow: 0px 0px 21px -8px #00000099;
}

.ConfirmPasswordDiv h4 {
    display: block;
    margin: 0 auto 12px;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    color: var(--theme);
}

.ConfirmPasswordHolder {
    display: block;
    margin: 0 auto 13px;
    width: 100%;
    background: #f5f5f5;
    height: 45px;
    border: solid 1px #d0d0d0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.ConfirmPasswordHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 1px 14px;
    padding-right: 50px;
    font-size: 13px;
    padding-left: 40px;
}

.ConfirmPasswordDiv #ShowSecretContentBtn {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
    background: var(--theme);
    color: aliceblue;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 5px;
    transition: 300ms;
}

.ConfirmPasswordDiv #ShowSecretContentBtn:hover {
    background: #252525;
}

.ConfirmPasswordDiv #ShowSecretContentBtn i {
}

.ConfirmPasswordDiv button g {
    pointer-events: none;
}

.ConfirmPasswordHolder g {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    color: #8d8d8d;
    z-index: 22;
    font-size: 13px;
    pointer-events: none;
}

.ConfirmPasswordHolder button {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border: none;
    background: none;
    color: #dd5c5c;
    font-size: 19px;
    transition: 300ms;
}

.ConfirmPasswordHolder button:hover {
    transform: scale(1.05);
    filter: brightness(85%);
}

.ConfirmPasswordHolder button i {
    pointer-events: none;
}

.ConfirmPasswordHolder .PasswordIsVisible {
    color: #5d7a40;
}

.AuthWrongPassword {
    display: none;
}

.AuthWrongPassword h6 {
    display: block;
    margin: 0 auto 12px;
    width: 100%;
    background: #ffbfbf;
    color: #c46969;
    padding: 9px 6px;
    font-size: 11px;
    border: solid 1px #ffa8a8;
    border-radius: 5px;
}

.AuthWrongPassword h6 i {
    pointer-events: none;
    margin-right: 6px;
}

.SalaryItem span {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 11px;
    color: #6180b3;
    font-weight: 600;
}

.SalaryItem span i {
    pointer-events: none;
    margin-right: 5px;
}

.FormPercentage {
    display: block;
    margin: 12px auto;
    width: 100%;
    background: #fdfdfd;
    height: 40px;
    position: relative;
    overflow: hidden;
    border: solid 1px #e3e3e3;
}

.FormPercentage input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0px 11px;
    font-size: 13px;
    background: none;
}

.FormPercentage y {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    color: #6e6e6e;
    pointer-events: none;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.Slips {
    display: none;
}

.UpdateAuth {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    background: var(--theme);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    transition: 300ms;
}

.UpdateAuth:hover {
    transform: scale(1.1);
    background: #4d4d4d;
}

.SharedSearchBar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: 3%;
}

.SharedSearchBarHolder {
    display: block;
    margin: 0 auto;
    width: 300px;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
    height: 45px;
    border: solid 1px #d4d4d4;
    border-radius: 5px;
}

.SharedSearchBarHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    font-size: 13px;
    padding: 0px 15px;
}

#ConsolePredictorRF {
}

.ConsolePredictorRFInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ConsolePredictorRFDiv {
    display: block;
    margin: 0 auto;
    width: 340px;
    max-width: 90%;
    text-align: center;
}

.ConsolePredictorRFDiv img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 196px;
    max-width: 100%;
    filter: hue-rotate(19deg) grayscale(63%);
}

.ConsolePredictorRFDiv h3 {
    display: block;
    margin: -22px auto 14px;
    width: fit-content;
    font-weight: bold;
    font-size: 47px;
    position: relative;
    z-index: 2;
    color: #bca054;
}

.ConsolePredictorRFDiv p {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 13px;
}

.AdvancePaymentsGH {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    flex-wrap: wrap;
}

.AdvancePaymentItem {
    margin: 32px 2%;
    width: 21%;
    background: #ededed;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.AdvancePaymentItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
}

.AdvancePaymentItem h2 {
    display: block;
    margin: 5px auto;
    width: fit-content;
    font-weight: bold;
    font-size: 21px;
    color: #c06565;
}

.AdvancePaymentUserImage {
    display: block;
    margin: -40px auto 11px;
    width: 85px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: solid 2px #9f9f9f;
    border-radius: 1000px;
}

.DeleteAdvancedPayment {
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px;
    width: 35px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #c06565;
    color: aliceblue;
    border-radius: 5px;
    transition: 300ms;
    z-index: 22;
}

.DeleteAdvancedPayment:hover {
    transform: scale(1.1);
    background: #a85858;
}

.AdvancePaymentItem p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 11px;
}

.LatestReportsGH {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.LatestReportItem {
    background: #f8f8f8;
    width: 23%;
    margin: 0 1% 49px;
    border: solid 1px #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0px 0px 20px -8px #a8a8a8; */
    position: relative;
}

.LatestReportItem img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 144px;
    max-width: 90%;
    mix-blend-mode: darken;
}

.LatestReportItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 20px;
}

.LatestReportItem h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 42px;
    font-weight: bold;
}

.DeductionsGH {
    display: flex;
    justify-content: start;
    width: 94%;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}

.DeductionItem {
    background: #ffb5b5;
    padding: 20px;
    width: 23%;
    margin: 1%;
    position: relative;
    padding-left: 67px;
    border: solid 2px #ff9191;
    border-radius: 10px;
}

.DeductionUserImage {
    position: absolute;
    left: -12px;
    top: -16px;
    width: 69px;
    aspect-ratio: 1/1;
    border: solid 4px #e86e6e;
    border-radius: 1000px;
    overflow: hidden;
    object-fit: cover;
    background: #ffe6e6;
}

.DeductionItem h3 {
}

.DeductionItem h1 {
    display: flex;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #963a3a;
    align-items: center;
}

.DeductionItem h1 label {
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    margin: 0;
    padding: 4px 0px;
    border-left: solid 1px #c13535;
    padding-left: 8px;
    margin-left: 2px;
    color: #525252;
}

.DeductionItem h1 label i {
    margin-right: 6px;
}

.DeductionItem p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 11px;
    min-height: 59px;
}

.DeductionItem p strong {
}

.DeductionItemOptions {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
}

.DeductionItemOptions button {
    margin: 10px 0;
    width: 30px;
    aspect-ratio: 1/1;
    background: #9b3b3b;
    color: aliceblue;
    border: none;
    border-radius: 1000px;
    margin-right: 11px;
    transition: 300ms;
    font-size: 13px;
}

.DeductionItemOptions button i {
    pointer-events: none;
}


.DeductionItem h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    color: #be5454;
}


.DeductionItemOptions button:last-child {
    background: #d77c0b;
}


.DeductionItemOptions button:hover {
    transform: scale(1.2);
}

.DeductionChangeHolder {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 222;
    border: solid 1px #e86e6e;
    border-radius: 4px;
}

.DeductionChangeHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    z-index: 1;
    font-size: 11px;
    text-align: center;
    padding: 0px 8px;
    padding-right: 33px;
}

.DeductionChangeHolder button {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    z-index: 22;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #489840;
    color: aliceblue;
    transition: 300ms;
    font-size: 13px;
}

.DeductionChangeHolder button:hover {
    background: #383838;
}

.DeductionChangeHolder button i {
    pointer-events: none;
}

.DeductionItem h1 g {
    position: relative;
    overflow: hidden;
    display: flex;
    margin-right: 3px;
    min-width: 35%;
    text-align: center;
    justify-content: center;
    padding: 5px 0px;
}

.SharedSearchBarHolder button {
    position: absolute;
    right: 11px;
    top: 13%;
    width: auto;
    height: 74%;
    display: flex;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    background: var(--theme);
    border-radius: 1000px;
    border: none;
    font-size: 12px;
    transition: 300ms;
    z-index: 33;
}

.SharedSearchBarHolder button i {
    pointer-events: none;
}

.SharedSearchBarHolder button:hover {
    transform: scale(1.1);
    font-size: 16px;
    background: #535353;
}

.ContentLoader {
    display: none;
}

.ContentLoaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999999;
    background: #ffffffd9;
}

.ContentLoaderDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
}

.ContentLoaderDiv img {
    display: block;
    margin: 16px auto;
    width: auto;
    height: 60px;
}

.ContentLoaderDiv p {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
}

.ScheduleItem h6 {
    display: block;
    margin: 0 auto;
    width: 92%;
    font-size: 12px;
    background: #dfdfdf;
    padding: 6px 7px;
    border-radius: 5px;
}

.ScheduleItem h6 strong {
    float: right;
    font-weight: bold;
    color: #dc3545;
}

.ScheduleItem h6 strong u {
    text-decoration: none;
    font-size: 10px;
}

.DaysLeftForSalaries {
    position: absolute;
    left: 0;
    top: 20px;
    width: fit-content;
    padding: 4px 3px;
    padding-left: 47px;
    font-size: 21px;
    margin: 0 4%;
}

.DaysLeftForSalaries .DaysLeftForSalariesIcon {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 7px;
}

.DaysLeftForSalaries strong {
}

.DaysLeftForSalaries g {
    font-size: 14px;
}

.DaysLeftForSalaries button {
    width: fit-content;
    padding: 8px 9px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    padding-left: 32px;
    font-size: 13px;
    font-weight: 600;
    background: none;
    border: solid 2px #8d8d8d;
    border-radius: 5px;
    margin-left: 10px;
    transition: 300ms;
}

.DaysLeftForSalaries button img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 7px;
    filter: invert(0);
    transition: 300ms;
}

.DaysLeftForSalaries button:hover {
    background: #4c4c4c;
    border-color: #4c4c4c;
    color: aliceblue;
    transform: scale(1.05);
}

.DaysLeftForSalaries button:hover img {
    filter: invert(1);
}

.DucductionsThisMonthReport {
    position: absolute;
    right: 0;
    top: 20px;
    width: fit-content;
    padding: 4px 3px;
    padding-left: 47px;
    font-size: 21px;
    margin: 0 4%;
    color: #dc3545;
}

.DucductionsThisMonthReport .DucductionsThisMonthReportIcon {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 7px;
}

.DucductionsThisMonthReport strong {
}

.DucductionsThisMonthReport g {
    font-size: 14px;
}

.DucductionsThisMonthReport button {
    width: fit-content;
    padding: 8px 9px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    padding-left: 32px;
    font-size: 13px;
    font-weight: 600;
    background: none;
    border: solid 2px #dc3545;
    border-radius: 5px;
    margin-left: 10px;
    transition: 300ms;
    color: #dc3545;
}

.DucductionsThisMonthReport button img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 7px;
    filter: invert(0);
    transition: 300ms;
}

.DucductionsThisMonthReport button:hover {
    background: #dc3545;
    color: aliceblue;
    transform: scale(1.05);
}

.DucductionsThisMonthReport button:hover img {
    filter: grayscale(1) brightness(5.5);
}


.RefreshEmpReportBtn {
    display: inline-block;
    vertical-align: middle;
    width: fit-content;
    padding: 7px 11px;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    border: solid 2px #494949;
    border-radius: 5px;
    padding-left: 29px;
    background: none;
    transition: 300ms;
}

.RefreshEmpReportBtn img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 8px;
    transition: 400ms;
}


.RefreshEmpReportBtn:hover {
    background: #d77c0b;
    color: aliceblue;
    border-color: #d77c0b;
}

.RefreshEmpReportBtn:hover img {
    transform: rotate(130deg);
    filter: invert(1);
}


/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    cursor: pointer;
    transition: 300ms;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1000px;
    overflow: hidden;
    cursor: pointer;
    transition: 300ms;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.NotArrivedEmployeesBtn {
    position: absolute;
    left: 14px;
    top: -11px;
    width: fit-content;
    padding: 7px 8px;
    font-size: 11px;
    border: none;
    background: #c76c6c;
    color: aliceblue;
    border-radius: 5px;
    z-index: 22;
    transition: 300ms;
}

.NotArrivedEmployeesBtn i {
    margin-right: 4px;
}

.NotArrivedEmployeesBtn:hover {
    transform: scale(1.1);
    background: #b35d5d;
}

.NotArrivedEmployees {
    display: none;
}

.NotArrivedEmployeesInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}

.NotArrivedEmployeesFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: -1;
    opacity: 0.5;
    cursor: pointer;
}

.NotArrivedEmployeesDiv {
    display: block;
    margin: 0 auto;
    width: 500px;
    height: 500px;
    max-height: 70%;
    background: white;
    padding: 20px;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 10px;
}

.NotArrivedEmployeesDiv h3 {
    display: block;
    margin: 0 auto 20px;
    width: 98%;
    font-size: 20px;
    font-weight: bold;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-spacing: 8px;
}

.NotArrivedYetItem {
    display: block;
    margin: 17px auto;
    width: 100%;
    background: #f1f1f1;
    padding: 20px;
    position: relative;
    padding-left: 68px;
    border-radius: 10px;
}

.NotArrivedYetItem img {
    position: absolute;
    left: 13px;
    top: 15%;
    width: auto;
    height: 70%;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    border: solid 2px #d77c0b;
    object-fit: cover;
}

.NotArrivedYetItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
}

.LeaveItemOptions .LeaveAttachementBtn {
    background: #3b779b;
}

.VacationsItemOptions .VacationAttachmentBtn {
    background: #3b779b;
}

.SystemSettingsForm {
}

.SystemSettingsFormRow {
    display: block;
    margin: 0 auto;
    width: 95%;
    padding: 10px;
}

.SystemSettingsFormRow label {
    display: block;
    margin: 0 auto 11px;
    width: 99%;
    font-size: 14px;
    font-weight: 700;
    color: #4a4a4a;
}

.SystemSettingsFormHolder {
    display: block;
    margin: 7px auto;
    width: 100%;
    height: 45px;
    background: #f8f8f8;
    border: solid 1px #dddddd;
    border-radius: 5px;
    position: relative;
}

.SystemSettingsFormHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0px 10px;
    font-size: 14px;
}

.SystemSettingsFormHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0px 10px;
    font-size: 13px;
    cursor: pointer;
}

.WorkDAyItem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77%;
    aspect-ratio: 1/1;
    background: #ffdbdb;
    cursor: pointer;
    margin: 0 auto;
    flex-direction: column;
    border: solid 1px #ffc4c4;
    border-radius: 5px;
    transition: 300ms;
    user-select: none;
}

.WorkDAyItem h13 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.WorkDAyItem input {
}

.WorkDAyItem:hover {
    transform: scale(1.1);
    filter: brightness(95%);
}

.ThisDayInOn {
    background: #e5ffe5;
    border-color: #afe1af;
}

.FormSettingsSubHeader {
    display: block;
    margin: 21px auto;
    width: 97%;
    font-size: 27px;
    font-weight: bold;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 6px;
}


.HeaderLogo:hover {
    transform: scale(1.1);
}

.HeaderButtonsIcons u label {
    position: absolute;
    right: -4px;
    top: -2px;
    width: fit-content;
    background: #548957;
    color: aliceblue;
    padding: 0px 4px;
    z-index: 22;
    border-radius: 1000px;
    font-size: 11px;
}

.RequestsHistoryNewFiltration {
    display: inline-block;
    height: fit-content;
    vertical-align: text-top;
    position: relative;
    bottom: 4px;
}

.RequestsHistoryNewFiltration button {
    display: inline-block;
    width: fit-content;
    padding: 7px 11px;
    font-size: 14px;
    border: solid 2px;
    border-radius: 5px;
    font-weight: 500;
    transition: 300ms;
}

.RequestsHistoryNewFiltration button i {
}


.RequestsHistoryNewFiltration button:hover {
    transform: scale(1.1);
}

.RequestsHistoryNewFiltration .ActiveRequestsHistoryNewFiltrationBtn {
    background: var(--theme);
    border-color: var(--theme);
    color: aliceblue;
    transform: scale(1.0) !important;
}

.NewRequestItem {
    display: inline-block;
    vertical-align: top;
    width: 23%;
    background: whitesmoke;
    margin: 1%;
    padding: 12px 10px;
    border: solid 1px #d4d4d4;
    padding-left: 71px;
    position: relative;
    border-radius: 10px;
    padding-bottom: 49px;
}

.NewRequestItemUserImage {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10000px;
    border: solid 1px #d77c0b;
    margin: 10px;
}

.NewRequestItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    color: #d77c0b;
}

.NewRequestItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 11px;
}

.NewRequestItem label strong {
}

.NewRequestItem label strong g {
    margin-left: 3px;
}

.RequestFEGH {
    display: none;
    flex-wrap: wrap;
    padding: 30px;
}

.NewRequestItem h12 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 11px;
}

.NewRequestItem h12 strong {
    font-weight: unset;
}

.NewRequestItem h12 strong g {
    font-weight: bold;
}

.NewRequestItem p {
    display: block;
    margin: 11px auto;
    width: 100%;
    font-size: 11px;
}

.RequestsAction {
    position: absolute;
    right: 0;
    bottom: 0;
    width: fit-content;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.RequestsAction button {
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    border: none;
    background: #45af76;
    color: aliceblue;
    transition: 300ms;
    margin: 0 4px;
}

.RequestsAction button i {
    pointer-events: none;
}

.RequestsAction button:hover {
    transform: scale(1.1);
    box-shadow: -6px -2px 1px 1px #00000014;
}

.RequestsAction button:first-child {
    background: #ad2d2d;
}

.RequestAttachmentBtn {
    background: #3b779b;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 10px;
    border-radius: 1000px;
    width: 34px;
    aspect-ratio: 1/1;
    padding: 0;
    display: flex;

    justify-content: center;
    align-items: center;
    color: aliceblue;
    border: none;
    transition: 300ms;
}

.RequestAttachmentBtn:hover {
    transform: scale(1.1);
    background: #295773;
}

.NewRequestItem h13 {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
    font-size: 13px;
}

.NewRequestItem h13 strong {
}

.NewRequestItem .IfVacation h13 {
    color: #b86dc2;
}

.NewRequestItem .IfLeave h13 {
    color: #6d78c2;
}

.NewRequestItem .IfAdvancedPayment h13 {
    color: #35a358;
}

.NewRequestItem h14 {
    font-size: 14px;
    display: block;
    margin: 5px auto;
    width: 100%;
}

.NewRequestItem h14 strong {
    background: #5da473;
    color: aliceblue;
    padding: 1px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 5px;
}

.NewRequestItem h14 i {
    color: #5da473;
    margin-right: 3px;
}


.NewRequestItem .RequestStatus {
    position: absolute;
    right: 0;
    bottom: 0;
    width: fit-content;
    margin: 10px;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 9px;
    border: solid 1px;
    border-radius: 5px;
}

.NewRequestItem .RequestStatus i {
    margin-right: 5px;
}


.NewRequestItem .Accepted {
    color: #45af76;
    border-color: #7bd7a5;
    background: #ccffe4;
}

.NewRequestItem .Refused {
    color: #ad2d2d;
    background: #ffcfcf;
    border-color: #ffacac;
}

#AddedEditedSuccess {
    display: none;
}

.AddedEditedSuccessInner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999;
}

.AddedEditedSuccessInner p {
    display: block;
    margin: 21px auto;
    width: fit-content;
    background: #59875c;
    padding: 16px 22px;
    color: aliceblue;
    border-radius: 1000px;
    box-shadow: inset -169px 0px 172px -50px #4d7951;
    pointer-events: none;
}

.NewRequestItem label strong g i {
    margin-right: 4px;
}

.NewRequestAdded {
    position: fixed;
    left: 30px;
    top: 73px;
    width: 467px;
    background: white;
    z-index: 9999999999999999999;
    margin: 25px;
    box-shadow: 0px 0px 115px -21px black;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    padding-left: 105px;
    min-height: 115px;
    cursor: pointer;
    transition: 300ms;
}

.NewRequestAdded img {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    margin: 10px;
}

.NewRequestAdded h3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    color: #d77c0b;
}

.NewRequestAdded p {
    display: block;
    margin: 8px auto;
    width: 100%;
    font-size: 14px;
}


.NewRequestAdded:hover {
    transform: scale(1.1);
}

.NewRequestNotificationsGH {
    display: none;
}

.PositionEditorGH {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
}

.PositionEditorGH input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0px 10px;
    font-size: 12px;
    border: none;
    background: none;
    z-index: 0;
}

.PositionEditorGH h12 {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    background: #59875c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: aliceblue;
    z-index: 2;
    cursor: pointer;
    transition: 300ms;
}

.AppendedPositionsGH .AppendedPosItem .ShowPositionEditor {
    position: absolute;
    right: 28px;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    border: none;
    background: #eb9120;
    color: aliceblue;
    transition: 300ms;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.PositionEditorGH h12:hover {
    background: #56a35b;
}


.EmployeeSideMenuTrigger {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    color: #626262;
    transition: 300ms;
}

.EmployeeSideMenuTrigger i {
    pointer-events: none;
}

.EmployeeSideMenuTrigger:hover {
    color: #2a2a2a;
    transform: scale(1.2);
}

.EmployeeSideMenu {
    position: absolute;
    right: 0;
    top: 0;
    width: 273px;
    background: white;
    z-index: 9999;
    height: 100%;
    overflow-y: auto;
    /* border-left: solid 1px #838383; */
    box-shadow: -19px 0px 62px 13px #0000003d;
    display: none;
    max-width: 90%;
}

.EmployeeSideMenuInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
    overflow: hidden;
}

.EmployeeSideMenuInner ul {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.EmployeeSideMenuInner ul li {
    display: block;
    margin: 0px auto;
    width: 100%;
    padding: 7px 9px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    border-bottom: solid 1px #ebebeb;
    transition: 300ms;
}

.EmployeeSideMenuInner ul li i {
    width: 28px;
    text-align: center;
    display: inline-block;
}


.EmployeeSideMenuInner ul li:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

.EmployeeSideMenuInner ul li .fa-coins {
    color: #998f1a;
}

.EmployeeSideMenuInner ul li .fa-envelope {
    color: #5b93c3;
}

.EmployeeSideMenuInner ul li .fa-whatsapp {
    font-size: 16px;
    color: #45a34b;
}

.EmployeeSideMenuInner::-webkit-scrollbar {
    display: none;
}

.EmployeeSideMenu::-webkit-scrollbar {
    display: none;
}

.ThisEmployeeAllowences {
    display: none;
}

.ThisEmployeeAllowencesInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: whitesmoke;
    z-index: 99999999;
    padding: 10px;
    overflow-x: hidden !important;
    overflow-y: auto;
    padding-top: 50px;
}

.EmployeeAllowenceItem {
    display: block;
    margin: 12px auto;
    width: 100%;
    position: relative;
    background: white;
    border: solid 1px #e3e3e3;
    border-radius: 10px;
    padding: 11px 15px;
    padding-right: 78px;
}

.EmployeeAllowenceItem h12 {
    display: block;
    margin: 0 auto;
    width: 100%;
    /* font-weight: 600; */
    font-size: 14px;
}

.EmployeeAllowenceItem h12 strong {
    color: #3d893b;
    user-select: none;
    margin-left: 4px;
}

.EmployeeAllowenceItemOptions {
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 5px auto 0;
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
}

.EmployeeAllowenceItemOptions h8 {
    width: 28px;
    aspect-ratio: 1/1;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 6px;
    font-size: 12px;
    border-radius: 1000px;
    cursor: pointer;
    transition: 300ms;
}

.EmployeeAllowenceItemOptions h8:hover {
    transform: scale(1.2);
}

.EmployeeAllowenceItemOptions h8 i {
}

.EmployeeAllowenceItem h12 strong g {
    font-size: 11px;
    margin-left: 3px;
}

.ThisEmployeeAllowencesInner h15 {
    display: block;
    margin: 13px auto 16px;
    width: 97%;
    font-weight: 600;
    font-size: 14px;
    color: #2c2c2c;
}

.ThisEmployeeAllowencesHeader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #303030;
}

.ThisEmployeeAllowencesHeader g {
    display: block;
    width: 41px;
    aspect-ratio: 1/1;
    background: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    transition: 300ms;
}

.ThisEmployeeAllowencesHeader g:hover {
    background: #464646;
}

.ThisEmployeeAllowencesHeader g i {
    pointer-events: none
}

.ThisEmployeeAllowencesHeader y {
    position: absolute;
    right: 10px;
    top: 20%;
    width: fit-content;
    height: 60%;
    display: flex;
    align-items: center;
    background: #59875c;
    color: aliceblue;
    padding: 0px 12px;
    font-size: 11px;
    border-radius: 5px;
    transition: 300ms;
    font-weight: 600;
    cursor: pointer;
}

.ThisEmployeeAllowencesHeader y:hover {
    background: #65a569;
}

.ThisEmployeeAllowencesHeader y i {
    pointer-events: none;
    margin-right: 10px;
}

.EmployeeAllowencesRF {
}

.EmployeeAllowencesRF img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 90%;
    height: 104px;
}

.EmployeeAllowencesRF h4 {
    display: block;
    margin: 11px auto;
    width: 80%;
    text-align: center;
    font-size: 15px;
    color: #bf4e4e;
}

.EmployeeSideMenuInner ul li img {
}

.EmployeeAddBDA {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    margin: 0px auto;
    width: 100%;
}

.EmployeeAddBDA button {
    width: 27.3%;
    margin: 4px 3%;
    background-color: #db5959;
    border: none;
    border-radius: 5px;
    padding: 4px 0px;
    transition: 400ms;
    background-image: url(../IMG/BtnBg.png);
    background-size: 100% 100%;
    position: relative;
}

.EmployeeAddBDA button img {
    display: block;
    margin: 5px auto;
    width: auto;
    height: 22px;
    filter: invert(1);
}


.EmployeeAddBDA button label {
    display: block;
    margin: 7px auto 2px;
    width: 100%;
    font-size: 9px;
    color: aliceblue;
    font-weight: 500;
    pointer-events: none;
}

.EmployeeAddBDA button:first-child {
    background-color: #59875c;
}

.EmployeeAddBDA button:last-child {
    background-color: #bd8e26;
}


.EmployeeAddBDA button:hover {
    transform: scale(1.1);
    filter: brightness(110%);
}


.EmployeeSideMenuInner h2 {
    display: block;
    margin: 5px auto 9px;
    width: 94%;
    font-size: 12px;
    color: #424242;
    font-weight: 600;
}

.EmployeeSideMenuInner h2 i {
    color: black;
    margin-right: 2px;
}


.EmployeeAddBDAParent {
    display: block;
    margin: 14px auto;
    width: 95%;
    padding: 3px 7px 8px;
    background: #efefef;
    border: solid 1px #e3e3e3;
    border-radius: 10px;
}

.EmployeeSideMenuInner ul li:last-child {
    border-bottom: none;
}


.EmployeeAddBDA button i {
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    margin: 9px;
    z-index: 222;
    color: aliceblue;
    font-size: 12px;
}

.ThisEmplyeeBonus {
    display: none;
}

.ThisEmplyeeBonusInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: whitesmoke;
    padding: 20px;
    overflow: hidden;
    overflow-y: auto;
    z-index: 999;
    padding-top: 52px;
}

.ThisEmplyeeBonusAppender {
}

.ThisEmplyeeBonusInner h15 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: 600;
    font-size: 12px;
}

.ThisEmplyeeBonusInner h15 g {
    color: #d77c0b;
}

.EmployeeSideMenuInner ul li .fa-money-bill-alt {
    color: #59875c;
}

.EmployeeBonusItem {
    display: block;
    margin: 13px auto;
    width: 100%;
    padding: 15px 10px;
    background: #e5ffe7;
    border: solid 1px #bce1bf;
    border-radius: 10px;
    padding-right: 65px;
    position: relative;
}

.EmployeeBonusItem h12 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #59875c;
}

.EmployeeBonusItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
}

.ThisEmplyeeBonusOptions {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 9px;
}

.ThisEmplyeeBonusOptions button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 28px;
    aspect-ratio: 1/1;
    border: none;
    border-radius: 1000px;
    background: #d77c0b;
    color: aliceblue;
    margin: 10% 0%;
    font-size: 13px;
    transition: 300ms;
}

.ThisEmplyeeBonusOptions button i {
    pointer-events: none;
}

.ThisEmplyeeBonusOptions button:last-child {
    background: #bf3e3e;
}

.ThisEmplyeeBonusOptions button:hover {
    transform: scale(1.2);
}

.EmployeeBonusItem p {
    display: block;
    margin: 2px auto;
    width: 100%;
    font-size: 12px;
}

.EmployeeBonusRF {
}

.EmployeeBonusRF img {
    display: block;
    margin: 16px auto 2px;
    width: auto;
    max-width: 90%;
    height: 104px;
}

.EmployeeBonusRF h4 {
    display: block;
    margin: 11px auto;
    width: 80%;
    text-align: center;
    font-size: 15px;
    color: #bf4e4e;
}

.DropDownFiltration {
}

.DropDownFiltrationHolder {
    display: block;
    margin: 3px 20px;
    width: 200px;
    background: #fbfbfb;
    height: 45px;
    position: relative;
    border: solid 1px #dfdfdf;
    cursor: pointer;
}

.DropDownFiltrationHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1px 15px;
    border: none;
    background: none;
    cursor: pointer;
    padding-left: 44px;
    font-weight: 600;
    color: #3e3e3e;
}

.DropDownFiltrationHolder i {
    color: #3e3e3e;
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    pointer-events: none;
}

.GlobalReturnFalse {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 520px;
}

.GlobalReturnFalseInner {
}

.GlobalReturnFalseInner img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 245px;
}

.GlobalReturnFalseInner h4 {
    display: block;
    margin: 19px auto;
    width: fit-content;
    font-size: 20px;
}

.GlobalReturnFalseInner h4 strong {
    color: var(--theme);
}


.ManualAttendanceBtn {
    display: block;
    margin: 36px auto;
    width: fit-content;
    padding: 11px 18px;
    border: none;
    color: aliceblue;
    position: relative;
    z-index: 22;
    border-radius: 5px;
}

.EmployeeProfile {
    position: fixed;
    left: 0;
    top: 0;
    background: #f0f0f0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EmployeeProfileBody {
    display: block;
    margin: 0 auto;
    width: 400px;
    background-color: #f3f3f3;
    height: 85%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-blend-mode: luminosity;
    background-attachment: fixed;
}

.EmployeePageWallpaper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.EmloyeeProfileHeader {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 666;
    background: white;
    padding: 7px 15px;
    box-shadow: 0px 2px 20px 0px #0000002b;
}

.EmployeeHeaderLogo {
    display: block;
    margin: 0 0;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
}

.EmployeeHeaderLogo img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 39px;
}

.EmployeeProfileHeaderButtons {
    position: absolute;
    right: 5px;
    top: 0;
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EmployeeProfileHeaderButtons button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
    border: none;
    background: none;
}

.EmployeeProfileHeaderButtons button img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.EmployeeProfileIntroduction {
    display: block;
    margin: -19px auto 20px;
    position: relative;
    z-index: 2;
    width: 85%;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -9px black;
    text-align: center;
    padding: 20px;
}

.EmployeeProfileCoverHolder {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #dedede;
    overflow: hidden;
    position: relative;
    height: 240px;
    position: relative;
}

@keyframes EmpProfCoverAnimation {
    0% {
        top: -10%;
        transform: scale(1.0);
    }
    50% {
        top: 0%;
        transform: scale(1.1);
    }
    100% {
        top: -10%;
        transform: scale(1.0);
    }
}

.EmployeeProfileCoverHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    /* transform: translatey(0px); */
    /* -webkit-animation: EmpProfCoverAnimation 10s ease-in-out infinite; */
    /* animation: EmpProfCoverAnimation 10s ease-in-out infinite; */
}

.EmployeeProfileIntroduction h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: var(--theme);
}

.EmployeeProfileIntroduction label {
    display: block;
    margin: 7px auto 0;
    width: fit-content;
    font-size: 12px;
    color: #8b8b8b;
}

.EmployeeAttendanceBtnsMain {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.EmployeeAttendanceBtnsMain h4 {
    display: block;
    margin: 25px auto;
    width: 100%;
    position: relative;
    font-size: 14px;
    padding: 10px 0;
    padding-right: 147px;
}

.EmployeeAttendanceBtnsMain button {
    position: absolute;
    right: 0;
    top: 5%;
    width: fit-content;
    height: 90%;
    overflow: hidden;
    color: aliceblue;
    border: none;
    border-radius: 5px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    padding-left: 34px;
    background-image: url(../IMG/BtnBg.png);
    background-size: 100% 100%;
    min-width: 126px;
    font-size: 13px;
    font-weight: 500;
}

.EmployeeAttendanceBtnsMain button img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    filter: invert(1);
    padding: 9px;
}

.EmployeeProfileReport {
    display: block;
    margin: 38px auto;
    width: 100%;
    background: white;
    padding: 10px 0;
    box-shadow: 0px 0px 20px -9px #00000052;
}

.EmployeeProfileReport p {
    display: block;
    margin: 0 auto;
    width: 90%;
    font-size: 12px;
    border-bottom: solid 1px #eeeeee;
    padding: 9px 0;
}

.EmployeeProfileReport p i {
    margin-right: 5px;
}

.EmployeeProfileReport p strong {
    float: right;
}

.EmployeeProfileReport p strong g {
}

.EmployeeProfileReport p:last-child {
    border: none;
}

.MainView {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    padding-bottom: 77px;
    padding-top: 53px;
}

.MainView::-webkit-scrollbar {
    display: none;
}

.NavBar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99999999999999999;
}

.NavBarInner {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: 65px;
    flex-wrap: wrap;
    position: relative;
    padding: 0 14px;
}

.NavBarInner button {
    display: block;
    margin: 0 auto;
    width: 20%;
    overflow: hidden;
    height: 100%;
    background: none;
    border: none;
    transition: 300ms;
    opacity: 0.5;
}

.NavBarInner button img {
    display: block;
    margin: 9px auto 0;
    width: auto;
    max-width: 90%;
    height: 23px;
}

.NavBarInner button span {
    display: block;
    margin: 4px auto 0;
    width: 100%;
    font-size: 10px;
    font-weight: 500;
}

.NavBarInner h4 {
    display: flex;
    margin: 0 auto;
    width: 49px;
    overflow: hidden;
    background: #303030;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 7px;
    cursor: pointer;
}

.NavBarInner h4 img {
    filter: invert(1);
    width: 56%;
    transition: 400ms;
}

.NavBarInnerBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 35px 35px 0px 0px;
    z-index: -1;
    box-shadow: 0px 0px 27px -6px #00000059;
}


#EmpHome {
    z-index: 222;
}


.NavBarInner .ActiveNavBarBtn {
    opacity: 1.0;
}

.NavBarInner .ActiveNavBarBtn img {
}

.NavBarInner .ActiveNavBarBtn span {
    /* color: #f7a641; */
}

.BGSmokeWhite {
    background: whitesmoke;
}

.EmpProfileContentLoader {
    display: none;
}

.EmpProfileContentLoaderInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffab;
    z-index: 9999999999999;
}

.EmpProfileContentLoaderDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.EmpProfileContentLoaderDiv img {
    width: 55px;
}

.EmpProfileContentLoaderDiv h4 {
    display: block;
    margin: 12px auto;
    width: 100%;
    font-size: 12px;
}


.StartWorkValidation {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #ffe6e6;
    color: #bd5959;
    border: solid 1px #e7c2c2;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
}

.StartWorkValidation i {
    margin-right: 9px;
}


.StartWorkSuccess {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #effff1;
    color: #5ba55a;
    border: solid 1px #c5e3c9;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
}

.StartWorkSuccess i {
    margin-right: 9px;
}


.NavBarInner button:hover {
    transform: scale(1.2);
}

.BreakCounter {
    display: none;
}

.BreakCounter h4 {
}


.EmployeeAttendanceBtnsMain h2 {
    display: block;
    margin: 33px auto;
    width: 330px;
    text-align: center;
    font-size: 23px;
    max-width: 90%;
}

.EmpProfileVacationsGH {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.EmpProfileVacationItem {
    display: block;
    margin: 30px auto;
    width: 100%;
    background: white;
    padding: 10px;
    padding-left: 81px;
    overflow: hidden;
    position: relative;
    min-height: 115px;
    border: solid 1px #e5e5e5;
    border-radius: 10px;
    padding-bottom: 39px;
}

.EmpProfileVacationItem img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 13px;
}

.EmpProfileVacationItemInfo {
}

.EmpProfileVacationItemInfo p {
    display: block;
    margin: 4px auto;
    width: 100%;
    font-size: 12px;
}

.EmpProfileVacationItemInfo p strong {
    margin-left: 6px;
}

.EmpProfileVacationItemInfo h12 {
    display: flex;
    margin: 0px auto;
    width: 100%;
    font-size: 10px;
    font-weight: bold;
    color: #d5d5d5;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #2d2d2d;
    padding: 6px 9px;
}

.EmpProfileVacationItemInfo h12 g {
    margin: 0 auto;
}

.EmpProfileVacationItemInfo h12 strong {
    color: #c14f4f;
    background: #ededed;
    padding: 0px 9px;
    border-radius: 5px;
}

.EmpProfileVacationItemInfo h12 strong i {
}

.EmpProfileVacationItemInfo h12 g:first-of-type strong {
    color: #6e9370;
}

.EmpProfileVacationItemInfo h12 i {
    margin-right: 4px;
}


.ProfSectionHeader {
    display: block;
    margin: 31px auto 0;
    width: 87%;
    font-size: 16px;
}

.MainView * {
    user-select: none !important;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


.MainView *::-webkit-scrollbar {
    display: none;
}


.EmpProfSharedRF {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 36% auto 0;
}

.EmpProfSharedRFInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.EmpProfSharedRFInner img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 60%;
    height: 185px;
}

.EmpProfSharedRFInner h4 {
    display: block;
    margin: 21px auto;
    width: 79%;
    font-size: 14px;
    font-weight: bold;
    color: #999999;
}

.EmpProfileVacationItemInfo p strong i {
    margin-right: 7px;
}

.EmpProfLeavesGH {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.EmpProfLeavesItem {
    display: block;
    margin: 30px auto;
    width: 100%;
    background: white;
    padding: 10px;
    padding-left: 81px;
    overflow: hidden;
    position: relative;
    min-height: 115px;
    border: solid 1px #e5e5e5;
    border-radius: 10px;
    padding-bottom: 39px;
}

.EmpProfLeavesItem img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 13px;
}

.EmpProfLeavesInfo {
}

.EmpProfLeavesInfo p {
    display: block;
    margin: 4px auto;
    width: 100%;
    font-size: 12px;
}

.EmpProfLeavesInfo p strong {
    margin-left: 6px;
}

.EmpProfLeavesInfo p strong i {
    margin-right: 7px;
}

.EmpProfLeavesInfo h12 {
    display: flex;
    margin: 0px auto;
    width: 100%;
    font-size: 10px;
    font-weight: bold;
    color: #d5d5d5;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #2d2d2d;
    padding: 6px 9px;
}

.EmpProfLeavesInfo h12 i {
    margin-right: 4px;
}

.EmpProfLeavesInfo h12 g {
    margin: 0 auto;
}

.EmpProfLeavesInfo h12 g strong {
    color: #c14f4f;
    background: #ededed;
    padding: 0px 9px;
    border-radius: 5px;
}

.EmpProfLeavesInfo h12 g:first-of-type strong {
    color: #6e9370;
}

.EmpProfRequest {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999999999999999999999;
    top: 0;
    left: 0;
}

.EmpProfRequestInner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    z-index: 99999999999;
    padding-bottom: 39px;
}

.EmpProfRequestDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-items: start;
    margin: 0 auto;
    width: 93%;
}

.EmpProfRequestDiv button {
    display: block;
    width: 80px;
    margin: 0 auto;
    height: 100%;
    padding: 9px 10px;
    padding-bottom: 49px;
    font-size: 11px;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    background: #353535;
    color: aliceblue;
    /* box-shadow: -12px -9px 1px 1px #0000001f; */
}

.EmpProfSharedFiltration {
    display: flex;
    justify-content: start;
    width: 87%;
    margin: 12px auto;
}

.EmpProfSharedFiltration button {
    margin-right: 10px;
    width: fit-content;
    padding: 3px 9px;
    font-size: 12px;
    border: solid 2px;
    border-radius: 5px;
    font-weight: 500;
    transition: 300ms;
    background: #fbfbfb;
}

.EmpProfSharedFiltration button:hover {
    transform: scale(1.1);
}

.EmpProfSharedFiltration .EmpProfActiveSHaredFIltration {
    background: var(--theme);
    color: aliceblue;
    border-color: var(--theme);
}


.EmpProfPreloader {
}

.EmpProfPreloaderInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    background-size: cover;
    background-position: center;
    background-blend-mode: screen;
    background-color: #dfdfdf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EmpProfPreloaderDiv {
}

@keyframes EmpProfPreloaderLogoAnimation {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}

.EmpProfPreloaderDiv img {
    display: block;
    margin: 0 auto 44px;
    width: auto;
    height: 56px;
    transform: translatey(0px);
    -webkit-animation: EmpProfPreloaderLogoAnimation 5s ease-in-out infinite;
    animation: EmpProfPreloaderLogoAnimation 5s ease-in-out infinite;
}

.EmpProfPreloaderDiv h4 {
    display: block;
    margin: 15px auto 0;
    width: fit-content;
    text-align: center;
    font-size: 17px;
}


.EmpProfRequestDiv button img {
    display: block;
    margin: 6px auto 14px;
    width: auto;
    max-width: 90%;
    height: 30px;
    filter: invert(1);
}

.EmpProfRequestInnerFade {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.5;
    cursor: pointer;
}

.NavBarInner .EmpProfRequestShown {
    background: #b36868;
}

.NavBarInner .EmpProfRequestShown img {
    transform: rotate(45deg);
}

.EmpProfProfileIntroduction {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 34px 30px;
    position: relative;
    padding-left: 102px;
    background: whitesmoke;
}

.EmpProfProfileIntroductionHolder {
    position: absolute;
    left: 0;
    top: 0px;
    padding: 21px;
}

.EmpProfProfileIntroductionHolder img {
    width: auto;
    height: 65px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10000px;
    background-color: #dfdfdf;
}

.EmpProfProfileIntroductionText {
}

.EmpProfProfileIntroductionText h3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    color: var(--theme);
}

.EmpProfProfileIntroductionText label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: #898989;
}

.EmpProfProfileIntroductionHolder i {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    aspect-ratio: 1/1;
    background: var(--theme);
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    margin: 20px;
    font-size: 10px;
}

.EmpProfProfileIntroductionHolder * {
    cursor: pointer;
}


#EmpProfProfile {
    background: white;
}

.EmpProfProfileTabs {
    display: block;
    margin: 0 auto;
    width: 100%;
    overflow-y: auto;
}

.EmpProfProfileTabsInner {
    display: flex;
    justify-content: start;
    width: max-content;
    flex-wrap: nowrap;
    flex-direction: row;
}

.EmpProfProfileTabsInner button {
    display: flex;
    width: fit-content;
    padding: 12px 11px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-right: solid 1px #d7d7d7;
    color: #6f6f6f;
    background: #ebebeb;
    box-shadow: inset 1px 1px 18px -14px #c7c7c7;
    transition: 300ms;
}

.EmpProfProfileView {
    display: none;
}

.EmpProfProfileTabsInner .ActiveProfProfileTab {
    background: white;
    box-shadow: none;
    border-top: solid 1px #e5e5e5;
}

.EmpProfPersonal {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
    font-size: 12px;
}


.EmpProfPersonal p {
    display: block;
    margin: 0 auto;
    width: 90%;
    border-bottom: solid 1px #ebebeb;
    padding: 13px 0px;
}

.EmpProfPersonal p strong {
    float: right;
}

.EmpProfAdvancedPaymentsGH {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.EmpProfAdvancedPaymentItem {
    display: block;
    margin: 30px auto;
    width: 87%;
    background: #f7f7f7;
    position: relative;
    padding: 16px 10px 10px;
    padding-left: 81px;
    border: solid 1px #e1e1e1;
    border-radius: 0px 30px;
}

.EmpProfAdvancedPaymentItem img {
    position: absolute;
    left: 0;
    top: 0;
    width: 39px;
    margin: 20px;
}

.EmpProfAdvancedPaymentItem h4 {
    display: block;
    margin: 0 auto 4px;
    width: 100%;
    font-weight: bold;
    color: #7eab69;
    font-size: 17px;
}

.EmpProfAdvancedPaymentItem h4 g {
    font-size: 15px;
}

.EmpProfAdvancedPaymentItem lebel {
    display: block;
    margin: 3px auto;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
}

.EmpProfAdvancedPaymentItem lebel strong {
    margin-left: 7px;
}

.EmpProfAdvancedPaymentItem lebel strong i {
    margin-right: 3px;
}

.EmpProfAdvancedPaymentItem p {
    display: block;
    margin: 12px auto;
    width: 100%;
    font-size: 12px;
}


#EmpProfAdvancedPayments {
    padding-top: 20px;
}

#EmpProfPersonal {
    padding-top: 30px;
}

.EmployeeProfDocumentsGH {
    display: flex;
    justify-content: start;
    width: 100%;
    height: fit-content;
    padding: 34px 7px;
    flex-wrap: wrap;
}

.EmpProfDocItem {
    display: block;
    margin: 12px 2.1%;
    width: 29.1%;
    background: #f5f5f5;
    padding: 0 0px 18px;
    border: solid 1px #ebebeb;
    /* border-radius: 9px; */
    cursor: pointer;
    transition: 300ms;
}

.EmpProfDocItem img {
    display: block;
    margin: 14px auto;
    width: auto;
    height: 38px;
}

.EmpProfDocItem h3 {
    display: block;
    margin: 0 auto;
    width: 90%;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
    color: #636363;
}

.EmpProfDocItem:hover {
    transform: scale(1.1);
    filter: brightness(102%);
}

.HappyBirthdayFade {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: black;
    opacity: 0.5;
}

.HappyBirthday {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    background: white;
    z-index: 999999999999999999;
    padding: 31px 20px;
    padding-left: 139px;
}

.HappyBirthday img {
    position: absolute;
    left: -16px;
    top: -41px;
    width: 160px;
}

.HappyBirthday h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    color: #d77c0b;
}

.HappyBirthday p {
    display: block;
    margin: 9px auto;
    width: 100%;
    font-size: 14px;
}

.ShowFullScedualBtn {
    position: absolute;
    right: -5px;
    top: -10px;
    width: 40px;
    aspect-ratio: 1/1;
    background: #dfdfdf;
    border: none;
    color: #4e60b7;
    transition: 300ms;
    border-radius: 0px 8px 0px 16px;
}

.ShowFullScedualBtn i {
}


.ShowFullScedualBtn:hover {
    background: #4e60b7;
    /* transform: scale(1.2); */
    /* box-shadow: -6px 4px 1px 1px #0000001c; */
    color: aliceblue;
}

.InnerViewBack {
    background: #c75d5d;
    color: aliceblue;
    border: none;
    padding: 0;
    font-size: 23px;
    height: 30px;
    vertical-align: bottom;
    border-radius: 5px;
    transition: 300ms;
    aspect-ratio: 1/1;
}

.InnerViewBack:hover {
    transform: scale(1.1);
    background: #a54b4b;
}

.FullScedualGH {
    display: flex;
    justify-content: start;
    width: 97%;
    flex-wrap: wrap;
    margin: 0 auto;
}

.FullScedualItem {
    margin: 1%;
    width: 14.6%;
    background: white;
    border: solid 1px #e7e7e7;
    background: #f9f9f9;
    text-align: center;
    color: #363636;
    padding: 15px;
}

.FullScedualItem h1 {
    display: block;
    margin: 5px auto;
    width: fit-content;
    font-weight: bold;
}

.FullScedualItem label {
    display: block;
    margin: 0 auto;
    width: fit-content;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 15px;
}

.FullScedualItem p {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    padding: 7px 0px;
    font-size: 14px;
}

.FullScedualItem p i {
    margin-right: 5px;
}

.FullScedualItem p strong {
    float: right;
}


.FullScedualItem p:first-of-type {
    border-bottom: solid 1px #e7e7e7;
}


#FullSceduall .SalarySlipMonthsGH {
    width: 96%;
    margin: 0px auto 20px;
}

.EmployeeSideMenuInner ul li .fa-paperclip {
    color: #a95fb7;
}


.EmpContractsGH {
    display: none;
}

.EmpContractsGHInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: whitesmoke;
    padding: 20px;
    overflow-y: auto;
    padding-top: 54px;
}

.EmpContractsGHInner h15 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    color: #666666;
}

.EmpContractsGHInner h15 g {
    color: #d77c0b;
}

.EmpContractsCloser {
    position: absolute;
    right: 0;
    top: 0;
    width: 19px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    background: #bf3e3e;
    border: none;
    border-radius: 1000px;
    overflow: hidden;
    margin: 10px;
    font-size: 11px;
    padding: 0;
    transition: 300ms;
}

.EmpContractsCloser:hover {
    background: #ad3939;
}

.ThisEmplyeeDocumentsAppender {
}

.DocumentItem {
    display: block;
    margin: 17px auto;
    width: 100%;
    padding: 10px 20px;
    background: white;
    box-shadow: 0 0 0 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 500ms;
    position: relative;
    padding-left: 50px;
}

.DocumentItem h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    color: #d77c0b;
}

.DocumentItem label {
    display: block;
    margin: 11px 0;
    width: 93%;
    font-size: 9px;


    /* number of lines to show */
    position: relative;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.DocumentItem label strong {
    margin-left: 13px;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.DocumentItemOptions {
    display: flex;
    /* justify-content: end; */
    width: 100%;
    margin: 9px auto 0;
}

.DocumentItemOptions button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    aspect-ratio: 1/1;
    margin: 0 0;
    border-radius: 1000px;
    border: none;
    color: aliceblue;
    background: #0b89d7;
    transition: 300ms;
    font-size: 14px;
    margin-right: 7px;
}

.DocumentItemOptions button i {
}

.DocumentItemOptions button:last-child {
    background: #bf3e3e;
}

.DocumentItemOptions button:hover {
    transform: scale(1.2);
}

.EmployeeDocsRF {
    display: block;
    margin: 19px auto 0px;
    width: 100%;
}

.EmployeeDocsRF img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 90%;
    height: 96px;
}

.EmployeeDocsRF h4 {
    display: block;
    margin: 11px auto;
    width: 80%;
    text-align: center;
    font-size: 13px;
    color: #bf4e4e;
}

#FullSceduall .CustomizedListHeader h1 {
    font-size: 25px;
    letter-spacing: 3px;
    padding: 13px 0;
}

#FullSceduall .CustomizedListHeader h1 hh {
}

.SharedFormHeader {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.SharedFormHeader h3 {
    display: block;
    margin: 16px auto 20px;
    width: 90%;
    font-size: 15px;
    position: relative;
    padding: 13px 7px;
    padding-left: 39px;
    font-weight: bold;
    color: #3e3e3e;
}

.SharedFormHeader h3 img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 10px;
}

.EmpProfForm {
}

.EmpProfFormRow {
    display: block;
    margin: 0 auto;
    width: 85%;
}

.EmpProfFormRow label {
    display: block;
    margin: 22px auto 6px;
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    color: #525252;
}

.EmpProfFormHolder {
    display: block;
    margin: 10px auto;
    width: 100%;
    height: 45px;
    background: white;
    position: relative;
    overflow: hidden;
    border: solid 1px #cccccc;
    border-radius: 5px;
}

.EmpProfFormHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0px 14px;
    font-size: 11px;
}

.EmpProfFormHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0px 14px;
    border: none;
    font-size: 12px;
    cursor: pointer;
}

.EmpProfFormRow textarea {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
    font-size: 11px;
    border: solid 1px #cccccc;
}

.EmpProfFormRow input[type=file] {
    display: block;
    margin: 9px auto 0;
    width: 100%;
    font-size: 11px;
    background: #e4e4e4;
    padding: 8px 5px;
    border-radius: 5px;
    cursor: pointer;
}

.EmpProfFormSubmit {
}

.EmpProfFormSubmit button {
    display: block;
    margin: 30px auto;
    width: fit-content;
    background: var(--theme);
    color: aliceblue;
    padding: 8px 11px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.EmpProfFormRow label u {
    text-decoration: none;
    font-size: 8px;
}

#EmpProfAddedEditedSuccess {
    position: absolute;
    left: 0;
    bottom: 75px;
    z-index: 99999999999999999999;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: none;
    pointer-events: none;
}

#EmpProfAddedEditedSuccess p {
    background: #6e9370;
    padding: 9px 17px;
    max-width: 100%;
    margin: 20px auto;
    width: fit-content;
    color: aliceblue;
    border-radius: 1000px;
    font-size: 12px;
}

.EmpProfSomethingIsWrong {
    display: none;
}

.EmpProfSomethingIsWrongInner {
    display: block;
    margin: 0 auto;
    width: 85%;
    background: #ffd1d1;
    overflow: hidden;
    position: relative;
    padding: 9px 10px;
    z-index: 222;
    min-height: 80px;
    padding-left: 104px;
    color: #c37272;
    font-size: 11px;
    font-weight: 600;
    border: solid 1px #efc5c5;
    overflow: hidden;
    border-radius: 10px;
}

.EmpProfSomethingIsWrongInner img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
    width: 90px;
}

.EmpProfSomethingIsWrongInner label {
}

.EmpProfFormIncreaser {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: white;
    height: 45px;
    overflow: hidden;
    position: relative;
    border: solid 1px #cccccc;
    border-radius: 5px;
}

.EmpProfFormIncreaser input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    border: none;
    color: #7d7d7d;
    background: none;
    font-weight: bold;
    z-index: 0;
    pointer-events: none;
}

.EmpProfFormIncreaser button {
    position: absolute;
    right: 0;
    top: 0;
    background: #6e9370;
    color: aliceblue;
    height: 100%;
    aspect-ratio: 1/1;
    border: none;
    z-index: 22;
}

.EmpProfFormIncreaser button:last-of-type {
    right: unset;
    left: 0;
    background: #cd7171;
}

.AddFromHRFileInput {
    display: block;
    margin: 5px auto 30px;
    width: 100%;
    background: #ececec;
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
}

.EditEmpContractBtn {
    position: absolute;
    left: 11px;
    top: 0;
    width: fit-content;
    background: #d77c0b;
    color: aliceblue;
    padding: 6px 7px;
    font-size: 11px;
    font-weight: 500;
    margin: 10px;
    border: none;
    border-radius: 5px;
    transition: 300ms;
}

.EditEmpContractBtn i {
    margin-right: 4px;
}

.EditEmpContractBtn:hover {
    background: #b0670c;
    transform: scale(1.1);
}

.EmpSalaryInfoMain {
}

.EmpSalaryInfoMain h12 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 12px;
    padding: 7px 0px;
    border-bottom: solid 1px #e9e9e9;
    font-weight: 500;
}

.EmpSalaryInfoMain h12 strong {
    float: right;
}

.EmpSalaryInfoSecondry {
    display: block;
    margin: 25px auto;
    width: 100%;
    background: #eaeaea;
    padding: 10px;
}

.EmpSalaryInfoSecondry h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #d76d6d;
    font-size: 15px;
}

.EmpSalaryInfoSecondry p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    padding: 6px 0px;
    border-bottom: solid 1px #d7d7d7;
}

.EmpSalaryInfoSecondry p strong {
    float: right;
    color: #d76d6d;
}

.EmpSalaryInfoSecondryParent {
}

.EmpProfSalaryHeader {
    display: block;
    margin: 14px auto;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}

#EmpProfSalary {
    padding: 21px;
}

.EmpSalaryInfoSecondry:first-child h4 {
    color: #62a058;
}

.EmpSalaryInfoSecondry p:last-child {
    border: none;
}

.EmpSalaryInfoSecondry p u {
    display: block;
    margin: 12px auto 0;
    width: 100%;
    background: #d8d8d8;
    padding: 12px 9px;
    text-decoration: none;
    border-radius: 5px;
}

.EmpSalaryInfoSecondry p u g {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
}

.EmpSalaryInfoSecondry p u g y {
    float: right;
    font-weight: bold;
    color: #62a058;
}

.EmpSalaryInfoSecondry:first-child p strong {
    color: #62a058;
}

.EmpProfTotalSalary {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 30px;
    color: #62a058;
    font-weight: bolder;
}

.EmpProfTotalSalary strong {
    margin-left: 8px;
    font-size: 22px;
}

.EmpProfTotalSalary g {
    color: #757575;
    font-size: 14px;
    margin-right: 7px;
    vertical-align: middle;
}

.DocumentItem:hover {
    box-shadow: 0px 0px 20px -9px #00000057;
}

.DocumentItem h2 {
    position: absolute;
    left: 0;
    top: 0;
    margin: 14px;
    font-size: 26px;
    color: #b9a48b;
}

.DocumentItem h2 i {
    pointer-events: none;
}

.EmpContractMainInfo {
    display: block;
    margin: 18px auto 31px;
    width: 100%;
}

.EmpContractMainInfo p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 12px;
    padding: 7px 0px;
    border-bottom: solid 1px #dfdede;
}

.EmpContractMainInfo p strong {
    float: right;
}


.EmpContractMainInfo p strong i {
    margin-right: 5px;
}

.EmpContractMainInfo p:last-child {
    border: none;
}

.EmployeeSideMenuInner ul li .fa-calendar-alt {
    color: #4e60b7;
}

.TwoWaysOfCreation {
    display: none;
}

.TwoWaysOfCreationInner {
    position: absolute;
    right: 70px;
    top: 78px;
    background: whitesmoke;
    padding: 20px;
    z-index: 999;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 30px -10px black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.TwoWaysOfCreationInner button {
    width: fit-content;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
    border: none;
    background: #4f4f4f;
    margin: 0 13px;
    color: aliceblue;
    padding-left: 40px;
    border-radius: 5px;
    font-size: 16px;
    transition: 300ms;
}

.TwoWaysOfCreationInner button img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 12px;
    filter: invert(1);
}

.TwoWaysOfCreationInner button:last-of-type {
    background: #4f703e;
}

.TwoWaysOfCreationInner button:hover {
    transform: scale(1.1);
    z-index: 222;
    filter: brightness(120%);
}

.ExelUploaderIntroduction {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ExelUploaderIntroductionInner {
    display: block;
    margin: 0 auto 25px;
    width: 94%;
    padding-left: 100px;
    position: relative;
    overflow: hidden;
}

.ExelUploaderIntroductionInner img {
    position: absolute;
    left: 15px;
    top: 5px;
    width: auto;
    height: 70px;
}

.ExelUploaderIntroductionInner h7 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #cb6565;
}

.ExelUploaderIntroductionInner label {
    display: block;
    margin: 5px auto;
    width: 100%;
    font-size: 13px;
}


.HolidayStatus {
}

.HolidayStatusInner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.HolidayStatusInner h1 {
    display: block;
    margin: 0 auto 50px;
    width: fit-content;
    font-size: 35px;
    letter-spacing: 2px;
    color: #8a6d48;
    font-weight: 700;
    text-transform: uppercase;
    background: #f6f6f6;
    padding: 29px 34px;
    border-radius: 10px;
}

.HolidayStatusInner h1 label {
    display: block;
    margin: 13px auto;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 9px;
}


.EmployeeProfileBodyBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: grayscale(1);
    opacity: 0.1;
    background-position: center;
    background-size: cover;
}
