@charset "UTF-8";
.form-item {
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  .form-item {
    gap: 56px;
  }
}

.dateTime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.dateTime-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.dateTime-date,
.dateTime-time {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.dateTime-del {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 26px;
  height: 26px;
  background: url(../image/icon/trash.svg) no-repeat center/contain;
  cursor: pointer;
}

.dateTime-add {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  background: #aeb0b3 url(../image/icon/plus.svg) no-repeat center/55%;
  cursor: pointer;
}

.dateTime-add.-hide {
  visibility: hidden;
}

@media only screen and (min-width: 1024px) {
  .dateTime-del:hover {
    background-image: url(../image/icon/trash-bu.svg);
  }
  .dateTime-add {
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .dateTime-add:hover {
    background-color: #4672ab;
  }
}

@media only screen and (max-width: 1439px) {
  .dateTime {
    gap: 8px;
  }
  .dateTime-input {
    gap: 8px;
  }
  .dateTime-del {
    width: 22px;
    height: 22px;
  }
  .dateTime-add {
    width: 30px;
    height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .dateTime {
    gap: 6px;
  }
  .dateTime-input {
    gap: 6px;
  }
}

/* Eric edit : start ------------------------------------*/
.status {
  margin-bottom: 30px;
}

.status-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.status-line {
  width: 100%;
  height: 14px;
  background-color: #dddfe1;
  margin-bottom: 15px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.status-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #0072bc;
  border-radius: 7px;
  width: var(--progress-width, 0%);
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media only screen and (max-width: 576px) {
  .status-line {
    height: 10px;
  }
}

.status-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #68747f;
}

.status-item:nth-child(1) .status-icon {
  -webkit-mask: url(../image/icon/user.svg) no-repeat center/contain;
  mask: url(../image/icon/user.svg) no-repeat center/contain;
}

.status-item:nth-child(2) .status-icon {
  -webkit-mask: url(../image/icon/calendar.svg) no-repeat center/contain;
  mask: url(../image/icon/calendar.svg) no-repeat center/contain;
}

.status-item:nth-child(3) .status-icon {
  -webkit-mask: url(../image/icon/money.svg) no-repeat center/contain;
  mask: url(../image/icon/money.svg) no-repeat center/contain;
}

.status-item:nth-child(4) .status-icon {
  -webkit-mask: url(../image/icon/upload.svg) no-repeat center/contain;
  mask: url(../image/icon/upload.svg) no-repeat center/contain;
}

.status-icon {
  width: 30px;
  height: 30px;
  background-color: #68747f;
}

@media only screen and (max-width: 576px) {
  .status-icon {
    width: 24px;
    height: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .status-text {
    font-size: 12px;
  }
}

.status-item.status-active {
  color: #0072bc;
}

.status-item.status-active .status-icon {
  background-color: #0072bc;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.form-name {
  word-wrap: break-word;
  /* 舊版瀏覽器 */
  overflow-wrap: break-word;
  /* 新標準 */
}

.form .fieldset {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px 45px;
}

.form-tit {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.form-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-next, .form-prev, .form-button, .form-button-secondary {
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  width: auto;
  line-height: 2;
  padding: 0 1em;
  height: 2em;
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  background-color: #0072bc;
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  .form-next, .form-prev, .form-button, .form-button-secondary {
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .form-next:hover, .form-prev:hover, .form-button:hover, .form-button-secondary:hover {
    background-color: #6ab4cf;
  }
}

.form-button-secondary {
  background-color: #666;
}

@media only screen and (min-width: 1024px) {
  .form-button-secondary {
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .form-button-secondary:hover {
    background-color: #999;
  }
}

.form-prev {
  padding-right: 1em;
}

.form-prev::before {
  content: "";
  border-right: 0.6em solid #FFF;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.form-next {
  padding-left: 1em;
}

.form-next::after {
  content: "";
  border-left: 0.6em solid #FFF;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.form-sex {
  padding-top: 4px;
  gap: 1em;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-upload {
  display: none;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px 45px;
}

.form-button-auto {
  width: auto;
  padding: 0 1em;
}

.file-btn {
  line-height: 1.2;
  padding: .5em;
}

.phone .iti {
  width: 100%;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#online-payment .form-item:nth-child(1) {
  gap: 36px;
}

@media only screen and (max-width: 767px) {
  #online-payment .form-item:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .5em;
  }
}

@media only screen and (max-width: 767px) {
  #online-payment .form-item:nth-child(2).justify-content-center {
    text-align: center;
  }
}

#online-payment .form-name {
  width: 10.5em;
}

.notification-content {
  border: 1px solid #ccc;
  padding: 1em;
  margin-bottom: 1em;
}

.notification-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Eric edit : end ------------------------------------*/
/*# sourceMappingURL=online-consultation.css.map */
