
  .jobVacancyForm,
  .questionsContainer > .questionInputsCont,
  div#adminForms > div {
  
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 2rem;
  }
  
  .questionsContainer > .questionInputsCont {
    row-gap: 1rem;
  }
  
  .jobVacancyForm > h3 {
    margin: 0;
  }
  
  .questions {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  
  .questions>h3 {
    margin-bottom:0;
  }
  
  .questionsContainer {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: 1rem;
    border: 1px solid #dddddd;

  }
  
  .questionsContainer {
    border: 1px solid #dddddd;
  }
   
  .questionTextAndButton {
    flex: 1 0 100%;
    
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    flex-flow: column nowrap;
  }
  
  .questionText {
    flex: 1 1 0;
  }
  
  .removeQuestionBtn {
    font-size: 0.9rem;
    
    margin-bottom: 0.5em;
    padding: 0.3rem 0.5rem;
  }
  
  .removeQuestionBtn svg {
    display: block;
  }
  
  .addAnotherQuestionBtn {
    font-size: 0.9rem;
  }
  
  .requiredFieldContainer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  
  .jobVacancyForm .radioContainer {
    display: block;
    margin-top: 0.5em;
  }
  
  .jobVacancyForm .radioContainer > span {
    display: inline-block;
    width: 100%;
  }
  
  .jobVacancyForm .radioContainer > label {
    display: inline-block;
    margin-right: 1em;
  }

  @media screen and (min-width: 500px) {
    
    .questionsContainer > .questionInputsCont {
      flex-flow: row wrap;
      column-gap: 2rem
    }
    
    .questionsContainer > .questionInputsCont > label,
    .questionsContainer > .questionInputsCont > div {
    
      flex: 0 0 calc(100% / 2 - 2em / 2);
    }
    
    .questionsContainer > .questionInputsCont > .questionAnswers {
      flex: 1 0 100%;
    }
  }
  
  @media screen and (min-width: 700px) {
    /*
    .jobVacancyForm {
      flex-flow: row wrap;
      justify-content: space-between; 
    }
    
    .jobVacancyForm label {
      flex: 0 0 calc(100% / 2 - 2em / 2);
    }
    
    .jobVacancyForm > div:last-of-type {
      flex: 1 0 100%;
    }
    */
  }
 
