.jq-password-validator__popover {
  background: #fff;
  border-radius: 3px;
  box-sizing: border-box;
  color: #111;
  left: 0;
  opacity: 1;
  margin-bottom: 1.25rem;
  right: 0;
  text-align: left;
  transition: all 0.5s;
  z-index: 999;
}

.jq-password-validator {
  position: relative;
}

.jq-password-validator__checkmark {
  height: 1em;
  fill: #111;
  margin-right: 0.5em;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  width: 1em;
}

.jq-password-validator__rule {
  overflow: hidden;
}

.jq-password-validator__rule .jq-password-validator__checkmark {
    width: 12px;
    height: 12px;
    fill: grey;
}

.jq-password-validator__rule.is-valid {
  color: #333;
}

.jq-password-validator__rule.is-valid .jq-password-validator__checkmark {
  transform: scale(1);
  visibility: visible;
  fill: orange;
}

/*# sourceMappingURL=jquery-password-validator.css.map */

.jq-password-validator__popover {
    background: #f9f9f9;
    border-radius: 3px;
    box-shadow: none; 
    color: #333;
    padding: 1.5rem;
    transition: all 0.2s;
}

.jq-password-validator__popover header {
  font-weight: normal;
  margin-bottom: 0.5rem;
}

em {
  border-bottom: 1px dotted;
  font-style: normal;
}

.jq-password-validator__checkmark {
  fill: #44A64D;
}

.jq-password-validator + .gform_show_password{
  max-height: 33px;
}