
  .previewContainer {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .previewContainer .feedback {
    margin-bottom: 1em;
  }
  
  .previewContainer > div:first-of-type {
    flex: 0 0 100%;
    margin: 1em 0em;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
  }
  
  .previewContainer > div:first-of-type > button {
    margin-left: auto;
  }
  
  .previewContainer > div:first-of-type > h4 {
    margin-bottom: 0em;
  }
  
  .previewContainer > .imageCont {
    flex: 0 0 9em;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    
    margin: 0em 1.5em 2em 0em;
  }
  
  .previewContainer > .imageCont .imageContainer {
    width: 9em;
    display: flex;
  }
  
  .previewContainer > .imageCont img {
    margin: 0em auto;
    width: 100%;
  }
  
  .previewContainer > .imageCont > span {
    margin-bottom: 0.25em;
  }
  
  .previewContainer > .imageCont > button {
    align-self: center;
    margin-bottom: 0.5em;
  }
  
  .imageOptionsCont {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
  }
  
  .imageOptionsCont > label {
    font-size: 0.9em;
    display: inline-block;
  }
 
