#info_form .input_group_wrap .input_group {
  display: flex;
}
#info_form .input_group_wrap .input_group:not(:last-of-type) {
  margin-bottom: 30px;
}
#info_form .input_group_wrap .input_group h3 {
  margin: 0px;
  padding: 0px;
  width: 130px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  border: none;
  background-color: #70c0f9;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#info_form .input_group_wrap .input_group input[type=number] {
  padding: 1em;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#info_form .btn_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
#info_form .btn_wrap input[type=submit] {
  margin-right: 20px;
  max-width: 250px;
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  background-color: #fca94b;
  cursor: pointer;
  transition: opacity 0.3s;
}
#info_form .btn_wrap input[type=submit]:hover {
  opacity: 0.75;
}
#info_form .btn_wrap input[type=reset] {
  max-width: 150px;
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  background-color: #aaa;
  cursor: pointer;
  transition: opacity 0.3s;
}
#info_form .btn_wrap input[type=reset]:hover {
  opacity: 0.75;
}

#result .table_wrap table {
  width: 100%;
  height: auto;
}
#result .table_wrap table tr {
  width: 100%;
  height: auto;
}
#result .table_wrap table tr th {
  padding: 15px 0px;
  width: 100px;
  color: #fff;
  background-color: #6dc2ff;
  border: solid 1px #ccc;
}
#result .table_wrap table tr td {
  padding: 0px 1em;
  width: calc(100% - 100px);
  text-align: left;
  background-color: #fff;
  border: solid 1px #ccc;
}