.partbox {
width:100%;
border:solid 2px grey;
border-radius:10px;
padding: 30px 10px 30px;
margin:50px 10px;
background:#ccc;
}

.pr {display: inline-block;font-style:italic;font-color:#D4D4D4;position:absolute;right:120px}
.tooltip {position: relative;display: inline-block;font-size:.75em}
.tooltip .tooltiptext {visibility:hidden;width:80px;background-color:grey;color:#fff;text-align:center;border-radius:6px;padding:2px 0;position:absolute;right:0;top:0;z-index:1;}
.tooltip a {color:white;font-style:none;}
.tooltip:hover .tooltiptext {visibility:visible;}

.smalllogo {
border: none;
margin:0 0 12px 0;
width:auto;
}

/* Style the form - display items horizontally */
.flexiform { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  max-width: 800px;
box-sizing: none;
}

fieldset {
	border:0px;
}

/* Style the input fields */

.flexiform input {
  flex: 1;
  width:90px;
  height:28px;
  vertical-align: middle;
  margin: 2px 0 0 18px;
  padding: 4px;
  background-color: #fff;
  border: 0;
  border-radius: 5px;
}

/* Style the select fields */
.flexiform select {
  vertical-align: middle;
  margin-left: 8px;
  padding: 2px 5px;
  background-color: #fff;
  border: 0;
border-radius: 5px;
}

/* Style the submit button */
.flexiform button {
  padding: 5px 10px;
  margin-left: 8px;
  background-color: blue;
  border: 0;
  border-radius: 5px;
  color: white;
}

.flexiform button:hover {
  background-color: royalblue;
}

/* Add responsiveness - display the form controls vertically instead of horizontally on screens that are less than 800px wide */
@media (max-width: 800px) {

.partbox {
padding: 10px 10px 20px;
margin:10px;
}

.pr {position:absolute;right:72px}


  .flexiform input {
	flex-basis: 100%;
	margin: 15px 0;
	width:150px;
	height:24px;
	font-size:14px;
  }

  .flexiform select {
    margin: 15px 0;
  }

  .flexiform {
    flex-direction: column;
    align-items: stretch;
border: none;
    width: 90%;
  }
}

/* Add responsiveness - display the form controls vertically instead of horizontally on screens that are less than 800px wide */
@media (max-width: 600px) {

.pr {position:absolute;right:36px}

}



