  /*
  #middle_pos {
    position: relative;
    overflow-y: auto;
    margin-bottom: 30px;
  }
    */

#upperhalf {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

#picture {
  width: 40%;
  flex-grow: 1;
 }

 #choicescontainer {
    width: 60%;
 }

 .machinechoices {
    margin: 10px 0 30px 0px;
    padding-left: 0;
    font-size: 27px !important;
 }

 #machine.machinechoices { font-weight: bold; text-decoration: underline; }

 .machinechoices.total { 
  font-size: 20px; 
  color: rgb(103, 234, 86);
  
}


 #middleseparator {
  width: 10%;
 }

  #lowerhalf {
    width: 80%;
    display: block;
    font-size: 19px;
    margin: 80px auto 40px;
 }

.label { margin-bottom: 30px; margin-top: 10px;}
.form  { background: rgb(226, 151, 65); color: black; margin: 20px 0 20px 0; }
form { position: relative; }

.form input {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  color: black;
  background: rgb(226, 151, 65) ;
  font-size: inherit;   
  line-height: 1.2;     
  padding: 8px 10px;  
}


/* Chrome/Edge/Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:autofill {
  -webkit-text-fill-color: #000 !important;
  caret-color: #000 !important;
  /* paint over Chrome’s yellow */
  -webkit-box-shadow: 0 0 0 1000px rgb(226,151,65) inset !important;
          box-shadow: 0 0 0 1000px rgb(226,151,65) inset !important;
  /* kill preview tint */
  transition: background-color 600000s ease 0s, color 600000s ease 0s !important;
}

/* Firefox */
input:-moz-autofill {
  -moz-text-fill-color: #000 !important;
  box-shadow: inset 0 0 0 1000px rgb(226,151,65) !important;
}
.buttoncontainer  {
  text-align: center;
  margin: 30px 0 30px 0;
  /*
  border: pink 4px solid;
  */
}

form .submitbutton {
  text-align: center; 
  border: 8px black dashed;
  border-radius: 8px; 
  /*
  */
  background-color: rgb(48, 205, 72);
  color: black;
  font-weight: bold; 
  font-size: inherit;
  width: 150px;
  height: 75px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 30px;
  padding: 10px;
}
.submitbutton:hover {
background-color: rgb(103, 234, 86);
}

::placeholder {
  color: black;    
  opacity: 1;        
}

/* Firefox */
::-moz-placeholder {
  color: black;
  opacity: 1;
}



#upperhalf { display:flex; align-items:stretch; gap: 0; }
#machines_a { width:40%; display:flex; justify-content:center; }
#machines_b { width:60%; }


#middle_pos .machine_image { max-width:420px; height:auto; margin:auto; }


.machinechoices { font-size: clamp(16px, 3.5vw, 32px); }


@media (max-width:1000px){
  #upperhalf { flex-direction: column; }
  #machines_a, #machines_b { width:100%; }
  #middle_pos .machine_image { width:100%; margin:auto; }
 
}