.pick-password-wrapper {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    z-index: 2;
    box-shadow: 2px 8px 16px 0px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 70%;
    font-size: 14px !important;
    border: none;
}

@media only screen and (max-width: 767px) {
    .pick-password-wrapper {
        width: 100%;
    }
}

.pick-password-wrapper .top-section{
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.pick-password-wrapper .bottom-section{
    padding-top: 15px;
}

.pick-password-wrapper .title{
    color: #888;
    padding-bottom: 20px;
}

.pick-password-wrapper .progress {
    margin-bottom: 7px;
    border-radius: 0px;
    background-color: #D1D1D1;
    height: 10px;
}

.pick-password-wrapper .progress-bar{
    display: block;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
}

.pick-password-wrapper .weak {
    background-color: #ff4d4d;
    width: 25% !important;
}

.pick-password-wrapper .medium {
    background-color: #ffd633;
    width: 50% !important;
}

.pick-password-wrapper .strong {
    background-color: #00b300;
    width: 75% !important;
}

.pick-password-wrapper .very-strong {
    background-color: #009900;
    width: 100% !important;
}