@charset "utf-8";
/* CSS Document */

.button_strength {
    font-size: 12px;
    margin: 0;
    display: inline-block;
    height: 35px;
    line-height: 30px;
    text-decoration: none;
    color: #5c5b5a !important;
}

.strength_meter {
    width: 100%;
    height: 2px;
    position: absolute;
    right: 0px;
    bottom: 35px;
    z-index: 4;
    text-align: left;
}

.strength_meter div {
    width: 0%;
    height: 2px;
    line-height: 35px;
    font-size: 12px;
    -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;
}

.veryweak {
    color: #ad504b;
    background-color: #ad504b;
    width: 25% !important;
}

.weak {
    color: #44c5b4;
    background-color: #44c5b4;
    width: 50% !important;
}

.medium {
    color: #f8c143;
    background-color: #f8c143;
    width: 75% !important;
}

.strong {
    color: #a9be65;
    background-color: #a9be65;
    width: 100% !important;
}

@media (max-width: 767px) {
    .strength_meter div {
        padding-right: 40px;
        min-width: 90px;
        font-size: 10px;
    }
}
