/*
    BFS Show Password Toggle

    STYLESHEET
    VERSION 1.0
    AUTHOR Dynamis Ltd 
    AUTHOR URL http://www.dynamis.co.uk/

*/
/*#region Variables*/
/*#endregion*/
#show-password-wrap input[type=password], #show-password-wrap input[type=text] {
  width: calc(100% - 60px);
}

.show-password-toggle {
  display: block;
  position: relative;
  text-align: left;
  padding: 0;
  display: inline-block;
  background: none;
  vertical-align: top;
  border: none;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0);
  margin-left: 12px;
}
.show-password-toggle:hover {
  box-shadow: 0px 0px 7px #c1c1c1;
  border-radius: 0.3rem;
  border: 1px solid #c1c1c1;
}
.show-password-toggle:focus {
  outline: none;
}
.show-password-toggle:after {
  content: "\f06e";
  color: #000;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  position: absolute;
  left: 10px;
  top: 10px;
  color: #050296;
}
@media (min-width: 62.5em) {
  .show-password-toggle:hover:before {
    border: 1px solid #4EBE3F;
  }
}
.show-password-toggle.password-visible:before {
  background: #4EBE3F;
  border: 1px solid #4EBE3F;
}
.show-password-toggle.password-visible:after {
  content: "\f070";
}
/*# sourceMappingURL=showPassword.css.map */
