/* ÈLITE custom: "show password" toggle, added on top of the base plugin. */
.elite-password-wrap {
    position: relative;
    width: 100%;
}

.elite-password-wrap input[type="password"],
.elite-password-wrap input[type="text"].elite-password-as-text {
    padding-right: 42px !important;
    width: 100%;
    box-sizing: border-box;
}

.elite-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.elite-password-toggle:hover {
    opacity: 1;
}

.elite-password-toggle svg {
    width: 20px;
    height: 20px;
    display: block;
}

.elite-password-toggle .elite-eye-off {
    display: none;
}

.elite-password-wrap.elite-password-visible .elite-eye {
    display: none;
}

.elite-password-wrap.elite-password-visible .elite-eye-off {
    display: block;
}
