
  #editCategories > div:first-of-type,
  #editFormats > div:first-of-type,
  #editLanguages > div:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .editSimpleForm {
    margin-top: 1em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  
  .editSimpleForm input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  .editSimpleForm button {
    margin-left: 1em;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  
  .editSimpleForm button::before {
    margin-right: 0.5em;
  }
  
  .editSimpleForm button.removeButton::before {
    color: #f00;
  }
  
  .editSimpleForm button:first-of-type {
    color: #4dad4d;
  }
