/**
 * CSS for the hide/show password jQuery plugin
 * https://github.com/cloudfour/hideShowPassword
 */

::-ms-reveal,
::-ms-clear {
    display: none !important;
}

.hideShowPassword-toggle {
    background-color: transparent;
    background-image: url('/images/form/icon-visibility.svg');
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    border-radius: 0.25em;
    cursor: pointer;
    font-size: 100%;
    height: 44px;
    margin: 0;
    max-height: 100%;
    min-width: auto;
    min-width: unset;
    padding: 0;
    overflow: hidden;
    outline: none;
    text-indent: -999em;
    width: 46px;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.hideShowPassword-toggle:active,
.hideShowPassword-toggle:focus,
.hideShowPassword-toggle:hover {
    background-color: transparent;
    border-color: transparent;
}

.hideShowPassword-toggle-hide {
    background-image: url('/images/form/icon-visibility-off.svg');
}