@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

:root {
  --color-1: #0e1a44; /* theme color 1 */
  --color-2: #2372dd; /* theme color 2 */
  --color-3: #f7f8fc; /* theme color 3 */
  --color-4: #2c2c2e; /* theme color 4 */
  --color-5: #ffffff; /* theme color 5 */
  --color-default: #0e1a44; /* components default color */
  --color-hover: #000d3d; /* components hover color */
  --color-placeholder: #b5b5b5; /* input placeholder color */
  --color-readonly: #aaaaaa; /* input readonly color */
  --color-disabled: #bbbbbb; /* components disabled color */
  --color-valid: #33af6d; /* input valid color */
  --color-invalid: #fc346a; /* input invalid color */
  --color-success: #33af6d;
  --color-warning: #f5a623;
  --color-error: #fc346a;
  --color-border: #eeeeee;
  --color-background: #ffffff;
  --text-color-1: #000000;
  --text-color-2: #777777;
  --text-color-3: #b5b5b5;
  --text-color-4: #cccccc;
  --text-color-5: #ffffff;
}

*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit;
  color: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", arial, sans-serif;
  font-size: 62.5%;
  box-sizing: border-box;
  color: var(--text-color-1);
}

#loading {
  width: 100%;
  height: 100vh;
  background: rgba(142, 142, 147, 0.4);
  position: fixed;
  z-index: 1000;
}

:where(#root, .swal2-container) ul,
:where(#root, .swal2-container) ol {
  list-style: none;
}

:where(#root, .swal2-container) a {
  text-decoration: none;
  padding-bottom: 0.8rem;
}

:where(#root, .swal2-container) {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:where(#root, .swal2-container) .container {
  width: 1200px;
  padding: 0px 1rem;
  margin: 0px auto;
}

/* input: default */
:where(#root, .swal2-container) input {
  height: 40px;
  padding: 1rem 2rem;
}

:where(#root, .swal2-container) textarea {
  padding: 1rem 2rem;
}

:where(#root, .swal2-container) input,
:where(#root, .swal2-container) textarea {
  font-family: inherit;
  font-size: 1.6rem;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}

:where(#root, .swal2-container) input:focus,
:where(#root, .swal2-container) textarea:focus {
  outline: none;
  border-color: var(--color-2);
}

:where(#root, .swal2-container) input::placeholder,
:where(#root, .swal2-container) textarea::placeholder {
  font-size: 1.4rem;
  color: var(--color-placeholder);
}

:where(#root, .swal2-container) input:read-only,
:where(#root, .swal2-container) textarea:read-only {
  color: var(--color-readonly);
}

:where(#root, .swal2-container) input:read-only:focus,
:where(#root, .swal2-container) textarea:read-only:focus {
  border-color: var(--color-border);
}

:where(#root, .swal2-container) input:disabled,
:where(#root, .swal2-container) textarea:disabled {
  color: var(--color-disabled);
}

:where(#root, .swal2-container) input.is-valid,
:where(#root, .swal2-container) textarea.is-valid {
  color: var(--color-valid);
  border: 2px solid var(--color-valid);
}

:where(#root, .swal2-container) input.is-invalid,
:where(#root, .swal2-container) textarea.is-invalid {
  color: var(--color-invalid);
  border: 2px solid var(--color-invalid);
}

:where(#root, .swal2-container) textarea {
  min-height: 100px;
  resize: none;
}

/* checkbox */
:where(#root, .swal2-container) label.checkbox {
  height: 1.6rem;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:where(#root, .swal2-container) label.checkbox > input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

:where(#root, .swal2-container)
label.checkbox
> input[type="checkbox"]
~ .mark {
  width: 1.4rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
}

:where(#root, .swal2-container)
label.checkbox
> input[type="checkbox"]
~ .mark::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  font-size: 1.6rem;
  color: var(--color-border);
  vertical-align: middle;
}

:where(#root, .swal2-container)
label.checkbox
> input[type="checkbox"]:checked
~ .mark::before {
  content: "\f14a";
  color: var(--color-1);
  font-weight: bold;
}

:where(#root, .swal2-container)
label.checkbox
> input[type="checkbox"]:disabled
~ .text {
  color: var(--color-disabled);
}

:where(#root, .swal2-container)
label.checkbox
> input[type="checkbox"]:disabled
~ .mark::before {
  color: var(--color-disabled);
}

:where(#root, .swal2-container)
label.checkbox
> input[type="checkbox"]:checked:disabled
~ .mark {
  color: var(--color-disabled);
}

/* radio button */
:where(#root, .swal2-container) label.radio-button {
  font-size: 1.4rem;
  line-height: 1.5rem;
  padding-left: 2rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:where(#root, .swal2-container) label.radio-button > input[type="radio"] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

:where(#root, .swal2-container) label.radio-button > .mark {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  position: absolute;
  left: 0;
}

:where(#root, .swal2-container) label.radio-button .mark:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background: white;
  border-radius: 50%;
  display: none;
  position: absolute;
  top: 3px;
  left: 3px;
}

:where(#root, .swal2-container)
label.radio-button:hover
input[type="radio"]
~ .mark {
  border-color: var(--color-2);
}

:where(#root, .swal2-container)
label.radio-button
> input[type="radio"]:checked
~ .mark:after {
  background: var(--color-2);
  display: block;
}

:where(#root, .swal2-container)
label.radio-button
> input[type="radio"]:disabled
~ .text {
  color: var(--color-disabled);
}

:where(#root, .swal2-container)
label.radio-button
> input[type="radio"]:disabled
~ .mark {
  background: var(--color-disabled);
}

:where(#root, .swal2-container)
label.radio-button:hover
> input[type="radio"]:disabled
~ .mark {
  background: var(--color-disabled);
  border-color: var(--color-disabled);
}

:where(#root, .swal2-container)
label.radio-button
> input[type="radio"]:checked:disabled
~ .mark {
  background: var(--color-disabled);
  border-color: var(--color-disabled);
}

/* switch */
:where(#root, .swal2-container) label.switch {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

:where(#root, .swal2-container) label.switch > input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

:where(#root, .swal2-container) label.switch > input[type="checkbox"] ~ .text {
  font-size: 1.4rem;
  font-weight: 400;
}

:where(#root, .swal2-container) label.switch > input[type="checkbox"] ~ .mark {
  width: 48px;
  height: 24px;
  border-radius: 24px;
  background: #aeaeb2;
  position: relative;
}

:where(#root, .swal2-container)
label.switch
> input[type="checkbox"]:checked
~ .mark {
  background: #34c759;
}

:where(#root, .swal2-container)
label.switch
> input[type="checkbox"]
~ .mark::before {
  content: "";
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 18px;
  position: absolute;
  top: 3px;
  left: 3px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

:where(#root, .swal2-container)
label.switch
> input[type="checkbox"]:checked
~ .mark::before {
  transform: translateX(24px);
}

/* select box */
:where(#root, .swal2-container) label.select-box {
  height: 40px;
  position: relative;
  display: block;
}

:where(#root, .swal2-container) label.select-box::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 1.4rem;
  font-weight: bold;
  position: absolute;
  top: 13px;
  right: 10px;
}

:where(#root, .swal2-container) label.select-box > select {
  height: 40px;
  font-family: inherit;
  font-size: 1.6rem;
  color: var(--text-color-1);
  padding-left: 2rem;
  padding-right: 4rem;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:where(#root, .swal2-container) label.select-box > select:focus {
  outline: none;
  border-color: var(--color-2);
}

/* button */
:where(#root, .swal2-container) [class^="button"] {
  width: 100px;
  height: 40px;
  font-family: inherit;
  font-size: 1.4rem;
  color: var(--text-color-5);
  background: var(--color-default);
  padding: 0px;
  border: 1px solid var(--color-default);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

:where(#root, .swal2-container) [class^="button"]:hover {
  background: var(--color-hover);
  border-color: var(--color-hover);
}

:where(#root, .swal2-container) [class^="button"].is-disabled {
  color: var(--text-color-2) !important;
  background: var(--color-disabled) !important;
  border-color: var(--color-disabled) !important;
  cursor: default;
}

:where(#root, .swal2-container) .button--red {
  background: #ff355e;
  border-color: #ff355e;
}

:where(#root, .swal2-container) .button--red:hover {
  background: #fd2550;
  border-color: #fd2550;
}

:where(#root, .swal2-container) .button--blue {
  background: #2372dd;
  border-color: #2372dd;
}

:where(#root, .swal2-container) .button--blue:hover {
  background: #2372dd;
  border-color: #2372dd;
}

/* table */
:where(#root, .swal2-container) [class^="table"] {
  width: 100%;
  font-size: 1.3rem;
  padding-bottom: 1rem;
  overflow-x: auto;
}

:where(#root, .swal2-container) [class^="table"] > table {
  width: 100%;
  border-spacing: 0px;
  border-top: 2px solid var(--color-1);
}

:where(#root, .swal2-container) [class^="table"] > table tr {
  height: 46px;
}

:where(#root, .swal2-container) [class^="table"] > table th {
  font-weight: bold;
  padding: 1rem 0px;
  border-bottom: 1px solid var(--color-border);
}

:where(#root, .swal2-container) [class^="table"] > table th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

:where(#root, .swal2-container) [class^="table"] > table td {
  height: 46px;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
}

:where(#root, .swal2-container) [class^="table"] > table td:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

:where(#root, .swal2-container) [class^="table"] > table td input,
:where(#root, .swal2-container) [class^="table"] > table td textarea,
:where(#root, .swal2-container) [class^="table"] > table td select {
  width: 100%;
  min-width: 100%;
}

/* 약관 */
:where(#root, .swal2-container) [class^="terms"] dl {
  font-size: 1.2rem;
  padding: 1rem 0px;
}

:where(#root, .swal2-container) [class^="terms"] dl > dt {
  font-size: 1em;
}

:where(#root, .swal2-container) [class^="terms"] dl > dt:not(:last-child) {
  padding-bottom: 1em;
}

:where(#root, .swal2-container) [class^="terms"] dl > dd {
  font-size: 0.9em;
  padding: 0.4em 1.2em 0.4em 1.2em;
  background: var(--color-5);
  border: 1px solid var(--color-border);
}

:where(#root, .swal2-container) [class^="terms"] dl > dt + dd {
  padding-top: 0.8em;
}

:where(#root, .swal2-container) [class^="terms"] dl > dd + dd {
  padding-top: 0.2em;
  border-top: none;
}

:where(#root, .swal2-container) [class^="terms"] dl > dd:last-child {
  padding-bottom: 0.8em;
}

:where(#root, .swal2-container) [class^="terms"] dl > dd:not(:last-child) {
  border-bottom: none;
}

:where(#root, .swal2-container) [class^="terms"] dl dl {
  padding: 0px;
}

:where(#root, .swal2-container) [class^="terms"] dl dl > dt,
:where(#root, .swal2-container) [class^="terms"] dl dl > dt:not(:last-child) {
  font-size: 0.9em;
  padding-top: 0em;
  padding-bottom: 0.4em;
}

:where(#root, .swal2-container) [class^="terms"] dl dl > dd,
:where(#root, .swal2-container) [class^="terms"] dl dl > dd + dd,
:where(#root, .swal2-container) [class^="terms"] dl dl > dd:last-child {
  font-size: 0.8em;
  padding: 0px 0.5em 0.3em;
  border: none;
}

:where(#root, .swal2-container) [class^="terms"] table {
  font-size: 1.3rem;
}

/* 아이콘 */
:where(#root, .swal2-container) [class^="icon"] {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

:where(#root, .swal2-container) [class^="icon"]::before {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

:where(#root, .swal2-container) .icon--hotel::before {
  background-image: url(/resources/images/common/icon/hotel.svg);
}

:where(#root, .swal2-container) .icon--metro-map::before {
  background-image: url(/resources/images/common/icon/metro-map.svg);
}

:where(#root, .swal2-container) .icon--won-sign::before {
  background-image: url(/resources/images/common/icon/won-sign.svg);
}

:where(#root, .swal2-container) .icon--bookmark::before {
  background-image: url(/resources/images/common/icon/bookmark.svg);
}

:where(#root, .swal2-container) .icon--hand-point-right::before {
  background-image: url(/resources/images/common/icon/hand-point-right.svg);
}

/* tooltip */
:where(#root, .swal2-container) [class^="tooltip"] {
  display: inline-block;
}

:where(#root, .swal2-container) [class^="tooltip"] > span {
  cursor: pointer;
}

:where(#root, .swal2-container) [class^="tooltip"]:hover > span {
  color: var(--color-2);
}

:where(#root, .swal2-container) [class^="tooltip"] > span + div {
  position: absolute;
  display: none;
  z-index: 1;
}

:where(#root, .swal2-container) [class^="tooltip"]:hover > span + div {
  background: white;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  display: block;
  transform: translate(-25px, 13px);
}

:where(#root, .swal2-container) [class^="tooltip"] > span + div::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 15px solid var(--color-border);
  border-top: 0px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -15px;
  left: 20px;
}

:where(#root, .swal2-container) [class^="tooltip"] > span + div::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 15px solid white;
  border-top: 0px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -13px;
  left: 20px;
}

/* popup */
#popup {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
}

#popup ul,
#popup ol {
  list-style: none;
}

#main {
  width: 100%;
  min-width: 1200px;
  padding: 0 0 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* air datepicker */
.air-datepicker {
  --adp-width: 350px;
  --adp-padding: 30px;
  --adp-font-family: "Noto Sans KR", "Apple SD Gothic Neo", arial, sans-serif;
  --adp-font-size: 14px;
  --adp-day-name-color: #000000;
  --adp-cell-background-color-selected: #2372dd;
  --adp-cell-background-color-selected-hover: #2372dd;
  --adp-cell-background-color-in-range: #d3e3f8;
  --adp-cell-background-color-in-range-hover: #d3e3f8;
  --adp-day-cell-height: 40px;
  --adp-border-radius: 10px;
}

.air-datepicker-body--day-name:first-child {
  color: #fc346a;
}

.air-datepicker-cell.-current-:not(.-in-range-) {
  color: #2372dd;
  background: #d3e3f8;
}

.air-datepicker-nav {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
}

/* autocomplete */
.ui-menu {
  width: 400px;
  background: white;
  font-size: 1.4rem;
  padding: 1.5rem 3rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin: 0;
  display: block;
  list-style: none;
}

.ui-menu .ui-menu-item .ui-state-active {
  color: blue;
}

.ui-menu .ui-menu-item {
  padding: 0.5rem 0px;
  margin: 0;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ui-menu .ui-menu-item:hover {
  color: var(--color-2);
}

.ui-menu .ui-menu-item::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}

.ui-helper-hidden-accessible {
  display: none;
}

/* sweetalert2 */
.swal2-container.swal2-backdrop-show,
.swal2-container .swal2-noanimation {
  background: rgba(142, 142, 147, 0.4);
}

.swal2-container:has(.swal2-ajax) {
  z-index: 960;
}

.swal2-container .swal2-popup {
  padding: 2.4rem 3rem;
  border-radius: 8px;
}

.swal2-container .swal2-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color-1);
  padding: 0;
  margin: 0 0 2rem;
}

.swal2-container .swal2-close {
  width: 20px;
  height: 20px;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;

  padding: 0;
  border-radius: 50%;
  margin: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.swal2-container .swal2-close::before {
  content: "\f057";
  font-family: "Font Awesome 6 Free";
  font-size: 2rem;
  color: #eeeeee;
  font-weight: bold;
  position: absolute;
}

.swal2-container .swal2-close:focus {
  box-shadow: none;
}

.swal2-container .swal2-html-container {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 2rem;
}

.swal2-container .swal2-actions {
  width: 100%;
  margin: 0;
  display: flex;
  gap: 0.8rem;
}

.swal2-container .swal2-styled,
.swal2-container .swal2-styled:focus {
  outline: 0;
  box-shadow: none;
}

.swal2-container .swal2-styled {
  flex: 1;
  height: 43px;
  font-size: 1.4rem;
  background: var(--color-1);
  margin: 0;
}

.swal2-actions .swal2-cancel {
  color: var(--text-color-1);
  background: white;
  border: 1px solid var(--color-border);
}

.swal2-actions .swal2-cancel:hover {
  background: white;
}

/* swal2 autocomplete */
.swal2-autocomplete {
  z-index: 970;
  width: 220px;
}

.swal2-autocomplete .ui-menu-item::before {
  display: none;
}
