@mixin freeform() {
    color: $gorilla;
    font-family: Rubik, sans-serif;
    font-size: 12px;
    line-height: 18px;
    overflow-y: hidden;
    position: relative;
    white-space: pre-wrap;
}

.MetadataField {
    &-row {
        margin-bottom: 22px;
    }

    &-row-review {
        margin-bottom: 8px;
    }

    &-label {
        color: $timberwolf;
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        vertical-align: top;
        width: 275px;
    }

    &-label-error {
        color: $red-destroy;
    }

    &-value {
        display: inline-block;
        margin-left: 25px;
        vertical-align: top;
        width: 475px;
    }

    &-value-ro {
        font-size: 14px;
    }

    &-freeform {
        @include freeform();
    }

    &-freeform-collapsed {
        @include freeform();
        height: 84px;
    }

    &-freeform-mask {
        background: linear-gradient(rgba(255, 255, 255, 0), 90%, rgba(255, 255, 255, 1));
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%;
    }

    /* stylelint-disable max-nesting-depth, selector-class-pattern, selector-list-comma-newline-after, max-line-length */
    &-freeform-show-more.btn.btn-link {
        font-size: 12px;
        font-weight: initial;
        padding-left: 0;
        text-transform: initial;
    }

    &-value-error {
        .form-control, .Select-control {
            border-color: $red-destroy;
        }
    }
    /* stylelint-enable max-nesting-depth, selector-class-pattern, selector-list-comma-newline-after, max-line-length */
}
