.form-row label {
    padding-bottom: 5px;
    margin-right: 10px;
}
.flex-row {
    display: flex;
    flex-direction: row;
    }
.box--end {
    margin-left: auto;
}
.tooltip-form-add {
    margin-left: auto;
    position: relative;
    display: inline-block;
}
.tooltip-form-add > .help-text {
    display: none;
}
.tooltip-form-add:hover > .help-text {
    display: inline-block;
    background-color: #1A1B1C;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: auto;
    right: 100%;
    z-index: 1000;
    font-size: 12px;
    min-width: 12rem;
    max-width: 20rem;
    text-wrap: auto;
    text-align: center;
}
@media screen and (min-width: 834px) and (max-width: 1024px) and (orientation: portrait) {
    .tooltip-form-add:hover > .help-text {
        left: auto;
        right: 100%;
    }
}
@media screen and (max-width: 834px) {
    .tooltip-form-add:hover > .help-text {
        left: auto;
        right: 100%;
    }
}

.form-row .help {
    display: none;
}
