.pwindicator {
  width: 110px;
  display: inline-block;
  position: relative;
  top: -12px;
  height: 14px;
  margin-left: 15px;
}

.pwindicator.posBottom {
  top: 5px;
  margin-bottom: 30px;
}

.pwindicator .pane {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  border-radius: 5px;
}

.pwindicator .colorBar {
  position: absolute;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 100%;
  width: 0;
  transition: all 0.5s ease-in-out;
}

.pwindicator.pw-invalid .colorBar {
  width: 25%;
  background-color: #ff0000;
}

.pwindicator.pw-weak .colorBar {
  width: 50%;
  background-color: #FF6600;
}

.pwindicator.pw-medium .colorBar {
  width: 75%;
  background-color: #F5CC27;
}

.pwindicator.pw-strong .colorBar {
  width: 100%;
  border-radius: 5px;
  background-color: #089436;
}

.pwindicator .strengthName {
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  padding: 0 0 3px 3px;
}

input.correctPassword {
  background-image: url(/UserControls/PasswordStrength/Themes/Icons/checkmark.png);
  background-repeat: no-repeat;
  background-position: right center;
}

/* TOOLTIP */
body .popover.pw-strength-popover {
  background-color: #ffeeb8;
  border: 1px solid #e7d38c;
}

.popover.pw-strength-popover.bs-popover-right .arrow::after,
.popover.pw-strength-popover.bs-popover-auto[x-placement^=right] .arrow::after {
  border-right-color: #ffeeb8;
}

.popover.pw-strength-popover.bs-popover-left .arrow::after,
.popover.pw-strength-popover.bs-popover-auto[x-placement^=left] .arrow::after {
  border-left-color: #ffeeb8;
}

.popover.pw-strength-popover.bs-popover-top .arrow::after,
.popover.pw-strength-popover.bs-popover-auto[x-placement^=top] .arrow::after {
  border-top-color: #ffeeb8;
}

.popover.pw-strength-popover.bs-popover-bottom .arrow::after,
.popover.pw-strength-popover.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-bottom-color: #ffeeb8;
}

body .pw-strength-popover ul {
  margin: 0;
  padding-left: 1rem;
}

.pwstrength-tooltip {
  border-radius: 8px;
  font: inherit;
  box-shadow: none;
  background-image: none;
  text-align: left;
  font-size: 11px;
  top: 0;
  left: 0;
  position: absolute; /* fix */
  width: 260px;
  font-size: 13px;
  color: #000;
}

.pwstrength-tooltip ul.pwTooltipContent {
  margin: 0;
  padding: 0 0 0 10px;
}

.pwstrength-tooltip .arrow {
  width: 16px;
  height: 16px;
  background-image: url(/UserControls/PasswordStrength/Themes/Icons/pwbubble_tick.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 16px;
  left: 19px;
}

.pwstrength-tooltip .arrow.right {
  background-position: -16px -16px;
  left: auto;
  right: -16px;
}

.pwstrength-tooltip .arrow.bottom {
  background-position: 0 0;
  transform: rotate(90deg);
  left: 30%;
  right: auto;
  top: -16px;
  z-index: 1000;
}

.pwstrength-tooltip > .ui-tooltip-content {
  padding: 0;
  margin: 0 auto;
}

.pwstrength-tooltip p {
  margin: 5px auto 0;
  padding: 5px 0 0;
  border-top: 1px solid #b3b3b3;
}

.pwstrength-tooltip p:first-child {
  border: none;
  padding: 0;
  margin: 0 auto;
}

/* [ Fixes ] */
.ui-tooltip.pwstrength-tooltip {
  border: 2px solid #E7D38C;
  color: #4e4e4e;
}

.ui-tooltip.pwstrength-tooltip .arrow.left {
  left: -16px;
}

/*.infoTooltipIcon:hover .infoTooltipTextbox {
    display: block;
}*/