﻿
/*table tr th, table tr td {
   
    padding: 0.3625rem 0.425rem;
    font-size: 0.875rem;
    color: #222222 !important;
    text-align: left;
}*/

label.error {
    color: #f04124 !important;
}

.selected {
    background-color: #2ba6cb !important;
    color: #008cba !important;
}


.table {
    margin-bottom: 1.25rem !important;
    table-layout: auto !important;
    background: rgb(255, 255, 255) !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: rgb(221, 221, 221) !important;
    border-image: initial !important;
}

.paginate_button {
    padding: 0 !important;
    border: none !important;
}

.ui-autocomplete {
    max-height: 250px;
    max-width: 420px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: auto;
}

tfoot {
    display: table-header-group;
}

.modalloading {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 255, 255, 255, .8 ) url('Images/ajax-loader.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
        the scrollbar off with overflow:hidden */
body.loading .modalloading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
        modal element will be visible */
body.loading .modalloading {
    display: block;
}


#pwd_strength_wrap {
    background: #fff;
    border: 1px solid #D5CEC8;
    display: none;
    float: left;
    padding: 10px;
    position: relative;
    width: 320px;
}

#pwd_strength_wrap:before, #pwd_strength_wrap:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent;
    z-index: 10001;
}

#pwd_strength_wrap:before {
    border-bottom: 7px solid rgba(0, 0, 0, 0);
    border-right: 7px solid rgba(0, 0, 0, 0.1);
    border-top: 7px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    left: -18px;
    position: absolute;
    top: 10px;
    z-index: 10001;
}

#pwd_strength_wrap:after {
    border-bottom: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid #fff;
    border-top: 6px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    left: -16px;
    position: absolute;
    top: 11px;
    z-index: 10001;
}

#pswd_info ul {
    list-style-type: none;
    margin: 5px 0 0;
    padding: 0;
}

    #pswd_info ul li {
        background: url(icon_pwd_strength.png) no-repeat left 2px;
        padding: 0 0 0 20px;
    }

        #pswd_info ul li.valid {
            background-position: left -42px;
            color: blue;
        }

        #pswd_info ul li.invalid {
            background-position: left 0px;
            color: red;
            font-weight: bold;
        }

#passwordStrength {
    display: block;
    height: 5px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    width: 95%;
}

.strength0 {
    background: none; /* too short */
    width: 0px;
}

.strength1 {
    background: none repeat scroll 0 0 #FF4545; /* weak */
    width: 25px;
}

.strength2 {
    background: none repeat scroll 0 0 #FFC824; /* good */
    width: 75px;
}

.strength3 {
    background: none repeat scroll 0 0 #6699CC; /* strong */
    width: 100px;
}

.strength4 {
    background: none repeat scroll 0 0 #008000; /* best */
    width: 150px;
}

