html {
    font-size: calc(15px + 0.390625vw);
}
.select {
	padding:1px;
	border-radius:20px; 
	width:480px; 
	height:80px;
	line-height:40px;
	font-size: 24px;
	font-weight:bold;
	text-align:center; 
	background-color:#f7f3bd;
	}
.select:hover {background-color: #f4ed8f}
.mainbutton {
	padding:1px;
	border-radius:20px; 
	width:480px; 
	height:80px;
	line-height:40px;
	font-size: 24px;
	font-weight:bold;
	text-align:center; 
	background-color:#d1f691;
	}
.mainbutton:hover {background-color: #c3f272}
.button {
	padding:1px;
	border-radius:20px; 
	width:480px; 
	height:80px;
	line-height:40px;
	font-size: 24px;
	font-weight:bold;
	text-align:center; 
	background-color:#e5e5e5;
	}
.button:hover {background-color: #cccccc}
.button2 {
	padding:1px;
	border-radius:20px; 
	width:300px; 
	height:80px;
	line-height:40px;
	font-size: 24px;
	font-weight:bold;
	text-align:center; 
	background-color:#e5e5e5;
	}
.button2:hover {background-color: #cccccc}
.myForm input{
	text-align:center;
}
* {
  box-sizing: border-box;
}

.body {
  font: 30px Arial;  
}

.radio {
	padding:1px;
	border-radius:20px; 
	width:40px; 
	height:40px;
	line-height:40px;
	font-size: 24px;
	font-weight:bold;
	text-align:center; 
	background-color:#f7f3bd;
	}

.autocomplete {
  position: relative;
  display: inline-block;
}

.input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 30px;
}

.radio {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 30px;
}

@media screen and (max-width: 1170px) {
	.button {
		padding:1px;
		border-radius:20px; 
		width:90%; 
		height:110px;
		line-height:40px;
		font-size: 32px;
		font-weight:bold;
		text-align:center; 
		background-color:#e5e5e5;
	}
	.select {
	padding:1px;
	border-radius:20px; 
	width:90%; 
	height:110px;
	line-height:40px;
	font-size: 32px;
	font-weight:bold;
	text-align:center; 
	background-color:#f7f3bd;
	}
}

table, th, td {
        font-size: 24px;
    }
	
input[type=submit] {
  background-color: #e9e9e9;
  color: #fff;
  cursor: pointer;
}

input[type=checkbox] {
  background-color: #e9e9e9;
  color: #fff;
  cursor: pointer;
}

autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
autocomplete-active {
  background-color: #e9e9e9 !important; 
  color: Black; 
}