.password-strength {
    width: 100%;
    overflow: hidden;
    height: 1.75em;
    margin-bottom: 1em;
    border: 1px solid #989898;
    background-color: #f7f7f7;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    }
.password-strength--be {
    width: 60%;
    margin-left: 40%;
    }
.password-strength--be-admin {
	min-height: 22px;
	width: 280px
	}
.password-strength-bar {
    position: relative;
    width: 0%;
    height: 100%;
    color: #000;
    font-size: 0.857142857142857em; /* 12/14 */
    background-color: #000000;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 31.1%, rgba(0, 0, 0, 0.15) 100%);
    transition: 
        width 0.5s ease-in-out,
        color 0.5s ease-in-out,
        background-color 0.5s ease-in-out;
    }
.password-strength-very-weak {
    width: 20%;
    color: #fff;
    background-color: #e12420;
    }
.password-strength-weak {
    width: 40%;
    color: #fff;
    background-color: #e76d46;
    }
.password-strength-good {
    width: 60%;
    background-color: #f1b543;
    }
.password-strength-strong {
    width: 80%;
    background-color: #b2d956;
    }
.password-strength-very-strong {
    width: 100%;
    color: #fff;
    background-color: #5cb85c;
    }
.password-strength-bar::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    content: attr(data-status);
    position: absolute;
    left: 0;
    height: 100%;
    width: 500px;
    padding: 0 0.75em;
    }