.strength_wrapper {
    width:100%;
    display: inline-block;
    position: relative;
    text-align: left;
}

.strength_input{
    padding: 0.75rem 1.5rem;
    border: 1px solid #E5E5E5E5;
    font-size: 1rem;
    color: #495057;
    width: 100%;
    border-radius: 4px;
    /* font-size: 25px; */
    /* background: transparent; */
    background-color: #fff;
}
#pass-strength-result {
    display: block;
}

.strength_meter {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: -1;
    height: 70%;
    overflow: hidden;
}

.button_strength {
    text-decoration: none;
    color: #4d4d4d;
    font-size: 13px;
    display: inline-block;
}

.strength_meter div {
    width: 0%;
    height: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.strength_meter div p {
    position: absolute;
    right: 10px;
    color: #4d4d4d;
    font-size: 13px;
    padding-right: 30px;
}

.veryweak {
    background-color: #FF7979;
    width: 25% !important;
}
.weak {
    background-color: #FDA068;
    width: 50% !important;
}
.medium {
    background-color: #FFE560;
    width: 75% !important;
}
.strong {
    background-color: #9BF47D;
    width: 100% !important;
}

/* Styles for verification */
/* .pswd_info {
	position:absolute;
	width: 250px;
	padding:15px;
	background:#fefefe; 
	font-size:20px;
	border-radius:15px;
	border:1px solid #ddd;
	display:none;
    z-index: 1000;
    top: -12px;
    height: 210px;
    background-color: rgb(238,238,238);
} */
.pswd_info {
    position: absolute;
    margin-top: 10px; 
    /* margin-top: -5px;  Gets popup closer to the input */
    left: 0;
    z-index: 1000;
    width: 240px; 
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}
/* .changepassword .pswd_info {
	right: 340px;
}
.register .pswd_info {
	right: 1115px;
}
.log .pswd_info {
	right: 340px;
} */
.pswd_info:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ccc;
}

.pswd_info:after {
    content: '';
    position: absolute;
    top: -9px;
    left: 21px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
}
.pswd_info h4 {
	margin:0 0 10px 0; 
	padding:0;
	font-weight:normal;
    font-size: 1em;
    font-size: 0.7em;
}

.pswd_info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pswd_info ul li {
    visibility: visible !important;
    height: 20px !important;
    min-height: 20px !important;
	line-height:24px;
    font-size: 0.7em;
    padding-left: 24px !important;
}

.pswd_info .invalid {
	background:url(images/invalid.png) no-repeat 0 50%;
	color:#ec3f41;
}
.pswd_info .valid {
	background:url(images/valid.png) no-repeat 0 50%;   
	color:#3a7d34;
}