
.password-criteria-visible {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.2s linear 0s, opacity 0.2s linear 0s, visibility 0.2s linear 0s;
    overflow: hidden;
}

.password-criteria-hidden {
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    color: rgb(67, 67, 65);
    transition: max-height 0.2s linear 0s, opacity 0.2s linear 0s, visibility 0.2s linear 0s;
    overflow: hidden;
}

.password-criteria-toggle-arrow-down {
    transform: rotate(90deg);
}

.password-criteria-toggle-arrow-up {
    transform: rotate(270deg);
}

.password-criteria-list-hidden {
    max-height: 0px;
    visibility: hidden;
    transition: max-height 0.2s linear 0s, visibility 0.2s linear 0s;
    overflow: hidden;
}

.password-criteria-list-visible {
    max-height: 150px;
    visibility: visible;
    transition: max-height 0.2s linear 0s, visibility 0.2s linear 0s;
    overflow: hidden;
}

.password-criteria-list-item-hidden {
    max-height: 0px;
    visibility: hidden;
    margin-bottom: 3px;
    transition: max-height 0.2s linear 0s, visibility 0.2s linear 0s;
    overflow: hidden;
}

.password-criteria-list-item-visible {
    max-height: 50px;
    min-height: 26px;
    visibility: visible;
    margin-bottom: 3px;
    transition: max-height 0.2s linear 0s, visibility 0.2s linear 0s;
    overflow: hidden;
}

#password-criteria-list {
    padding-left: 0px;
}

#password-criteria-list li{
    display: block !important;
}

#password-criteria-list li i.fa {
    margin-right: 8px;
    vertical-align:middle;
    font-size: 24px;
}

#password-criteria-list li i.fa-check-circle-o {
    color: #1ab091;
}

#password-criteria-list li i.fa-ban {
    color: #bc1e3b;
}

.strength-bar-wrapper-hidden {
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.2s linear 0.2s, opacity 0.2s linear 0.2s, visibility 0.2s linear 0s;
}

.strength-bar-wrapper-visible {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: max-height 0.2s linear 0.2s, opacity 0.2s linear 0.2s, visibility 0.2s linear 0s;
}

.strength-bar-body {
    width: 200px;
    height: 14px;
    background-color: rgb(230, 235, 245);
    display: inline-block;
    margin-top: 10px;
    position: relative;
    border-radius: 4px;
}

.strength-bar-track {
    width: 100%;
    height: inherit;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 24.5%, rgb(255, 255, 255) 24.5%, rgb(255, 255, 255) 25.5%, rgba(255, 255, 255, 0) 25.5%, rgba(255, 255, 255, 0) 49.5%, rgb(255, 255, 255) 49.5%, rgb(255, 255, 255) 50.5%, rgba(255, 255, 255, 0) 50.5%, rgba(255, 255, 255, 0) 74.5%, rgb(255, 255, 255) 74.5%, rgb(255, 255, 255) 75.5%, rgba(255, 255, 255, 0) 75.5%);
}

.filled-strength-bar-1 {
    width: 25%;
    height: inherit;
    background-color: #EC3633;
    transition: width 0.3s linear 0s, background-color 0.3s linear 0s;
    border-radius: inherit;
}

.filled-strength-bar-2 {
    width: 50%;
    height: inherit;
    background-color: #ffde00;
    transition: width 0.3s linear 0s, background-color 0.3s linear 0s;
    border-radius: inherit;
}

.filled-strength-bar-3 {
    width: 75%;
    height: inherit;
    background-color: #f49919;
    transition: width 0.3s linear 0s, background-color 0.3s linear 0s;
    border-radius: inherit;
}

.filled-strength-bar-4 {
    width: 100%;
    height: inherit;
    background-color: #1ab091;
    transition: width 0.3s linear 0s, background-color 0.3s linear 0s;
    border-radius: inherit;
}

#strength-descriptor {
    margin-left: 20px;
    color: #212021;
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
}

#warning-message {
    color: #EC3633 ;
    font-size: 14px;
}


#password-criteria-list .col-sm-8{
    padding-left: 5px;
}

.checkmark-container{
    height: 17px;
    width: 17px;
}
.checkmark-visible{
    display: inline-block;
    opacity: 1;
    height: 20px;
    width: 10px;
    transform-origin: left top;
    border-right: 3px solid green;
    border-top: 3px solid green;
    top: 16px;
    left: 0px;
    position: relative;
   
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.checkmark-hidden{
    visibility: hidden;
}


@keyframes checkmark {
    0% {
    height: 0;
    width: 0;
    opacity: 1;
    }
    20% {
    height: 0;
    width: 10px;
    opacity: 1;
    }
    40% {
    height: 20px;
    width: 10px;
    opacity: 1;
    }
    100% {
    height: 20px;
    width: 10px;
    opacity: 1;
    }
}

