
#workSubmitForm{
    display:grid;
    grid-template-columns: min-content auto min-content auto; 
    gap: 5px;
  }
  #workSubmitForm label:not(.colTotal) {
    white-space: nowrap;
  }
  
  #workSubmit .qq-upload-list{
    display: flex;
    flex-wrap: wrap;
  }
  #workSubmitForm [data-type=translate]{
    display:none;
  }
  #workSubmitForm[data-type=tr] [data-type=translate]{
    display: unset;
  }
  #workSubmitForm input:invalid{
    border-color: #888;
  }
  #workSubmit .buttons{
    text-align: left;
  }
  #workSubmit button{
    padding: 5px 20px;
    margin:5px;
  }
  
  #workSubmit #submitting{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top:0px;
    left:0px;
    background-color: rgba(0, 0, 0, .5);
    color:white;
    line-height: 300%;
    font-size: 120%;
    font-weight: bold;
    z-index: 200;
  }
  #workSubmit #submitting>div{
    display: grid;
    height: 100%;
    align-content: center;
    justify-items: center;
  }