@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/fontawesome/fa-solid-900.eot");
    src: url("../fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("../fonts/fontawesome/fa-solid-900.woff") format("woff"), url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("../fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg");
}

.fa {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    font-style: normal;
}

.fa-user:before {
    content: "\f007";
}

.fa-plus:before {
    content: "\f067";
}

.fa-times:before {
    content: "\f00d";
}

.users_list {
    width: 32px;              /* circle size */
    height: 32px;
    border-radius: 50%;       /* makes it round */
    
    display: flex;            /* center icon */
    align-items: center;
    justify-content: center;

    border: none;             /* remove default button border */
    background-color: #17bda729; /* your light background */
    color: #17bda7!important;           /* icon color */

    cursor: pointer;
    padding: 0;               /* important: no extra space */

    position: absolute;
    top: 0;
    right: 0;
    margin-top: 20px;
    margin-right: 20px;
}

/* optional: hover effect */
.users_list:hover {
    background-color: #17bda7!important;
    color: #fff!important;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
}

.disabled {
    pointer-events: none;
    opacity: 0.7;
    border: 2px solid silver !important;
    background-color: silver !important;
    color: #fff !important;
}

.loader {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hide {
    display: none !important;
}

.general_error_msg {
    font-size: 14px !important;
    color: #ff0000 !important;
    margin: 10px 1px;
    text-align: center;
}

.error_msg {
    font-size: 11px !important;
    color: #ff0000 !important;
    padding: 0px 0px;
    margin-top: 3px !important;
}

@media screen and (max-width: 576px) {
    .login_form {
        width: 90% !important;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

body {
    font-family: Verdana, sans-serif;
    background: #f9faff;
    color: #3a3c47;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

h1 {
    color: rgb(175, 175, 175);
    font-size: 20px;
}

form {
    background: #fff;
    max-width: 360px;
    width: 100%;
    padding: 58px 44px;
    border: 1px solid #e1e2f0;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(42, 45, 48, 0.12);
    transition: all 0.3s ease;
}

.row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.row label {
    font-size: 13px;
    color: #8086a9;
}

.row input {
    flex: 1;
    padding: 13px;
    border: 1px solid #d6d8e6;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.2s ease-out;
    letter-spacing: 0.15em;
}

.password_input {
    letter-spacing: 0.50em !important;
}

.row input:focus {
    outline: none;
    box-shadow: inset 2px 2px 5px 0 rgba(42, 45, 48, 0.12);
}

.row input::placeholder {
    color: #C8CDDF;
}

.login_btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: #15C39A;
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: Verdana, sans-serif;
    margin-top: 15px;
    transition: background 0.2s ease-out;
}

.login_btn:hover {
    background: #55D3AC;
}

@media(max-width: 458px) {

    body {
        margin: 0 18px;
    }

    form {
        background: #f9faff;
        border: none;
        box-shadow: none;
        padding: 20px 0;
    }

}

.show_password {
    font-size: 12px;
    color: #71b1e7;
    text-decoration: underline;
    cursor: pointer;
    padding: 20px 20px 20px 0px;
}

.show_password:active {
    text-decoration: none !important;
}

.choose_employee_form .user_img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 7px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.choose_employee_form .username {
    font-size: 14px;
    position: absolute;
    top: 10px;

}

.account {
    border-bottom: 1px solid silver;
    cursor: pointer;
}

.account .user_account_info {
    position: relative;
}

.new_employee_btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: silver;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: Verdana, sans-serif;
    margin-top: 15px;
    transition: background 0.2s ease-out;
    font-size: 14px;
}

.new_employee_btn:hover {
    background: rgb(158, 158, 158);
}

.delete_employee_btn {
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 13px;
    padding: 13px;
}

label.required {
    color: rgb(255, 0, 0) !important;
}

input.required {
    border-color: rgb(255, 0, 0) !important;
}

.welcome_msg {
    color: #000;
    font-size: 17px;
}

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noSelect:focus {
    outline: none !important;
}

.loader_content {
    width: 100%
}

.loader_content div {
    background-image: linear-gradient(90deg, #dddddd 0%, #ffffff 49%, #dadada 80%, #e0e0e0 100%);
    animation: slidebg 5s linear infinite;
}

@keyframes slidebg {
    to {
        background-position: 200vw;
    }
}

.title_loader {
    background-color: silver;
    height: 40px;
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.label_loader {
    background-color: silver;
    height: 20px;
    width: 150px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 0px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.input_loader {
    background-color: silver;
    height: 30px;
    width: 200px;
    border-radius: 10px;
    margin-top: 3px !important;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}