#survey .btn_wrap {
  clear: both;
  padding-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

#survey .title {
  font-size: 20px;
  letter-spacing: -1px;
  font-weight: 600;
  color: #11387f;
  line-height: 1.35;
  text-align: left;
  padding-top: 30px;
  padding-bottom: 7px;
  border-bottom: 3px solid #11387f;
}

#register {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 3%;
}

#register *::-webkit-scrollbar {
  display: none;
}

#register .left {
  width: 62%;
  float: left;
}
#register .right {
  width: 35%;
  float: right;
}

#register form {
  width: 100%;
}

input[type="checkbox"] {
}

#register .btn_wrap .btn {
  font-size: 18px;
  border-radius: 5px;
  text-align: center;
  background: #11387f;
  color: #fff;
  font-weight: 600;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

#register .btn_wrap .btn:hover {
  background: #0d2155;
}

.form_style {
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1.4;
  font-size: 12.5px;
  font-weight: 400;
  padding: 10px;
  overflow: auto;
}

.form_style.roller {
  max-height: 100px;
  overflow-y: hidden;
  position: relative;
 /*  transition: 0.35s ease; */
}

.form_style.roller.is_unroll {
 max-height: 1000px;

}

.form_style.roller .unroll_btn {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 5px 10px;
  border-radius: 50px;
  background: #11387f;
  color: #fff;
  font-weight: 700;
  font-size: 13px !important;
}


/* .form_style::-webkit-scrollbar {
  display: block !important;
  width: 5px;
} */

.form_style.border_none {
  border: none;
  padding: 0;
}
.form_style mark {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  color: #555555;
  font-weight: 500;
}
.form_style a {
  color: #11387f;
  /* border-bottom: 1px solid #11387f; */
  text-decoration: underline;
  font-weight: 700;
}

.basic-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.basic-form input:focus,
.basic-form select:focus {
  border: 1px solid #11387f;
}

.basic-form input,
.basic-form select {
  min-height: 48px;
  background-color: #fff;
  color: #666;
  font-weight: 400;
}

.basic-form input:valid
  /* ,.basic-form select:valid */ {
  background-color: #11387f;
  color: #fff;
  font-weight: 600;
}

.form_wrap {
  width: 100%;
  font-size: 15px;
  color: #333;
  overflow: hidden;
  font-weight: 600;
  padding: 20px 0 0;
}

.form_wrap li {
  float: left;
  box-sizing: border-box;
  padding: 7px 0.6%;
  position: relative;
}

.form_wrap li:first-child {
  border-top-width: 0;
}
.form_wrap li:nth-child(2) {
  border-top-width: 0;
}

.form_wrap li input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #11387f inset;
  -webkit-text-fill-color: #fff;
  font-weight: 600;
}

.form_wrap.survey input,
.form_wrap.survey textarea {
  font-size: 14px;
}

.form_wrap.survey li {
  float: left;
  box-sizing: border-box;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.form_wrap.marketing li {
  float: left;
  box-sizing: border-box;
  padding: 7px 0px;
  position: relative;
  font-size: 14px;
}

.form_wrap.marketing li:first-child {
  padding-top: 0;
}

.form_wrap.marketing li:last-child {
  padding-bottom: 0;
}

.form_wrap li select {
  box-sizing: border-box;
  min-height: 50px;
  padding: 5px 10px;
  border-radius: 5px;
  width: 100%;
  background: #fff url(../images/select_bg.png) 97% center no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  color: #666;
}

.form_wrap.survey li input[type="text"].etc_txt {
  box-sizing: border-box;
  display: inline-flex;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 5px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  color: #666;
  border: 1px solid #d5d5d5;
  height: 30px;
}

.form_wrap.survey li select {
  width: 100%;
}

.form_wrap span {
  display: inline-block;
}

.form_wrap span.reqired {
  width: 100%;
}

.form_wrap ul {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.form_wrap li.full {
  width: 100%;
}

.form_wrap li.full textarea {
  width: 100%;
  height: 125px;
  padding: 5px;
  border-radius: 5px;
}

.form_wrap li.full input[type="text"] {
  width: 100%;
}

.form_wrap li.half input[type="text"] {
  width: 100%;
}

.form_wrap li.half {
  width: calc(50% - 5px);
}

.form_wrap.survey li.half input[type="text"] {
  width: 100%;
}

.form_wrap li.full .select_wrap {
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  min-height: 58px;
  display: inline-block;
  position: relative;
  font-size: 12px;
  padding-left: 13px;
  vertical-align: top;
}

.form_wrap li.full .select_wrap.phone {
  width: 127px;
  background-position: right center;
}
.form_wrap li.full .select_wrap.email {
  width: 141px;
  margin-left: 5px;
}

.form_wrap li.full .select_wrap select {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding-left: 13px;
  color: #747474;
}

.form_wrap input.half,
.form_wrap select.half {
  width: calc(50% - 5px);
}

.form_wrap input.full,
.form_wrap select.full {
  width: 100%;
}

.survey_con {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 45px;
}

.survey_con:last-child {
  margin-bottom: 0;
  padding-bottom: 0px;
}

.survey_con::after {
  display: block;
  clear: both;
  content: "";
}

.survey_con * {
  font-weight: 400;
  font-size: 14px;
}

.survey_con li label.is_checked {
  color: #11387f;
}

.survey_con > span {
  font-weight: 600;
}

.survey_con.horizontal ul {
  gap: 15px;
  row-gap: 5px;
}

.survey_con.horizontal ul li:not(:last-child) {
  width: fit-content;
}

.all_check {
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-top: 10px;
  user-select: none;
}

.all_check input[type="checkbox"] {
  margin: 0;
}

.etc_field {
  white-space: nowrap;
}
.etc_field input[type="text"] {
  border: none;
  border-bottom: 1px solid #d5d5d5;
  border-radius: 0px;
}

.filebox {
  color: #7c7c7c;
  font-size: 15px;
  font-weight: lighter;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.filebox .upload-name {
  display: inline-block;
  padding: 0.5em 0.75em;
  min-height: 50px;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-bottom-color: #d5d5d5;
  border-radius: 0.25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #777;
}

.filebox .upload-name:first-child {
  width: calc(100% - 130px - 5px);
}

.filebox > label {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  vertical-align: middle;
  background-color: #fdfdfd;
  cursor: pointer;
  border: 1px solid #11387f;
  border-radius: 0.25em;
  height: 50px;
  color: #fff;
  background-color: #11387f;
}

.event_guide {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.8;
  margin-top: 5px;
}

@media (max-width: 1320px) {
  #register {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    padding: 0 4%;
  }

  #register .left,
  #register .right {
    width: 100%;
    float: none;
  }

  .form_wrap li.half {
    width: 100%;
    border-top-width: 1px;
  }
  .form_wrap li.half.none {
    border-top-width: 0px;
    padding: 0;
  }
  .form_wrap li.half input[type="text"],
  .form_wrap li.full textarea {
    width: 100%;
    max-width: 100%;
  }

  #survey .title br {
    display: none;
  }

  .survey_con {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  #register .title {
    font-size: 18px;
    padding-bottom: 5px;
    border-bottom: 2px solid #11387f;
  }

  #register .btn_wrap .btn {
    font-size: 16px;
    height: 45px;
  }

  .basic-form input,
  .basic-form select {
    min-height: 45px;
  }

  .form_wrap {
    padding: 12px 0 0;
  }
}

@media (max-width: 500px) {
  .survey_con.horizontal ul li:not(:last-child) {
    width: calc(50% - 7.5px);
  }
}

/* .survey_con.is_error {
  border-top: 1px solid #b30b37;
  border-bottom: 1px solid #b30b37;
} */

.form_wrap li.full textarea.is_error {
  border-color: #b30b37;
}
.form_wrap input.is_error,
.form_wrap select.is_error {
  border: 1px solid #b30b37;
  /* color: #b30b37 !important; */
}
.right label.is_error,
.survey_con.is_error > span {
  color: #b30b37;
  text-decoration: underline;
}

.form_wrap.survey li input[type="text"].etc_txt.is_error {
  border-color: #b30b37;
}
