.form-case {
  margin-bottom: 100px;
}

.form-content {
  background-image: url("../img/form_middle.png");
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: top center;
  padding: 0 75px 25px;
  display: block !important
}

.form-title {
  color: #03A3AB;
  font-family: 'kotexbold';
  font-size: 28px;
  text-align: center;
  margin-bottom: 22px;
}


.form-group.row {
  align-items: center;
}

.file-input-case {
  display:flex;flex-direction:row;
  width: 100%;

}
.file-input-case .img-file-label-case {
  flex: 1;
  display: flex;
}
.file-input-case .btn-upload {
  text-align: center;
  align-items: center;
  display: flex;
  margin-left: 10px;
  padding: 0 10px;
}


.box-body {
  /* background: url("../img/box-body.png") 0 0 repeat-y;
  background-size: 100% 100%;
  padding: 0 5%; */
}
.box {
  cursor: pointer;
}

.btn-next {
  cursor: pointer;
}

.btn-dd {
  background: #fff;
  border-color: #029FA8;
  border-radius: 6px;
}
.btn-dd:focus {
  border-color: #029FA8;
  box-shadow: 0 1px 1px rgba(102, 0, 153, 0.075) inset,
    0 0 8px #029FA8;
  outline: 0 none;
}

.dropdown-menu {
  width: 100%;
  border-color: #029FA8;
}

.btn-popover {
  font-size: 11px;
  background: transparent;
}

.img-file-label-case {
  padding: 0.6rem 1rem;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid;
  border-color: #029FA8;
}

.img-file-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-file-input {
  position: absolute;
  top: 0;
  left: 8%;
  opacity: 0;
  cursor: pointer;
  border: 0px solid red;
  width: 85%;
}

.btn-upload {
  font-size: 13px;
  width: auto;
  background: #009EA8;
  border-radius: 6px;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  font-family: 'kotexbold';
  box-shadow: 1px 1px 0 #000,  2px 2px 0 #000;
  height: 95%;
}
.dropdown-toggle::after {
  position: absolute;
  right: 5%;
  top: 50%;
}

.form-control {
  max-height: 35px;
}

.dropdown, .dropup {
  max-height: 35px;
}

.question {
  font-family: 'kotexbold';
  font-size: 15px;
  text-align: center;
  padding: 10px 0 5px;
}

.answer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  
}

.answer div {
  margin: 5px 0 0;
  font-size: 14px;
  font-family: 'kotexbold';
}


.radio {
}

.radio-label {
  cursor: pointer;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: relative;
  top: -2px;
  margin-right: 5px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #029FA8;
  border-color: #029FA8;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #029FA8;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.btn-submit-case {
  margin-bottom: -100px;
  width: 100%;
  text-align: center;
}




@media only screen and (max-width: 480px) {
  .form-content {
    padding: 0 35px 25px;
  }


.btn-submit-case {
  margin-bottom: -80px;
}
}

.form-note {
  font-size: 12px;
  margin: 5px 0 0 0;
  display: block;
  width: 100%;
  color: #666;
}