* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.container_table {
	/*
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
	*/
	width: 75%;
	text-align: center;
	position: relative;
}

/* Floating column for labels: 25% width */
.col-30 {
  float: left;
  width: 30%;
  text-align: left;
  margin-top: 6px;
}

/* Floating column for inputs: 70% width */
.col-70 {
  float: left;
  width: 70%;
  margin-top: 6px;
  text-align: center;
}

/* Clear floats after the columns...NOT SURE (2019/09/20)...but does not work without it (2021/03/27)*/
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 640px) {
  .col-30, .col-50, .col-70 {
    width: 100%;
    margin-top: 0;
	text-align: center;
  }
} 
@media screen and (max-width: 1199px) {
  .container_table {
	width: 100%;
	
  }
}