﻿.npassword-validation-panel {
    position: relative;
    z-index: 1000;
}

    .npassword-validation-panel div.verification {
        position: absolute;
        padding: 15px;
        background: #fefefe;
        font-size: .875em;
        box-shadow: 0 1px 3px #ccc;
        border: 1px solid #ddd;
    }
    .npassword-validation-panel div.verified {
        position: absolute;
        border: 0px;
        box-shadow: none;
        background: transparent;
        text-align: center;
        padding: 0px;
        margin-top:50px;
    }
    .npassword-validation-panel div.verified svg {
        opacity: 0.8;
    }
    .npassword-validation-panel div h4 {
        margin-top: 0px !important;
        margin-bottom: 5px !important;
        font-weight: bold;
    }

    .npassword-validation-panel div ul {
        margin: 0 0 0 0;
        font-size: 1.2em;
        list-style-type: none;
    } 

.invalid {
    padding-left: 0px;
    line-height: 24px;
    color: #DD5A43;
}

.valid {
    padding-left: 0px;
    line-height: 24px;
    color: #3a7d34;
}

.npassword-validation-panel {
    display: none;
}


.ncheck-animate {
    fill: none;
    stroke: green;
    stroke-width: 20;
    stroke-linecap: round;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: draw 2s infinite ease;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}
