#NewPassword{
	padding-right:100px;
}

.pwstrenght{
	position:relative;
	display:block;
	width:100%;
}

.pstrength-bar{
    position: absolute;
    right: 10px;
    top: 11px;
	background: #eee;
	width: 80px;
    padding: 3px 3px;
    height: 11px;
	
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.pstrenght-hide {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	visibility:hidden;
    height:0;
    overflow:hidden;

    transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-moz-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-o-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-ms-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
}

.pstrenght-show {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	visibility:visible;
    height:auto;
    overflow:auto;

    transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-moz-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-o-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-ms-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
}

.pstrength-progress{
	width:0px;
	height:5px;
	background:none;
	display:block;
	
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;

    transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-moz-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-o-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
	-ms-transition: all 0.2s cubic-bezier(0.8, 0, 0.5, 1);
}



.default{background-color: #CCC;}
.weak{background-color: #FF5353;}
.strong{background-color: #FAD054;}
.stronger{background-color: #93C9F4; }
.strongest{background-color: #B6FF6C;}


.pstrength-text {
}

.pstrength-verdict{
    display: inline-block;
    float: right;
    margin: 5px 5px 0 0;
    font-size: 12px;
    line-height: 20px;
}

.pstrength-proposal {
    display:inline-block;
    width:20px;
    height:20px;
    background:#ededed;
    color:#fff;
    cursor: help;
    text-align:center;
    line-height:20px;
    float:right;
    margin: 5px 10px 0 0;

    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.pstrength-proposal:hover .pstrength-tooltip {
    margin-left: 30px;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity .4s, margin-left .4s;
    transition: opacity .4s, margin-left .4s;
}
.pstrength-tooltip {
    position: absolute;
    top: 115%;
    left: 92%;
    margin: -80px 0 0 20px;
    padding: 10px 15px;
    width: 220px;
    font-size: 11px;
    line-height: 1.4;
    text-align:left;
    color: #7b7b7b;
    border: 1px solid #bfbfbf;
    background-color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    border-radius: 4px;
    -webkit-transition: opacity .4s, margin-left .4s;
    transition: opacity .4s, margin-left .4s;
}

.pstrength-tooltip:after, .pstrength-tooltip:before {
    position: absolute;
    top: 50%;
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0px;
    width: 0px;
    pointer-events: none;
}

.pstrength-tooltip:after {
    border-color: rgba(255,255,255,0);
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}

.pstrength-tooltip:before {
    border-color: rgba(191,191,191,0);
    border-right-color: #bfbfbf;
    border-width: 11px;
    margin-top: -11px;
}


.pstrength-tooltip strong {
    color: #a9a9a9;
    font-weight: 500;
    font-size:10px;
}

ul.pstrength-combination {
    list-style:disc;
}
ul.pstrength-combination li {
    margin: 4px 0 4px 8px;
    font-weight: 600;
    font-size: 10px;
}