/*---------------------------
form
---------------------------*/
.form {
  /*---------------------------
      checkbox
     ---------------------------*/
}
.form .required {
  background-color: #1b2d4d;
  display: block;
  width: 40px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.form input[type=text],
.form input[type=date],
.form input[type=time],
.form input[type=email],
.form input[type=tel],
.form input[type=number],
.form input[type=password],
.form textarea {
  border: 1px solid #000;
  padding: 10px;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
}
.form input[type=text].w30,
.form input[type=date].w30,
.form input[type=time].w30,
.form input[type=email].w30,
.form input[type=tel].w30,
.form input[type=number].w30,
.form input[type=password].w30,
.form textarea.w30 {
  width: 30%;
  min-width: 150px;
}
.form input[type=text].w50,
.form input[type=date].w50,
.form input[type=time].w50,
.form input[type=email].w50,
.form input[type=tel].w50,
.form input[type=number].w50,
.form input[type=password].w50,
.form textarea.w50 {
  width: 50%;
  min-width: 300px;
}
.form input[type=text].w90,
.form input[type=date].w90,
.form input[type=time].w90,
.form input[type=email].w90,
.form input[type=tel].w90,
.form input[type=number].w90,
.form input[type=password].w90,
.form textarea.w90 {
  width: 90%;
}
.form input[type=text].w100,
.form input[type=date].w100,
.form input[type=time].w100,
.form input[type=email].w100,
.form input[type=tel].w100,
.form input[type=number].w100,
.form input[type=password].w100,
.form textarea.w100 {
  width: 100%;
}
.form .plus_minus_btn {
  background-color: #f1f1f1;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
}
.form .plus_minus_btn:hover {
  background-color: #005bac;
  color: #fff;
}
.form input[type=file] {
  font-size: 0.9em;
  transform: translateX(20px);
}
.form .range_sec {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.form input[type=range] {
  appearance: none;
  cursor: pointer;
  background: #f1f1f1;
  height: 14px;
  border-radius: 10px;
  outline: 0;
  width: 50%;
}
.form input[type=range]::-webkit-slider-thumb {
  appearance: none;
  background: #0961af;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.form input[type=range]:active {
  background: #dff6ff;
}
.form ::placeholder {
  font-size: 11px;
}
.form .checkbox {
  position: relative;
}
.form .checkbox:not(:last-child) {
  margin-bottom: 5px;
}
.form .checkbox label {
  cursor: pointer;
  padding-left: 30px;
}
.form .checkbox label.none {
  content: "";
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  position: absolute;
}
.form .checkbox label.maker_img {
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
}
.form .checkbox input[type=checkbox] {
  display: none;
}
.form .checkbox input[type=checkbox]:checked ~ .mark {
  background: #e84606;
}
.form .checkbox input[type=checkbox]:checked ~ .mark ~ label {
  color: #e84606;
  font-weight: bold;
}
.form .checkbox .mark.none {
  pointer-events: none;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.form .checkbox .mark.none:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form .checkbox .mark {
  pointer-events: none;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.form .checkbox .mark:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form .select {
  display: inline-block;
  position: relative;
}
.form .select select {
  border: 1px solid #000;
  padding: 10px 30px 10px 10px;
  background-color: #f9f9f9;
  border-radius: 3px;
  font-size: 0.9em;
}
.form .select::after {
  content: "";
  background-color: #000;
  position: absolute;
  right: 8px;
  top: calc(50% - 5px);
  width: 6px;
  height: 10px;
  z-index: 10;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.form label.radio {
  border: 2px solid #ddd;
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  padding: 10px;
}
.form label.radio.active {
  cursor: auto;
  pointer-events: none;
}
.form label.radio.radio::before, .form label.radio.radio::after {
  border-radius: 50%;
}
.form label.radio::before, .form label.radio::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
}
.form label.radio::before {
  background-color: #fff;
  border: 1px solid #999;
  width: 20px;
  height: 20px;
  left: 5px;
  top: 2px;
}
.form label.radio::after {
  background-color: #e84606;
  opacity: 0;
  width: 14px;
  height: 14px;
  left: 8px;
}
.form input[type=radio]:checked ~ label {
  border: 2px solid #e84606;
  font-weight: bold;
  color: #e84606;
}
.form input[type=radio]:checked + label::after {
  opacity: 1;
}
.form input[type=radio] {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.form button {
  background-color: #1b2d4d;
  font-weight: bold;
  color: #fff;
  height: 100%;
  padding: 0 20px;
  cursor: pointer;
  border: none;
}
.form button.close {
  background-color: #f1f1f1;
  color: #000;
}
.form button:hover {
  opacity: 0.8;
}
.form button.blue {
  background-color: #1b2d4d;
}
.form button.green {
  display: none;
  background-color: #4a2d69;
}
.form button.type01 {
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 10px;
  margin: 20px auto;
  cursor: pointer;
}
.form button.type01.send {
  background-color: #1b2d4d;
}
.form button.type01.back {
  background-color: #999;
}
.form button.copy {
  background-color: var(--blue);
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 10px;
  margin: 20px auto;
  cursor: pointer;
}
.form button.default {
  background-color: #f1f1f1;
  display: block;
  color: #000;
  width: 80%;
  max-width: 300px;
  padding: 10px;
  margin: 20px auto;
  cursor: pointer;
}
.form button.delete {
  background-color: #555;
  color: #fff;
  width: 100%;
  border-radius: 3px;
  padding: 5px 0px;
}
.form .flex.item > li {
  width: 25%;
}
.form button.search_btn {
  cursor: pointer;
  display: block;
  background-color: #f1f1f1;
  color: #000;
  padding: 5px;
  border-radius: 5px;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  border: none;
  font-weight: bold;
  padding: 10px 10px 10px 20px;
}
.form button.search_btn span.icon {
  background-size: contain;
  left: 0;
  top: 0;
}
.form button.search_btn span.icon::before {
  content: "";
  width: 16px;
  height: 16px;
  left: -25px;
  top: calc(50% - 8px);
  position: absolute;
  background: url("/resources/images/icon/icon01.png") no-repeat;
  background-size: contain;
}
.form button.search_btn span.icon.luggage_icon::before {
  width: 16px;
  height: 16px;
  left: -25px;
  top: calc(50% - 8px);
  position: absolute;
  background: url("/resources/images/icon/icon07.png") no-repeat;
  background-size: contain;
}

/*---------------------------
datepicker
---------------------------*/
#ui-datepicker-div {
  z-index: 10000 !important;
  background-color: #fff;
  border: 1px solid #000;
}
#ui-datepicker-div .ui-datepicker-header {
  border: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  font-size: 1.1em;
  padding: 3px 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  top: calc(50% - 13px);
}
#ui-datepicker-div td a:hover, #ui-datepicker-div td a.ui-state-active {
  background-color: #005bac;
  color: #fff;
}

.ui-timepicker-wrapper {
  width: 200px;
  text-align: center;
}

.ui-datepicker {
  width: 350px !important;
}

.ui-datepicker .ui-datepicker-header {
  background-color: #c1dcf3;
}

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center !important;
  border: none !important;
}

#fileUpload_sec {
  background-color: #ddeaf5;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
#fileUpload_sec p {
  font-weight: 500;
  font-size: 0.9em;
  margin-bottom: 10px;
}
#fileUpload_sec.active {
  background-color: var(--orange);
}

.imgUpload_sec {
  margin-top: 30px;
}
.imgUpload_sec .preview {
  margin-top: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  gap: 10px;
}
.imgUpload_sec .preview .preview_img {
  width: 50%;
}
.imgUpload_sec .preview .preview_img .close_btn {
  background-color: #005bac;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  padding: 5px 20px;
  position: absolute;
  top: -10px;
  right: 10px;
  cursor: pointer;
  font-size: 0.9em;
}
.imgUpload_sec .preview .table {
  width: 48%;
  font-size: 0.8em;
}
.imgUpload_sec .template_preview {
  max-width: 400px;
}

/*---------------------------
login_sec
---------------------------*/
section.login_sec {
  margin: 0 auto;
}
section.login_sec .form {
  width: 70%;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #000;
  padding: 20px;
}
section.login_sec .table dt,
section.login_sec .table dd {
  padding: 15px 30px;
  vertical-align: middle;
}
section.login_sec .table dt {
  text-align: center;
  width: 30%;
}
section.login_sec .table dd {
  padding-left: 1em;
}