#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_wrap .result_group:not(:last-of-type) {
  margin-bottom: 45px;
}
#result_wrap .result_group span.result {
  padding: 30px;
  width: 100%;
  height: auto;
  line-height: 1.5em;
  font-size: 17px;
  display: block;
  background-color: #ddd;
  box-sizing: border-box;
  border-radius: 5px;
}

@media screen and (max-width: 480px) {
  #info_form .input_group_wrap .input_group h3 {
    font-size: 13px;
  }
}