@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;
}

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 {
}

.HeaderLogo img {
    display: block;
    margin: 0 0;
    width: auto;
    height: 60px;
    padding: 8px;
}

.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: #d77c0b;
    color: aliceblue;
    font-size: 11px;
    border-radius: 5px;
    transition: 300ms;
}

.HeaderButtonsFull button i {
    margin: 0px;
    margin-right: 3px;
}

.HeaderButtonsFull button:last-child {
    background: #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;
}

.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: #d77c0b;
}

.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: #f0f0f0;
}

.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: 15px;
}

.HRWelcomingInner h3 u {
    text-decoration: none;
    color: #d77c0b;
    font-weight: bold;
}

.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;
}

.EmployeesFiltration .ActiveEmpFiltration {
    background: #f9b10f;
    color: aliceblue;
}

.EmployeesFiltration button:hover {
    transform: scale(1.1);
    background: #e9e9e9;
}

.EmployeesFiltration .ActiveEmpFiltration:hover {
    background: #d79806
}

.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;
}

.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: #eb9120;
}

.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: #e3aa43;
}

.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: black;
    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: 100px;
}

.PreloaderDiv h4 {
    display: block;
    margin: 0 auto;
    color: #b5a552;
    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: #d77c0b;
    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: #eb8c16;
}

.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;
}

.LockScreenSliderItem {
    display: none;
}

#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: #e39c38;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    transition: 300ms;
}

.LockScreenInnerDiv button[type=submit]:hover {
    transform: scale(1.1);
    background: #eaa748;
}

.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;
}

.CustomizedListHeader h1 {
    display: block;
    margin: 0 auto;
    width: 97%;
    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: #ffb42c;
    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 #9d9d9d;
    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: 82px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1000px;
    /* border: solid 3px #c55c5c; */
    background: white;
}

.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-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;
    right: 0;
    top: 0;
    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;
}

.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: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ScheduleItem {
    margin: 1%;
    background: #f1f1f1;
    width: 18%;
    min-width: 280px;
    padding: 15px 2px;
    border-radius: 10px;
}

.ScheduleItem img {
    display: block;
    margin: -30px auto 10px;
    width: 75px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
}

.ScheduleItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    color: #d77c0b;
}

.ScheduleItem h5 {
    display: block;
    margin: 13px auto;
    width: 91%;
    font-size: 14px;
    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: black;
}

.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: 0 auto 25px;
    width: auto;
    max-width: 90%;
    height: 103px;
}

.LoginBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    object-fit: cover;
}

.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: #aa985f;
}

.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: 45px;
    border: none;
    background: #aa985f;
    color: aliceblue;
    border-radius: 5px;
    transition: 300ms;
}

.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 #aa985f;
    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 #aa985f;
    color: white;
    background: #aa985f;
    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: -29px auto 10px;
    border: solid 2px #aa985f;
    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 {
}

.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: 40px;
    aspect-ratio: 1/1;
    margin: 0 5px;
    border-radius: 5px;
    border: solid 2px #585858;
    transition: 300ms;
    color: #585858;
    background: white;
}

.SalarySlipOptions button:hover {
    transform: scale(1.1);
    background: #585858;
    color: aliceblue;
}

.SalarySlipOptions button i {
    pointer-events: none;
}

.SalarySlipMonthsParent {
    display: block;
    margin: 0 auto;
    width: 93%;
}

.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 #bcbcbc;
    background: #d4d4d4;
    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: #aa985f;
    border-color: #aa985f;
    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: 50px;
    height: fit-content;
}

.AppendedPositionsGH .AppendedPosItem h6 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    color: #5a5a5a;
}

.AppendedPositionsGH .AppendedPosItem button {
    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;
}

.AppendedPositionsGH .AppendedPosItem button:hover {
    background: #9c4242;
}

.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: #9f8e5e;
}

.ConfirmPasswordHolder {
    display: block;
    margin: 0 auto 13px;
    width: 100%;
    background: #f1f1f1;
    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: #a09061;
    color: aliceblue;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 5px;
    transition: 300ms;
}

.ConfirmPasswordDiv #ShowSecretContentBtn:hover {
    background: #918050;
}

.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: #d77c0b;
    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;
}
