/*http://cssdeck.com/labs/css-checkbox-styles*/
/*https://codepen.io/KenanYusuf/pen/PZKEKd*/
html body[ng-app] .prototype_error {
  border: 2px solid #f78585;
}
html body[ng-app] .prototype_error:hover {
  border: 2px solid #d60505;
}
html body[ng-app] .prototype_success {
  border: 2px solid #6cce6c;
}
html body[ng-app] .prototype_success:hover {
  border: 2px solid #6cce6c;
}
html body[ng-app] .prototype_warning {
  border: 2px solid #f3cc8f;
}
html body[ng-app] .prototype_warning:hover {
  border: 2px solid #f99800;
}
html body[ng-app] .prototype_input_txt {
  width: 100%;
  display: block;
  padding: 15px 10px;
  border: solid 2px #dadada;
  transition: all 0.3s;
  color: black;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-family: sans-serif;
}
html body[ng-app] .prototype_input_txt:hover {
  border-color: #888888;
}
html body[ng-app] .prototype_input_txt.success {
  border: 2px solid #6cce6c;
}
html body[ng-app] .prototype_input_txt.success:hover {
  border: 2px solid #6cce6c;
}
html body[ng-app] .prototype_input_txt.error {
  border: 2px solid #f78585;
}
html body[ng-app] .prototype_input_txt.error:hover {
  border: 2px solid #d60505;
}
html body[ng-app] .prototype_input_txt.warning {
  border: 2px solid #f3cc8f;
}
html body[ng-app] .prototype_input_txt.warning:hover {
  border: 2px solid #f99800;
}
html body[ng-app] .prototype_input_txt:focus {
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .prototype_input_txt.has_value {
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .prototype_input_textarea {
  width: 100%;
  display: block;
  padding: 15px 10px;
  border: solid 2px #dadada;
  transition: all 0.3s;
  color: black;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-family: sans-serif;
  height: 100px;
}
html body[ng-app] .prototype_input_textarea:hover {
  border-color: #888888;
}
html body[ng-app] .prototype_input_textarea.success {
  border: 2px solid #6cce6c;
}
html body[ng-app] .prototype_input_textarea.success:hover {
  border: 2px solid #6cce6c;
}
html body[ng-app] .prototype_input_textarea.error {
  border: 2px solid #f78585;
}
html body[ng-app] .prototype_input_textarea.error:hover {
  border: 2px solid #d60505;
}
html body[ng-app] .prototype_input_textarea.warning {
  border: 2px solid #f3cc8f;
}
html body[ng-app] .prototype_input_textarea.warning:hover {
  border: 2px solid #f99800;
}
html body[ng-app] .form_block,
html body[ng-app] .form_inline_block {
  clear: both;
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  /*max-height: 78px;*/
}
html body[ng-app] .form_block.small_block,
html body[ng-app] .form_inline_block.small_block {
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}
html body[ng-app] .form_block.large_block,
html body[ng-app] .form_inline_block.large_block {
  max-height: 100px;
  overflow: hidden;
}
html body[ng-app] .form_block.large_block *,
html body[ng-app] .form_inline_block.large_block * {
  max-height: 100px;
}
html body[ng-app] .form_block label,
html body[ng-app] .form_inline_block label {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 11px;
  left: 26px;
  margin-top: 5px;
  transform: translate3d(0, 100%, 0);
  z-index: -1;
}
html body[ng-app] .form_block label.label_is_active,
html body[ng-app] .form_inline_block label.label_is_active {
  opacity: 1;
  z-index: 1;
  transform: translate3d(0, 0, 0);
}
html body[ng-app] .form_block h1,
html body[ng-app] .form_inline_block h1,
html body[ng-app] .form_block input::-webkit-input-placeholder,
html body[ng-app] .form_inline_block input::-webkit-input-placeholder,
html body[ng-app] .form_block button,
html body[ng-app] .form_inline_block button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 11px;
}
html body[ng-app] .form_block textarea::-webkit-input-placeholder,
html body[ng-app] .form_inline_block textarea::-webkit-input-placeholder {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 11px;
}
html body[ng-app] .form_block input,
html body[ng-app] .form_inline_block input {
  width: 100%;
  display: block;
  padding: 15px 10px;
  border: solid 2px #dadada;
  transition: all 0.3s;
  color: black;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-family: sans-serif;
}
html body[ng-app] .form_block input:hover,
html body[ng-app] .form_inline_block input:hover {
  border-color: #888888;
}
html body[ng-app] .form_block input.success,
html body[ng-app] .form_inline_block input.success {
  border: 2px solid #6cce6c;
}
html body[ng-app] .form_block input.success:hover,
html body[ng-app] .form_inline_block input.success:hover {
  border: 2px solid #6cce6c;
}
html body[ng-app] .form_block input.error,
html body[ng-app] .form_inline_block input.error {
  border: 2px solid #f78585;
}
html body[ng-app] .form_block input.error:hover,
html body[ng-app] .form_inline_block input.error:hover {
  border: 2px solid #d60505;
}
html body[ng-app] .form_block input.warning,
html body[ng-app] .form_inline_block input.warning {
  border: 2px solid #f3cc8f;
}
html body[ng-app] .form_block input.warning:hover,
html body[ng-app] .form_inline_block input.warning:hover {
  border: 2px solid #f99800;
}
html body[ng-app] .form_block input:focus,
html body[ng-app] .form_inline_block input:focus {
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .form_block input.has_value,
html body[ng-app] .form_inline_block input.has_value {
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .form_block textarea,
html body[ng-app] .form_inline_block textarea {
  width: 100%;
  display: block;
  padding: 15px 10px;
  border: solid 2px #dadada;
  transition: all 0.3s;
  color: black;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-family: sans-serif;
  height: 100px;
}
html body[ng-app] .form_block textarea:hover,
html body[ng-app] .form_inline_block textarea:hover {
  border-color: #888888;
}
html body[ng-app] .form_block textarea.success,
html body[ng-app] .form_inline_block textarea.success {
  border: 2px solid #6cce6c;
}
html body[ng-app] .form_block textarea.success:hover,
html body[ng-app] .form_inline_block textarea.success:hover {
  border: 2px solid #6cce6c;
}
html body[ng-app] .form_block textarea.error,
html body[ng-app] .form_inline_block textarea.error {
  border: 2px solid #f78585;
}
html body[ng-app] .form_block textarea.error:hover,
html body[ng-app] .form_inline_block textarea.error:hover {
  border: 2px solid #d60505;
}
html body[ng-app] .form_block textarea.warning,
html body[ng-app] .form_inline_block textarea.warning {
  border: 2px solid #f3cc8f;
}
html body[ng-app] .form_block textarea.warning:hover,
html body[ng-app] .form_inline_block textarea.warning:hover {
  border: 2px solid #f99800;
}
html body[ng-app] .form_block input:focus::-webkit-input-placeholder,
html body[ng-app] .form_inline_block input:focus::-webkit-input-placeholder,
html body[ng-app] .form_block input:valid::-webkit-input-placeholder,
html body[ng-app] .form_inline_block input:valid::-webkit-input-placeholder {
  /*color: black;
				font-weight: bold;
				font-size: 11px;
				-webkit-transform: translateY(-20px);
				transform: translateY(-20px);
				visibility: visible !important;*/
}
html body[ng-app] .form_block [class*="round"],
html body[ng-app] .form_inline_block [class*="round"] {
  border-radius: 3px;
}
html body[ng-app] .form_block label,
html body[ng-app] .form_inline_block label {
  position: absolute;
}
html body[ng-app] .form_block select,
html body[ng-app] .form_inline_block select {
  width: 100%;
  display: block;
  padding: 15px 10px;
  border: solid 2px #dadada;
  transition: all 0.3s;
  color: black;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-family: sans-serif;
  background-color: white;
  height: 54px;
  font-size: 11px;
  opacity: 0.55;
}
html body[ng-app] .form_block select:hover,
html body[ng-app] .form_inline_block select:hover {
  border-color: #888888;
}
html body[ng-app] .form_block select.success,
html body[ng-app] .form_inline_block select.success {
  border: 2px solid #6cce6c;
}
html body[ng-app] .form_block select.success:hover,
html body[ng-app] .form_inline_block select.success:hover {
  border: 2px solid #6cce6c;
}
html body[ng-app] .form_block select.error,
html body[ng-app] .form_inline_block select.error {
  border: 2px solid #f78585;
}
html body[ng-app] .form_block select.error:hover,
html body[ng-app] .form_inline_block select.error:hover {
  border: 2px solid #d60505;
}
html body[ng-app] .form_block select.warning,
html body[ng-app] .form_inline_block select.warning {
  border: 2px solid #f3cc8f;
}
html body[ng-app] .form_block select.warning:hover,
html body[ng-app] .form_inline_block select.warning:hover {
  border: 2px solid #f99800;
}
html body[ng-app] .form_block select:focus,
html body[ng-app] .form_inline_block select:focus {
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .form_block select.has_value,
html body[ng-app] .form_inline_block select.has_value {
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .form_block select option,
html body[ng-app] .form_inline_block select option {
  font-size: 11px;
}
html body[ng-app] .form_block span.before,
html body[ng-app] .form_inline_block span.before,
html body[ng-app] .form_block span.after,
html body[ng-app] .form_inline_block span.after {
  font-size: 11px !important;
  font-family: sans-serif;
  opacity: 0 !important;
}
html body[ng-app] .form_block span.before.error,
html body[ng-app] .form_inline_block span.before.error,
html body[ng-app] .form_block span.after.error,
html body[ng-app] .form_inline_block span.after.error {
  color: #b33f3f !important;
  opacity: 1 !important;
}
html body[ng-app] .form_block_control .control-group {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  float: left;
  width: 100%;
}
html body[ng-app] .form_block_control .control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
}
html body[ng-app] .form_block_control .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
html body[ng-app] .form_block_control .control input:focus ~ .control__indicator {
  background: #ccc;
}
html body[ng-app] .form_block_control .control input:focus ~ .control-indicator {
  background: #ccc;
}
html body[ng-app] .form_block_control .control input:checked ~ .control__indicator {
  background: #2aa1c0;
}
html body[ng-app] .form_block_control .control input:checked ~ .control__indicator:after {
  display: block;
  transform: scale(1) rotate(45deg);
}
html body[ng-app] .form_block_control .control input:checked ~ .control-indicator {
  background: #2aa1c0;
}
html body[ng-app] .form_block_control .control input:checked ~ .control-indicator:after {
  display: block;
  transform: scale(1) rotate(45deg);
}
html body[ng-app] .form_block_control .control input:checked:focus ~ .control__indicator {
  background: #0e647d;
}
html body[ng-app] .form_block_control .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
html body[ng-app] .form_block_control .control input:disabled ~ .control__indicator:after {
  transform: scale(1) rotate(45deg);
}
html body[ng-app] .form_block_control .control input:disabled ~ .control-indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
html body[ng-app] .form_block_control .control input:disabled ~ .control-indicator:after {
  transform: scale(1) rotate(45deg);
}
html body[ng-app] .form_block_control .control:hover input ~ .control__indicator {
  background: #ccc;
}
html body[ng-app] .form_block_control .control:hover input ~ .control-indicator {
  background: #ccc;
}
html body[ng-app] .form_block_control .control:hover input:not([disabled]):checked ~ .control__indicator {
  background: #0e647d;
}
html body[ng-app] .form_block_control .control:hover input:not([disabled]):checked ~ .control-indicator {
  background: #0e647d;
}
html body[ng-app] .form_block_control .control__indicator,
html body[ng-app] .form_block_control .control-indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  transition: all 0.3s;
}
html body[ng-app] .form_block_control .control__indicator:after,
html body[ng-app] .form_block_control .control-indicator:after {
  content: '';
  position: absolute;
  display: none;
  transition: all 0.3s;
}
html body[ng-app] .form_block_control .control__radio .control__indicator,
html body[ng-app] .form_block_control .control-radio .control__indicator {
  border-radius: 50%;
}
html body[ng-app] .form_block_control .control__radio .control__indicator:after,
html body[ng-app] .form_block_control .control-radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
html body[ng-app] .form_block_control .control__radio input:disabled ~ .control__indicator:after,
html body[ng-app] .form_block_control .control-radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
html body[ng-app] .form_block_control .control__radio input:disabled ~ .control-indicator:after,
html body[ng-app] .form_block_control .control-radio input:disabled ~ .control-indicator:after {
  background: #7b7b7b;
}
html body[ng-app] .form_block_control .control__checkbox .control__indicator,
html body[ng-app] .form_block_control .control-checkbox .control__indicator {
  border-radius: 50%;
}
html body[ng-app] .form_block_control .control__checkbox .control__indicator:after,
html body[ng-app] .form_block_control .control-checkbox .control__indicator:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transition: all 0.3s;
  transform: rotate(45deg);
}
html body[ng-app] .form_block_control .control__checkbox input:disabled ~ .control__indicator:after,
html body[ng-app] .form_block_control .control-checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
html body[ng-app] .form_block_control .control__checkbox input:disabled ~ .control-indicator:after,
html body[ng-app] .form_block_control .control-checkbox input:disabled ~ .control-indicator:after {
  border-color: #7b7b7b;
}
html body[ng-app] .form_block_control .select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
html body[ng-app] .form_block_control .select label {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 11px;
  left: 5px;
  margin-top: 5px;
  transform: translate3d(0, 0, 0);
  color: #8c8c8c;
  font-weight: normal;
}
html body[ng-app] .form_block_control .select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  border: 2px solid #dadada;
  border-radius: 3px;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s;
  padding: 15px 10px;
  padding-top: 22px;
  padding-bottom: 8px;
}
html body[ng-app] .form_block_control .select select::-ms-expand {
  display: none;
}
html body[ng-app] .form_block_control .select select ~ .select__arrow:before {
  border-left: 1px solid #dadada;
  content: ' ';
  top: -20px;
  left: -22px;
  position: relative;
  font-size: 24px;
}
html body[ng-app] .form_block_control .select select ~ .select-arrow:before {
  border-left: 1px solid #dadada;
  content: ' ';
  top: -20px;
  left: -22px;
  position: relative;
  font-size: 24px;
}
html body[ng-app] .form_block_control .select select:hover {
  border-color: #888888;
}
html body[ng-app] .form_block_control .select select:hover ~ .select__arrow {
  border-top-color: #000000;
}
html body[ng-app] .form_block_control .select select:hover ~ .select-arrow {
  border-top-color: #000000;
}
html body[ng-app] .form_block_control .select select:focus ~ .select__arrow {
  border-top-color: #000000;
}
html body[ng-app] .form_block_control .select select:focus ~ .select-arrow {
  border-top-color: #000000;
}
html body[ng-app] .form_block_control .select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
html body[ng-app] .form_block_control .select select:disabled ~ .select__arrow {
  border-top-color: #cccccc;
}
html body[ng-app] .form_block_control .select select:disabled ~ .select-arrow {
  border-top-color: #cccccc;
}
html body[ng-app] .form_block_control .select .select__arrow,
html body[ng-app] .form_block_control .select .select-arrow {
  position: absolute;
  top: 22px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
body {
  background: #f7f6f6;
  font-family: 'Kanit', sans-serif;
}
#section-head .outer-container {
  float: left;
  width: 100%;
  height: 64px;
  background-color: white;
}
#section-head .outer-container .left {
  float: left;
}
#section-head .outer-container .left img {
  height: 44px;
  width: auto;
  margin: 10px 0;
}
#section-head .outer-container .right {
  float: right;
}
#section-head .outer-container .right a {
  line-height: 64px;
  color: #636363;
  font-size: 14px;
  outline: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0px 10px;
}
#section-head .outer-container .right a:hover {
  text-decoration: none;
  color: black;
}
#section-head .outer-container .right a.active {
  color: black;
  text-decoration: none;
}
#section-body .intro-container {
  margin: 30px 0;
  font-size: 15px;
  color: #636363;
  text-align: right;
}
#section-body .intro-container a {
  color: #f15c5c;
}
#section-body .section-container {
  float: left;
  width: 100%;
  display: block;
  height: auto;
  background-color: white;
  border: 1px solid #e8e7e7;
  border-radius: 10px;
}
#section-body .section-container .section-head {
  float: left;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #e8e7e7;
}
#section-body .section-container .section-head .number-head {
  float: left;
  width: 70px;
  height: 70px;
  text-align: center;
}
#section-body .section-container .section-head .number-head span {
  background-color: #676767;
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-block;
  line-height: 25px;
  transform: translateY(22.5px);
}
#section-body .section-container .section-head .number-head span a {
  color: white;
}
#section-body .section-container .section-head .number-head span .fa {
  display: block;
}
#section-body .section-container .section-head .text-head {
  float: left;
  line-height: 70px;
  padding-left: 0px;
  font-size: 20px;
  text-transform: uppercase;
  color: #636363;
}
@media (min-width: 992px) {
  #section-body .section-container .section-head .text-edit {
    float: right;
    background-color: #e8e8e8;
    color: #8a8a8a;
    font-size: 14px;
    padding: 0px 20px;
    height: 35px;
    margin: 17.5px 0;
    margin-right: 17.5px;
    line-height: 35px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
  }
}
@media (max-width: 991px) {
  #section-body .section-container .section-head .text-edit {
    float: right;
    color: #adabab;
    font-size: 2em;
    padding: 0px 20px;
    line-height: 70px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    max-width: 70px;
  }
}
#section-body .section-container .section-action {
  padding: 30px 70px;
  text-align: right;
  float: left;
  width: 100%;
  height: auto;
  border-top: 1px solid #e8e7e7;
}
#section-body .section-container .section-action button.action-continue {
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 20px;
  color: black;
  background-color: #FFC107;
  border: 0px;
  transition: all 0.3s;
  outline: none;
}
#section-body .section-container .section-action button.action-continue:hover {
  background-color: #e0a800;
}
#section-body .section-container .section-action button.action-continue:active {
  background-color: #b98b00;
}
@media (max-width: 991px) {
  #section-body .section-container .section-body {
    padding: 15px;
  }
  #section-body .section-container .section-action {
    padding: 15px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #section-body .section-container .section-body {
    padding: 30px 70px;
  }
}
#section-body .section-container .section-body {
  float: left;
  width: 100%;
}
#section-body .section-container .section-body .item-head {
  font-size: 18px;
  color: black;
  margin: 0px 0px 15px;
}
#section-body .section-container .section-body .item-person-container {
  float: left;
  width: 100%;
  height: auto;
}
#section-body .section-container .section-body .item-person-container .person-item {
  float: left;
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #dadada;
  margin-bottom: 30px;
}
#section-body .section-container .section-body .item-person-container .person-item.first .person-info {
  height: 720px !important;
}
#section-body .section-container .section-body .item-person-container .person-item .person-head {
  float: left;
  width: 100%;
  height: auto;
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
}
#section-body .section-container .section-body .item-person-container .person-item .person-head span {
  color: #467fa2;
  float: right;
  font-size: 14px;
  line-height: 28px;
}
#section-body .section-container .section-body .item-person-container .person-item .person-info {
  padding: 0 20px;
  float: left;
  width: 100%;
  display: block;
  transition: all 0.3s;
  height: 0px;
  overflow: hidden;
}
#section-body .section-container .section-body .item-person-container .person-item .person-info.active {
  height: 720px;
}
#section-body .section-container .section-form {
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
#section-body .section-container .section-form.first {
  margin-top: 20px;
}
#section-body .section-container .section-form .input-head {
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
  font-size: 14px;
  color: #717171;
}
#section-body .section-container .section-form .input-field {
  float: left;
  width: 100%;
  height: auto;
}
#section-body .section-container .section-form .input-field input {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: 2px solid #eae8e8;
  background-color: white;
  color: black;
  outline: none;
  padding: 0px 10px;
}
#section-body .section-container .section-form .input-field .input-error {
  color: red;
  font-size: 14px;
  height: 25px;
  line-height: 25px;
  visibility: hidden;
}
#section-body .section-container .section-form .input-field.error input {
  border: 2px solid red;
}
#section-body .section-container .section-form .input-field.error .input-error {
  visibility: visible;
}
#section-body .section-container .section-form .input-select {
  float: left;
  width: 100%;
  height: auto;
  font-size: 0;
}
#section-body .section-container .section-form .input-select select {
  width: 100%;
  height: 45px;
  margin-bottom: 5px;
  background-color: white;
  color: black;
  border: 2px solid #eae8e8;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}
#section-body .section-container .section-form .input-select select.inline {
  width: 33%;
}
#section-body .section-container .section-form .input-radio {
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}
#section-body .section-container .section-form .input-radio label {
  font-size: 16px;
  line-height: 25px;
  color: black;
  margin-right: 20px;
  font-weight: normal;
  outline: none;
  cursor: pointer;
}
#section-body .section-container .section-form .input-radio label input {
  margin-right: 7px;
  outline: none;
}
#section-body .section-container:not(.active) {
  margin-bottom: 10px;
  opacity: 0.5;
}
#section-body .section-container:not(.active) .section-body,
#section-body .section-container:not(.active) .section-action {
  display: none;
}
#section-body .section-container:not(.active) .section-head .text-edit {
  display: none !important;
}
#section-body .section-container.done {
  opacity: 1;
}
#section-body .section-container.done .section-head .number-head span {
  background-color: #25c325;
}
#section-body .section-container.done .section-head .number-head span a {
  display: none;
}
#section-body .section-container.done .section-head .number-head span .fa {
  display: inline-block;
}
#section-body .section-container.done .section-head .text-edit {
  display: block !important;
}
#section-body .section-container.active {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #section-body .section-container.tab-detail .section-body {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  #section-body .section-container.tab-detail .section-body {
    padding: 30px 70px;
  }
}
#section-body .section-container.tab-detail .section-body .item-product {
  width: 100%;
  display: block;
  float: left;
  height: auto;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container {
  width: 100%;
  display: block;
  float: left;
  height: auto;
  margin-bottom: 17.5px;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .image-container {
  float: left;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .info-container {
  float: left;
  padding: 0px 35px;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .info-container .name {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .info-container .variant {
  display: inline-block;
  line-height: 24px;
  background-color: #FFC107;
  color: black;
  font-size: 13px;
  padding: 0px 7.5px;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container {
  float: left;
  width: 150px;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container .fa {
  text-align: center;
  outline: none;
  line-height: 32px;
  width: 25px;
  height: 32px;
  cursor: pointer;
  font-size: 20px;
  color: #8e8d8d;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container .fa:hover {
  color: black;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container .fa-angle-down {
  float: left;
  margin-right: 10px;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container .fa-angle-up {
  float: left;
  margin-left: 10px;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container .input-changeable {
  float: left;
  width: 80px;
  overflow-y: hidden;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-container .input-changeable input {
  width: 100%;
  height: 32px;
  outline: none;
  text-align: center;
  border-radius: 7px;
  border: 1px solid #eee;
}
#section-body .section-container.tab-detail .section-body .item-product .repeat-container .qty-show {
  float: left;
  width: 150px;
  text-align: center;
  font-size: 14px;
  display: block;
}
#section-body .section-container.tab-addr .section-body .row {
  margin-bottom: 15px;
}
#section-footer {
  float: left;
  width: 100%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 20px;
  text-align: center;
}
#section-footer p {
  color: black;
  font-size: 14px;
  text-align: center;
  width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}
#section-footer svg * {
  fill: #aba5a5;
}
