.kzvn-help-icon-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 1.5rem;
}

@supports not (gap: 0.3rem) {
    .kzvn-help-icon-label > * {
        margin-right: 0.3rem;
    }

    .kzvn-help-icon-label > *:last-child {
        margin-right: 0;
    }
}

@supports (gap: 0.3rem) {
    .kzvn-help-icon-label {
        gap: 0.3rem;
    }
}

.kzvn-help-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-out;
    width: 1.4rem;
    height: 1.4rem;
    padding: .1rem;
}

.kzvn-help-icon:hover svg {
    color: var(--error-text-color);
    transition: all .3s ease-in;
}

.kzvn-help-icon svg {
    transition: all .5s ease-out;
}

.kzvn-help-icon:hover .kzvn-help-icon-text {
    display: inline-flex;
}

.kzvn-help-icon-text {
    z-index: 20;
    display: none;
    background-color: var(--kzvn-grey-color-700);
    color: var(--white-color);
    position: absolute;
    top: 0;
    left: 1.5rem;
    width: 19rem;
    min-height: 2rem;
    max-height: 9rem;
    padding: .5rem;
    border-radius: .3rem;
    font-size: .8rem;
    line-height: 1rem;
    font-weight: normal;
    word-break: break-word;
    box-shadow: var(--box-shadow);
}

.username-help {
    width: max-content;
}


@media (max-width: 809px) {
    .kzvn-help-icon-text {
        max-width: 80dvw;
        height: fit-content;
        max-height: max-content;
    }
}

@media (max-width: 400px) {
    .kzvn-help-icon-text {
        top: 1.5rem;
        left: -15dvw;
        max-width: 65dvw;
        height: fit-content;
        max-height: max-content;
    }
}