#info_form .input_group_wrap .input_group {
  display: flex;
  align-items: center;
}
#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: 100px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  border: none;
  background-color: #5bb4ef;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#info_form .input_group_wrap .input_group label[for=select_gender] {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  display: block;
}
#info_form .input_group_wrap .input_group label[for=select_gender]:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 100%;
  display: block;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  box-sizing: border-box;
  background-image: url(./img/arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
}
#info_form .input_group_wrap .input_group label[for=select_gender] select {
  padding: 0px 20px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  box-sizing: border-box;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  cursor: pointer;
}
#info_form .input_group_wrap .input_group input[type=number] {
  padding: 1em;
  width: calc(100% - 110px);
  height: 60px;
  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 .input_group_wrap .input_group span.unit {
  margin-left: 12px;
  width: 50px;
  height: auto;
  font-size: 1.1em;
  display: block;
}
#info_form .btn_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
#info_form .btn_wrap input[type=submit] {
  margin-right: 20px;
  max-width: 200px;
  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=button] {
  max-width: 200px;
  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=button]:hover {
  opacity: 0.75;
}

#result .result_content:not(:last-child) {
  margin-bottom: 65px;
}
#result .result_content .table_wrap {
  margin-bottom: 0px;
  overflow-x: scroll;
}
#result .result_content .table_wrap table {
  min-width: 500px;
  width: 100%;
}
#result .result_content .table_wrap table tr {
  background-color: #fff;
}
#result .result_content .table_wrap table tr:hover {
  background-color: #e0f1ff;
}
#result .result_content .table_wrap table tr th, #result .result_content .table_wrap table tr td {
  padding: 10px 0px;
  text-align: center;
  border: solid 1px #ccc;
}
#result .result_content .table_wrap table tr.your_judge {
  color: red;
  font-weight: bold;
}
#result .result_content .table_wrap table tr.header_wrap {
  background-color: #6dc2ff;
}
#result .result_content .table_wrap table tr.header_wrap th {
  padding: 10px 0px;
  color: #fff;
  border: solid 1px #ccc;
}
#result .result_content .warning {
  margin-top: 5px;
  line-height: 1.25em;
}
#result .result_content .content_description {
  padding: 20px;
  background-color: #ddd;
  border-radius: 5px;
}
#result .result_content .content_description .input_group {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
#result .result_content .content_description .input_group .copy_btn {
  width: 50px;
  height: 100%;
  display: block;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #fca94b;
  background-image: url(./img/copy.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  cursor: pointer;
}
#result .result_content .content_description .input_group input[name=result_bmi] {
  padding: 1em;
  width: 100%;
  height: 100%;
  font-size: 18px;
  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;
}
#result .result_content .content_description .btn_wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#result .result_content .content_description .btn_wrap .copy_btn,
#result .result_content .content_description .btn_wrap .share_btn {
  max-width: 200px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s;
}
#result .result_content .content_description .btn_wrap .copy_btn:hover,
#result .result_content .content_description .btn_wrap .share_btn:hover {
  opacity: 0.75;
}
#result .result_content .content_description .btn_wrap .copy_btn {
  margin-right: 20px;
  background-color: #fca94b;
}
#result .result_content .content_description .btn_wrap .share_btn {
  text-decoration: none;
  background-color: #3ba3ee;
}
#result .result_content .content_description .copied {
  position: fixed;
  right: 30px;
  bottom: 20px;
  padding: 20px 25px;
  color: #fff;
  font-size: 14px;
  display: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.8);
}
#result .result_content .content_description p:last-child {
  margin: 0px;
}