
.change_password_submit{
	 display: flex;
	 flex-direction: column;
	 width: 100%;
	 overflow: hidden;
}
.input-password {
	 border-radius: 3px;
	 border: 1px solid rgba(17, 17, 17, .2);
	 height: 20px;
	 font-size: 1.1rem;
	 padding: 0.7rem 1rem;
	 outline: none;
	 transition: border 0.4s ease-in-out;
}
.meter-bar-wrapper{
	width: 50%;
	display: flex;
	/*! justify-content: space-around; */
	flex-wrap: wrap;
	align-items: center;
}
.meter-text {
    display: flex;
    width: 32%;
    margin-right: 8px;
    font-size: 16px;
    justify-content: flex-end;
    margin-top: 0;
    color: rgb(240 126 80);
    text-transform: capitalize;

}
.meter-text .meter-status {
	 text-transform: capitalize;
}
.meter {
	 display: block;
	 width: 55%;
	 height: 6px;
	 border-radius: 11px;
	 background: rgb(165 157 157 / 20%);
	 overflow: hidden;
	 margin-bottom: 0px;
	 margin-top:6px;
	 float: right;
}
.meter .meter-bar {
	 display: block;
	 width: 0;
	 height: 100%;
	 transition: width 0.4s ease-in-out, transform 0.4s ease-in-out;
}

div#meter.meter.show-meter {
    opacity: 1 !important;
}
.form-group.row.meter-text-wrapper label {
    /*margin-bottom: -0px;*/
    width: 50%;
    max-width: 50%;
}