﻿body {
    margin: 0;
    min-height: 90%;
    padding: 0;
    bottom: 0;
    background-image: url(textura.png);
}

.body_container {
    width: 98%;
    margin: auto;
    padding-top: 20px;
}

.menuheader {
    background-color: #3c3a3a73;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px solid #000;
}

    .menuheader a {
        margin: 10px;
        color: #000000;
        text-decoration: none;
        font-size: 20px;
    }

        .menuheader a:hover {
            cursor: pointer;
            color: #ffffff;
        }
.system_version{
    float:left;
    margin-left:5px;
    font-style:italic;
    text-decoration:underline;
    font-size:14px;
}
.log_thumb{
    width:120px;
}
.gv {
    margin: auto;
}

.gv_employees {
    width: 80%;
    margin-top: 40px;
}

.gv_payroll_info {
    width: 100%;
}

.gv_users {
    width: 60%;
}

.completionList {
    list-style-type: none;
    background-color: #6d6d6dde;
    margin-top: 0;
    text-decoration: none;
    padding-left: 5px;
    color:#fff;
}
    .completionList li:hover {
        color: #fff;
        cursor: pointer;
        background-color: #0000006b;
    }
    .CompletionListItem {
    }
.CompletionListHighlightedItem {
}
.payroll_config_container {
    width: 80%;
    margin: auto;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.gv_header {
    font-size: 18px;
    background-color: #414141;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.gv_item {
    height: 30px;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    color: #333333;
}

.gv_options_column {
    width: 200px;
}


.register_employee_form {
    width: 70%;
    margin: auto;
    text-align: center;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.payroll_slected_employye_info {
    width: 70%;
    margin: auto;
    text-align: center;
    background-color: #eee2e263;
    border: 1px solid #d0d0d0ff;
    border-radius: 8px;
    padding: 8px;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.settings_container {
    width: 70%;
    margin: auto;
    text-align: center;
    background-color: #eee2e263;
    border: 1px solid #d0d0d0ff;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 10px;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.profile_container {
    width: 70%;
    margin: auto;
    text-align: center;
    background-color: #eee2e263;
    border: 1px solid #d0d0d0ff;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 10px;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

    .payroll_list_container {
        width: 90%;
        margin: auto;
        text-align: center;
    }
.payroll_searcher_container {
    width: 80%;
    margin: auto;
    background-color: #eee2e263;
    border: 1px solid #d0d0d0ff;
    text-align: center;
    margin-bottom: 50px;
    padding: 10px 5px;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.gv_payrolls {
    width: 100%;
}
    .gv_payrolls .gv_options_column {
        width: 100px;
    }
    .gv_payrolls .gv_options_column input{
        width: 100px;
    }

.form_item {
    padding: 2px 10px 0px 2px;
    min-height: 50px;
    vertical-align: top;
    min-width:50%;
}

.form_label_container {
    color: #3c3a3aff;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
}

.form_value_container {
    margin: 0 8px 0 3px;
    text-align:left;
}

.form_label {
    font-size: 20px;
    font-style: italic;
    color: #414141;
}
.form_label_info {
    font-size: 20px;
    font-style: italic;
    color: #414141;
    margin: 0 8px 0 3px;
    text-align: left;
}

.form_value_container select {
    height: 25px;
}
input[type=checkbox] {
    position: relative;
    cursor: pointer;
}

    input[type=checkbox]:before {
        content: "";
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        top: 0;
        left: 0;
        border: 2px solid #555555;
        border-radius: 3px;
        background-color: white;
    }

    input[type=checkbox]:checked:after {
        content: "";
        display: block;
        width: 5px;
        height: 10px;
        border: solid black;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 2px;
        left: 6px;
    }
.form_textbox {
    width: 300px;
    height: 20px;
    font-size: 20px;
    color: #6f6f6f;
    background-color: #ffffffb4;
    border: 1px solid #7d7d7d;
}

.form_textbox_tiny {
    width: 120px;
    text-align: center;
}

.form_textbox_small {
    width: 120px;
    text-align: center;
}

.form_textbox_long {
    width: 500px;
}

.form_button_container {
    text-align: center;
    padding: 8px 0;
    grid-column: 1 / span 2
}

.bt_save {
    font-size: 18px;
    background-color: #000;
    border: 1px solid #696969;
    color: #fff;
    font-weight:bold;
    padding: 2px 8px;
    margin: auto;
}

    .bt_save:hover {
        cursor: pointer;
        background-color: #ffffff;
        border: 1px solid #454545;
        color: #000000;
        padding: 2px 8px;
    }
.bt_add_item {
    background-color: #fff;
    border: 1px solid #3c3a3a73;
    font-size: 17px;
    padding-left: 25px;
    background-repeat: no-repeat;
    color: #8b8b8b;
    margin: 2px 3px;
    background-image: url(add_item.svg);
    width: 100px;
    height: 24px;
}
    .bt_add_item:hover {
        background-color: #e9e9e9;
        border: 1px solid #3c3a3a73;
        cursor: pointer;
    }
.bt_button_item {
    background-color: #fff;
    border: 1px solid #3c3a3a73;
    font-size: 17px;
    padding-left: 20px;
    background-repeat: no-repeat;
    color: #8b8b8b;
    margin: 2px 3px;
    max-width: 100px;
    margin: auto;
}
.bt_button_item:hover {
    background-color: #e9e9e9;
    border: 1px solid #3c3a3a73;
    cursor:pointer;
}

.bt_edit_item {
    background-image: url(edit_item.svg);
}

.bt_delete_item {
    background-image: url(delete_item.svg);
}

.bt_save_item {
    background-image: url(save_item.svg);
}
.bt_payroll_pdf {
    background-image: url(payroll_pdf.svg);
    background-size:24px;
    width:180px;
    padding:2px 35px;
    text-decoration:none;
}
.bt_send_email {
    background-image: url(email.svg);
}
.bt_sign_payroll {
    background-image: url(pencil.svg);
   
}
.bt_logout {
    font-size: 18px;
    background-color: #eee9e9;
    border: 1px solid #696969;
    color: #ef8585;
    font-weight: bold;
    padding: 2px 8px;
    margin: auto;
    float: right;
    margin-right: 10px;
    margin-top: 2px;
    cursor:pointer;
}
.bt_refresh {
    background-image: url(refresh.png);
    background-size: 24px;
    text-decoration: none;
    border: none;
    background-color: #eee9e9;
    width: 24px;
    height: 24px;
    float:left;
    cursor:pointer;
}
.payroll_signed td {
    background-color: #d5e4e6;
}
.gv_signature_thumbanil {
    width: 100px;
    height: 30px;
}
.Pager {
    padding: 5px;
    margin: 2% auto;
    background-color:#fff;
}

    .Pager td {
        padding: 5px;
    }

    .Pager a {
        color: #434c52;
        font-size: 12px;
        border: 1px solid #3c3a3a73;
        background-color: #ffffff;
        border-radius: 8px;
        text-decoration: none;
        padding: 4px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

        .Pager a:hover {
            color: #3b3b3b;
            font-size: 12px;
            border: 1px solid #3c3a3a73;
            background-color: #d8d8d8;
            border-radius: 8px;
            text-decoration: none;
            padding: 4px;
            padding-left: 8px;
            padding-right: 8px;
            padding-top: 4px;
            padding-bottom: 4px;
        }

    .Pager span {
        color: #fff;
        font-size: 12px;
        border: 1px solid #3b3b3b;
        background-color: #9b9b9b;
        border-radius: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 4px;
        padding-bottom: 4px;
        font-weight:bold;
    }
.loader {
    position: fixed;
    background-color: #3d3d3d35;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
    vertical-align: central;
}

    .loader img {
        width: 120px;
        margin-top: 20%;
    }
.popup {
    background-color: #fff;
    border: 1px solid #3e3e3ee3;
    border-radius: 5px;
    opacity: 1;
    height: 100px;
}

.mpbg {
    background-color: #3d3d3d35;
}
.simple_poup {
    position: fixed;
    height: 100%;
    width: 100%;
    top:0;
    vertical-align:central;
}
.popup_body {
    width: 95%;
    display: inline-block;
    margin-top: 0;
    height: 90%;
    vertical-align: top;
    padding: 5px;
    overflow-y: auto;
}
.popup_recovery {
    height: 150px;
}

.poup_signer{
    margin:auto;
    width:50%;
    min-width:400px;
    height:500px;
    margin-top:50px;
}
.poup_alert {
    width: 250px;
    margin: auto;
    height: 150px;
}

.pop_new_client {
    width: 600px;
    height: 300px;
    margin: auto;
}

.popup_header {
    text-align: center;
    background-color: #383838;
    height: 30px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
}

    .popup_header input {
        font-size: 18px;
        color: red;
        background-color: #fff;
        border: 1px solid #000000;
        padding: 3px;
        float: right;
    }
.msg_alert_success {
    color: #0f6f2e;
    font-weight: bold;
    font-size:20px;
}

.msg_alert_fail {
    color: red;
    font-weight: bold;
    font-size: 20px;
}
.signer_message{
    font-size:25px;
    text-align:center;
    margin-top:100px;
}
.loginbox {
    background-color: #eee2e2ff;
    width: 50%;
    margin: auto;
    /*------------*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    text-align: center;
}
.lbt_recovery_password{
    color:#0d5c97;
    font-size:20px;
    text-decoration:none;
    margin-left:auto;
}
.lbalertsuccess {
    color:#3d9447;
    font-size:18px;
}
.lbalertfail {
    color: #db3a17;
    font-size: 18px;
}
@media only screen and (max-width: 1000px) {
    .form_item {
        padding: 2px 10px 0px 2px;
        min-height: 50px;
        vertical-align: top;
        margin:auto;
        text-align:left;
    }
    .settings_container {
        /*------------*/
        display: grid;
        grid-template-columns: 1fr;
        text-align: left;
        grid-gap: 10px;
    }
    .profile_container {
        /*------------*/
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .register_employee_form {
        /*------------*/
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .payroll_searcher_container {
        /*------------*/
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .form_button_container {
        text-align: center;
        padding: 8px 0;
        grid-column: 1  
    }
    .loginbox {
        /*------------*/
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}