@charset "UTF-8";
/* _form.scss
--------------------------------------------------------------------------------------------------------*/
#xet-simple-board {
  /** 비밀글일때 비밀번호 요청 폼 */
  /** 삭제 폼 */
}
#xet-simple-board form {
  /* input type */
  /** 등록 버튼 */
}
#xet-simple-board form select {
  font-size: inherit;
  background-color: #fff;
}
#xet-simple-board form input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=file]),
#xet-simple-board form textarea {
  padding: 0 10px;
  font-size: inherit;
  width: 100%;
  height: 38px;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--board-input-border-color);
  outline: 0;
  background-color: #fff;
  color: var(--board-text-strong-color);
  transition: all 0.3s ease-out;
}
#xet-simple-board form textarea {
  padding: 10px;
  height: 200px;
  resize: vertical;
}
#xet-simple-board form select:focus,
#xet-simple-board form input:focus,
#xet-simple-board form textarea:focus {
  color: var(--board-text-strong-color) !important;
  border-color: var(--board-primary-color) !important;
}
#xet-simple-board form input.date,
#xet-simple-board form input[type=date],
#xet-simple-board form input[name=birthday_ui] {
  width: auto !important;
}
#xet-simple-board form input[type=tel]:not(.rx_ev_tel_v2) {
  width: 60px !important;
}
#xet-simple-board form input[type=tel].rx_ev_tel_v2 {
  width: auto !important;
}
#xet-simple-board form input[name=phone_number] {
  width: 100% !important;
}
#xet-simple-board form input[type=file] {
  display: block;
}
#xet-simple-board form input[type=checkbox],
#xet-simple-board form input[type=radio] {
  margin: 0;
  padding: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}
#xet-simple-board form input[type=checkbox] + label,
#xet-simple-board form input[type=radio] + label {
  margin-left: 4px;
}
#xet-simple-board form input[disabled],
#xet-simple-board form textarea[disabled],
#xet-simple-board form select[disabled],
#xet-simple-board form input[readonly],
#xet-simple-board form select[readonly],
#xet-simple-board form textarea[readonly] {
  cursor: not-allowed;
  opacity: 1;
  /* required on iOS */
  color: #999 !important;
  background-color: #eee !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
#xet-simple-board form input[type=radio][readonly],
#xet-simple-board form input[type=checkbox][readonly] {
  background-color: transparent;
}
#xet-simple-board form button[type=submit] {
  min-width: 100px;
  min-height: 40px;
  border: 1px solid var(--board-input-border-color);
}
#xet-simple-board form button[type=submit].submit {
  background-color: var(--board-btn-border-color);
  color: #fff;
}
#xet-simple-board .input-password-form {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 !important;
  text-align: center;
  border: 0 !important;
  background-color: transparent !important;
}
#xet-simple-board .input-password-form .form__header {
  text-align: center;
  padding: 15px;
}
#xet-simple-board .input-password-form .form__header svg {
  width: 20px;
  height: 20px;
}
#xet-simple-board .input-password-form .form__header h2.title {
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--board-text-strong-color);
}
#xet-simple-board .input-password-form .control-group {
  margin-bottom: 10px;
}
#xet-simple-board .input-password-form .control-group .controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
#xet-simple-board .input-password-form input[type=password] {
  flex: 1;
  min-width: 160px;
}
#xet-simple-board .input-password-form input[type=submit] {
  height: 38px !important;
}
#xet-simple-board .input-password-form button[type=submit] {
  vertical-align: top;
  min-width: auto;
}
#xet-simple-board .delete-form {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid var(--board-border-color);
}
#xet-simple-board .delete-form .form__header {
  text-align: center;
  padding: 15px;
}
#xet-simple-board .delete-form .form__header svg {
  width: 20px;
  height: 20px;
}
#xet-simple-board .delete-form .form__header h2.title {
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--board-text-strong-color);
}
#xet-simple-board .delete-form .form__body {
  text-align: center;
  padding: 15px;
}
#xet-simple-board .delete-form .form__body div {
  margin: 0 !important;
}
#xet-simple-board .delete-form .form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid var(--board-border-color);
}
#xet-simple-board .delete-form .form__footer button {
  flex: 1;
  border-radius: 0;
  height: 60px;
  color: var(--board-text-strong-color);
}

/* responsive
-------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  #xet-simple-board {
    /** 삭제 폼 */
  }
  #xet-simple-board .delete-form {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -100%);
  }
}