.vl-form-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  color: #131120;

  &-label {
    flex-shrink: 0;
    font-weight: 400;
    min-height: 40px;
    line-height: 40px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;

    &-text {
      &::before {
        content: '*';
        color: rgba(255, 0, 0, 0);
      }
    }
    .required {
      display: flex;
      align-items: center;
      height: 100%;
      gap: 4px;

      &::before {
        content: '*';
        color: #ff0000;
      }
    }
  }

  &-vertical {
    flex-direction: column;
    gap: 0;

    & .vl-form-item-label {
      justify-content: flex-start;
    }
  }

  &-left {
    & .vl-form-item-label {
      justify-content: flex-start;
    }
  }


  &-content {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;

    > .v-input {
      .v-input__control {
        .v-input__slot {
          height: 32px;
          margin: 0;
        }
        ::v-deep .v-text-field__details {
          transform: translateY(5px);
          margin-bottom: 0;
          min-height: 0;
          ::v-deep .v-messages {
            min-height: min-content;
          }
        }
      }
    }
  }
}

.vl-form-item + .vl-form-item {
  margin-top: 20px;
}
