:root {
    --background: #080248;
    --white: #ffff;
    --border: #4228b6;
    --box-shadow: rgba(60,60,200,0.4);
    --input-background: #121538;
    --button-background: #4128B7;
}

body {
    font-family: 'Titillium Web',Helvetica,Arial,Lucida,sans-serif;
    list-style: none;
}

.smx-header {
    background-color: rgba(0,0,56,0.81);
    padding: 0px 40px;
    position: sticky;
    top: 0px;
    min-height:120px;
}

.logo img {
    width: 100%;
    padding-bottom: 10px;
}

ul.navbar-nav.menu-section li button {
    border: none;
    background-color: var(--button-background);
    padding: 15px 15px;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-size: 13px;
    margin-left: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

    ul.navbar-nav.menu-section li button:hover {
        background-color: var(--input-background);
        padding: 15px 25px 15px 15px;
        overflow: hidden;
        transition: all .2s;
    }

.menu-section li {
    color: var(--white);
}

.menu-section button::after {
    font-size: 14px;
    font-family: fontAwesome;
    line-height: 0px;
    content: "\f054";
    opacity: 0;
    position: absolute;
    margin-left: -1em;
    -webkit-transition: all .2s;
    transition: all .20s;
    text-transform: none;
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
    font-variant: none; /*21-02-24*/
    font-style: normal;
    font-weight: 400;
    text-shadow: none;
    margin-top: 9px;
}

.menu-section button:hover:after {
    opacity: 1;
    margin-left: 4px;
    margin-top: 9px;
    transition: all .5s;
}

.banner-section {
    background: url(../Images/banner.png);
    height: 100%;
    min-height: calc(100vh - 230px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: -120px;*/
}

.pattern {
    background-color: var(--background);
}

    .pattern h6 {
        color: var(--white);
        margin: 0px;
        display: flex;
        justify-content: center;
        overflow: hidden;
        padding-bottom: 10px;
        margin-top: -29px;
        position: relative;
    }

    .pattern img {
        width: 100%;
        transform: scale(1, -1);
        height: 110px;
    }

.form-section-outer {
    width: 480px;
    height: 100%;
    margin: 16px 0;
    background-color: #1B1F4F;
    padding: 30px;
    border: 2px solid var(--border);
    box-shadow: 0px 2px 18px 0px var(--box-shadow);
}

    .form-section-outer h2 {
        color: var(--white);
        font-weight: 600;
    }

    .form-section-outer h6 {
        color: var(--white);
    }

.form-section-inner input {
    width: 100%;
    background-color: var(--input-background);
    padding: 16px;
    border: none;
    color: var(--white);
    margin-top: 10px;
}

    .form-section-inner input::placeholder {
        color: var(--white);
        letter-spacing: 1px;
        font-weight: 600;
        font-size: 12px;
    }

    .form-section-inner input:focus {
        outline: none;
    }

.button-section {
    margin-top: 34px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .button-section button {
        border: none;
        background-color: #080248;
        padding: 18px 16px;
        color: var(--white);
        letter-spacing: 2px;
        font-weight: 600;
        box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
        text-transform: uppercase;
        font-size: 13px;
        transition: all 0.5s;
    }

        .button-section button a {
            text-decoration: none;
            color: white;
        }

        .button-section button::after {
            font-size: 14px;
            font-family: fontAwesome;
            line-height: 0px;
            content: "\f054";
            opacity: 0;
            position: absolute;
            margin-left: -1em;
            -webkit-transition: all .2s;
            transition: all .20s;
            text-transform: none;
            -webkit-font-feature-settings: "kern" off;
            font-feature-settings: "kern" off;
            font-variant: none; /*21-02-24*/
            font-style: normal;
            font-weight: 400;
            text-shadow: none;
            margin-top: 9px;
        }

        .button-section button:hover:after {
            opacity: 1;
            margin-left: 4px;
            margin-top: 9px;
            transition: all .2s;
        }


        .button-section button:hover {
            background-color: var(--input-background);
            /*padding: 15px 25px 15px 15px;*/
        }

    .button-section span {
        font-size: 14px;
        letter-spacing: 1px;
    }

        .button-section span:hover {
            text-decoration: underline;
            cursor: pointer;
        }

.register-content {
    margin-top: 20px;
    font-size: 14px;
}

    .register-content span {
        color: #613ff9;
    }

        .register-content span:hover {
            color: var(--white);
            cursor: pointer;
            text-decoration: underline;
        }

.registration-form-section {
    width: 800px;
}


.forgot-password {
    width: 600px;
}



.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    margin-left: 0px;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidebar a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidebar a:hover {
            color: #f1f1f1;
        }

    .sidebar .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

.openbtn {
    font-size: 20px;
    cursor: pointer;
    /*background-color: #111;*/
    color: #000;
    padding: 10px 15px;
    border: none;
}

    .openbtn:hover {
        background-color: #959595;
    }

#main {
    transition: margin-left .5s;
    /*padding: 16px;*/
}
/*-----------------------------------------------------------------------  Dashboard page start here  ------------------------------------------------------------------------*/
.main {
    background-color: #EFEFEF;
    display: flex;
    height: 100vh;
}

.left-sidebar {
    transition: all 0.5s ease-in-out;
    width: 266px;
    position: fixed;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0px 0px 15px #b5b5b5;
    left: 0;
    bottom: 0;
}

    .left-sidebar ul li a {
        text-decoration: none;
        color: #121212;
        font-weight: 500;
        font-size: 18px;
        display: flex;
        align-items: center;
        /*margin-left: 12px;*/
    }

        .left-sidebar ul li a span {
            margin-left: 10px;
        }

    .left-sidebar ul {
        padding-left: 0px;
        list-style: none;
        max-height: 80vh;
        overflow: auto;
    }

        .left-sidebar ul li {
            padding: 13px;
            margin: 8px 15px;
            border-radius: 10px;
        }

.header {
    background-color: #fff;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-section {
    position: absolute;
    right: 0;
    width: calc(100% - 266px);
    transition: all 0.5s ease-in-out;
}

.main.close .left-sidebar {
    margin-left: -266px;
}

.main.close .content-section {
    width: 100%;
}

.dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-toggle::after {
    position: absolute;
    right: 8px;
    top: 18px;
    font-size: 26px;
}

.dropdown-toggle:focus {
    border: none;
}

.active {
    /*background-color: #080248;*/
    background-color: #a6c5ed;
}

    .active a span {
        text-decoration: none;
        color: black;
        font-weight: 500;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

.activeForHome {
    background-color: #080248;
}

    .activeForHome a span {
        text-decoration: none;
        color: white;
        font-weight: 500;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

.card-section {
    margin: 30px 0px;
}

table#getEmployeetbl th {
    color: white;
    background: #080248;
    text-align: center;
}

div#getEmployeetbl_wrapper .col-sm-12 {
    display: block;
    /* width: 100%; */
    overflow-x: auto;
}

div#getEmployeetbl_wrapper {
    margin-top: 20px;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-top: 10px;
}

table#getEmployeetbl td,
table#getEmployeetbl th {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    text-wrap: nowrap; /*21-02-24*/
    font-size: 16px;
    padding: 4px;
}

.costosTable-outer h2 {
    color: #080248;
}

.center-div {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
}

.spinner {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60); /*21-02-24*/
    opacity: 0.6;
    -moz-opacity: 0.8; /*21-02-24*/
}

.loader {
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #15a0ec;
    border-bottom: 16px solid #15a0ec;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.inner-div {
    /*background-color: white;*/
    border-radius: 15px;
    margin: auto;
    padding: 2%;
    width: 150px;
    /*margin: 200px;*/
    /*margin-left: 10px;*/
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.costosTable-outer {
    margin: 16px 0px 0px 0px;
}

td.action-sec i.fa-regular.fa-eye {
    background: #080248;
    padding: 5px 10px;
    color: white;
}

td.edit-icon i {
    color: #0d6efd;
}

td.delete-icon i {
    color: red;
}

div#costosTable_wrapper .row:nth-child(3) {
    margin-bottom: 20px;
}

.dropdown-container {
    display: none;
    /*background-color: #262626;*/
    padding-left: 20px;
    font-size: 20px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 10px;
    margin-left: 20px;
}
/*.sidenav a:hover, .dropdown-btn:hover {
    color: #f1f1f1;
}*/
.dropdown-btn {
    text-decoration: none;
    font-size: 18px;
    /* color: #818181;*/
    display: inline-flex;
    border: none;
    background: none;
    width: 80%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

a:hover {
    color: green;
}

.btn-color {
    color: white;
    padding: 5px 10px;
    background-color: #080248;
}

.pagination li.page-item a.page-link {
    color: #080248;
}

.twice-week {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.dropdown-container a {
    padding: 2px;
    margin-left: 15px;
    font-size: 16px !important;
}

.payroll-header h1 {
    font-size: 25px;
}

button#dropdownMenuButton1 {
    border: none;
    outline: none !important;
}

.PopUp {
    color: #080248;
}

.Button {
    background-color: #080248;
}

.Error {
    color: red;
}

.align {
    margin-top: 200px;
}

.field-icon {
    float: right;
    margin-top: -33px;
    position: relative;
    z-index: 2;
    color: white;
    margin-right: 18px;
}

.container {
    padding-top: 50px;
    margin: auto;
}
/*.left-sidebar ul {
    padding-left: 0px;
    list-style: none;
    max-height: 80vh;
    overflow: auto;
}*/
table#getEmployeetbl thead tr th:nth-child(1),
table#getEmployeetbl thead tr th:nth-child(2)
/*table#getEmployeetbl thead tr th:nth-child(3),
table#getEmployeetbl thead tr th:nth-child(4),
table#getEmployeetbl thead tr th:nth-child(5)*/
/*table#getEmployeetbl thead tr th:nth-child(6)*/ {
    z-index: 3;
}

.payroll #getEmployeetbl_wrapper .row.dt-row .col-sm-12 {
    max-height: calc(100vh - 366px)
}

.employeelist #getEmployeetbl_wrapper .row.dt-row .col-sm-12 {
    /*  max-height:450px;
   min-height: 550px;
    overflow: auto;*/
    max-height: calc(100vh - 270px) !important;
    height: auto;
    overflow: auto;
}

table#getEmployeetbl thead {
    position: sticky;
    top: 0;
    z-index:2;
}

table#getEmployeetbl {
    margin: 0 !important;
}

div#getEmployeetbl_wrapper .row:nth-child(1) {
    padding-bottom: 10px;
}


/*01/12/2023*/
.page-item.active .page-link {
    color: #fff !important;
}

.payroll .card-section {
    margin: 0px;
}

.payroll h2 {
    font-size: 28px;
}

.payroll h5 {
    font-size: 16px;
}

.payroll div#getEmployeetbl_wrapper {
    margin-top: 0px;
}


:is(.employeelist) div#getEmployeetbl_wrapper .row.dt-row .col-sm-12 {
    max-height: 500px;
}

button#BtnAddDeduction, button#BtnAddReimbursement, button#BtnAddCostos, button#updateCostosBtn {
    font-size: 15px;
    padding: 4px 8px;
}
/*08/12/2023*/
div#getEmployeetbl_filter {
    margin-right: 18px;
}

button#PrintDataEntryExcel {
    margin-right: 18px;
}

div#ui-datepicker-div {
    width: 20.2%;
    z-index: 10 !important;
    border: 1px solid #000;
}

.CenterAlign {
    text-align: center;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #458d0f;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}



input:-webkit-autofill {
    -webkit-background-clip: text;  /*21-02-24*/
    -webkit-text-fill-color: #ffffff;
    border: 1px solid #fff;
    border-radius: 4px;
}



/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
        height: 20px;
        width: 20px;
        left: 1px !important;
        bottom: 2px
    }


.banner-section {
height:auto;
}


/*ui fix 24/01/2024*/

.Summary_List_24_width{
    min-width:24px;
}
.w2payrollmargin-unset{
    margin-left:0px !important;
    padding-left:0px !important;
    align-items:unset !important;
}

.w2payrollmargin-unset svg{
    min-width:24px;
}

/*table#getEmployeetbl tr th:nth-child(31) {
    position: sticky;
    right: 80px;
}
table#getEmployeetbl tr td:nth-child(31) {
    position: sticky;
    right: 80px;
}
table#getEmployeetbl tr th:nth-child(32) {
    position: sticky;
    right: 0px;
}

table#getEmployeetbl tr td:nth-child(32) {
    position: sticky;
    right: 0px;
}*/


/* UI fixes 21-02-2024*/
input#employeeId{
    border-radius:10px;
}

button#getEmployeeBtn, button#getEmployeeTimesheetBtn {
    border-radius: 10px;
    padding: 18px 40px;
}

.button-section button:hover:after {
    margin-left:14px;
    margin-top:10px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #121538 inset;
    transition: background-color 5000s ease-in-out 0s;
}


/* UI fixes 27-02-2024*/

.button-section button {
    border-radius: 10px;
    padding: 20px 25px;
}

.left-sidebar ul li:hover {
    background-color: #D6EAF8
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}
.left {
    text-align: left !important;
}