<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#pwd_strength_wrap {
    border: 1px solid #D5CEC8;
    background-color: #fff;
    display: none;
    float: left;
    padding: 10px;
    position: absolute;
    right: -180px;
    top: 0;
    width: 170px;
    z-index: 20;
}
#pwd_strength_wrap:before, #pwd_strength_wrap:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent; /* arrow size */
}
#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;
}
#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;
}


.tooltip {
    border: 1px solid #D5CEC8;
    background-color: #fff;
    display: none;
    float: left;
    padding: 10px;
    position: absolute;
    right: -160px;
    top: 5px;
    width: 150px;
    z-index: 20;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    line-height: 20px;
}
.tooltip:before, .tooltip:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent; /* arrow size */
}
.tooltip: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;
}


#passwordStrength {
display: block;
height: 10px;
margin: 10px 0;
transition: all 0.4s ease;
}
.strength0 {
background: none; /* too short */
width: 0px;
}
.strength1 {
background: none repeat scroll 0 0 rgb(255, 0, 0);/* weak */
width: 25%;
}
.strength2 {
background: none repeat scroll 0 0 rgb(255, 238, 0);/* good */
width: 50%;
}
.strength3 {
    background: none repeat scroll 0 0 rgb(0, 128, 255);/* strong */
width: 75%;
}

.strength4 {
    background: none repeat scroll 0 0 #00ff00;/* best */
width: 100%;
}</pre></body></html>