.HTMLErrorRenderingFormElement_inputContainer {
    position: relative;
}

.HTMLErrorRenderingFormElement_inputContainer.errored .HTMLErrorRenderingFormElement_input {
    box-shadow: 0 0 5px 0 orangered;
}

.HTMLErrorRenderingFormElement_inputContainer .HTMLErrorRenderingFormElement_errorContainer {
    display: block;
    visibility: hidden;
    opacity: 0;

    background-color: orangered;
    color: #FFFFFF;

    font-size: 10px;
    font-weight: 500;
    border-radius: 3px;
    height: 0;
    box-sizing: border-box;

    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/

    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}

.HTMLErrorRenderingFormElement_inputContainer.errored .HTMLErrorRenderingFormElement_errorContainer {
    visibility: visible;
    opacity: 1;
    height: auto;
    display: inline-block;
    padding: 3px;
}