@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.btn-container {
  display: flex;
  gap: 8px;
}

button.primary {
  background-color: #246FF4;
  color: #F7F9FB;
  border: none;
}
button.primary:hover {
  background-color: #0054E6;
  color: #F7F9FB;
  cursor: pointer;
}
button.primary:disabled {
  background-color: #9EBFFA;
  color: #F7F9FB;
  cursor: not-allowed;
}
button.secondary {
  background-color: #3E3E3E;
  color: #F8F8F8;
  border: none;
}
button.secondary:hover {
  background-color: #333333;
  color: #F8F8F8;
  cursor: pointer;
}
button.secondary:disabled {
  background-color: #BBBBBB;
  color: #F8F8F8;
  cursor: not-allowed;
}
button.neutral {
  background-color: #F3F4F4;
  color: #777777;
  border: none;
}
button.neutral:hover {
  background-color: #E4E6E8;
  color: #777777;
  cursor: pointer;
}
button.neutral:focus {
  background-color: #F3F4F4;
  color: #777777;
  border: 1px solid #BBBBBB;
  cursor: pointer;
}
button.white {
  background-color: rgb(255, 255, 255);
  color: #969696;
  border: 1px solid #DDDDDD;
}
button.white:hover {
  background-color: #F8F8F8;
  color: #969696;
  cursor: pointer;
}
button.white:focus {
  background-color: #F8F8F8;
  color: #969696;
  cursor: pointer;
}
button.white:disabled {
  background-color: rgb(255, 255, 255);
  color: #DDDDDD;
  cursor: not-allowed;
  border: 1px solid #EBECEE;
}
button.fixed-L {
  width: 8.75rem;
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.fixed-M {
  width: 6.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.hug-M {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}
button.hug-M img {
  margin-right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
}
button.hug-M {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.hug-S {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0rem 0.5rem;
  border-radius: 0.375rem;
  white-space: nowrap;
}
button.hug-S img {
  margin-right: 0.375rem;
  width: 1.25rem;
  height: 1.25rem;
}
button.hug-S {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
button.hug-XS {
  display: inline-flex;
  align-items: center;
  height: 1.625rem;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
}
button.hug-L {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.fill-S {
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  width: 100%;
  padding: 0.375rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.input-group label.input {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
}

input {
  padding: 8px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: rgb(0, 0, 0);
  outline: none;
}
input:placeholder {
  color: #AAAAAA;
}
input:focus {
  border-color: #246FF4;
}
input:disabled {
  background-color: #F8F8F8;
  color: #AAAAAA;
  cursor: not-allowed;
}
input.error {
  border-color: #EB4D3D;
}
input.success {
  border-color: #2ABB7F;
}
input[readonly] {
  background-color: #F8F8F8;
  color: #666666;
  cursor: not-allowed;
}

select:disabled {
  background-color: #F8F8F8;
  color: #AAAAAA;
  cursor: not-allowed;
}

.headline-h1 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
}

.headline-h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.headline-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.headline-h4 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.headline-h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.label-h1 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.label-h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.label-h3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.label-h4 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.label-h5 {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.label-h6 {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
}

.body-h1 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.body-h3 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.body-h4 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.body-h5 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
}

.body-h6 {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1rem;
}

.chip-blue {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
  padding: var(--Space-050, 2px) 8px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #EBF5FF;
  color: #246FF4;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: "Pretendard", sans-serif;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.main-content {
  width: 100%;
  height: 100%;
}

/* static/scss/components/_page-transition.scss */
body {
  transition: opacity 0.2s ease-in-out;
}

body.loading {
  opacity: 0;
}

/* 페이지 로드 시 스타일 깜빡임 방지 */
.reservations-date-selection__main-container {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.reservations-date-selection__main-container.loaded {
  opacity: 1;
}

/* DateRangePicker 스타일 미리 적용 */
#dateRangePickerInDateSelection .daterangepicker {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.header {
  border-bottom: 1px solid #EBECEE;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.main-content {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.lang-ko {
  font-family: "Pretendard", sans-serif;
}

.lang-zh-hans {
  font-family: "Noto Sans SC", "Noto Sans", sans-serif;
}

.lang-zh-hant {
  font-family: "Noto Sans TC", "Noto Sans", sans-serif;
}

.lang-ja {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

.lang-en {
  font-family: "Pretendard", sans-serif;
}

.gray-box {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: 8px;
  background: #F8F8F8;
}

.font-gray800 {
  color: #3E3E3E;
}

.font-gray600 {
  color: #666666;
}

.font-gray400 {
  color: #969696;
}

.font-gray300 {
  color: #AAAAAA;
}

.required-field {
  color: #246FF4;
}

input::-moz-placeholder {
  color: #AAAAAA;
}

input::placeholder {
  color: #AAAAAA;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid #DDD !important;
}

select,
textarea {
  padding: 8px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: rgb(0, 0, 0);
}

.border-input-box {
  border: 1px solid #DDDDDD;
  border-radius: 0.375rem;
  padding: 8px 12px;
  width: 100%;
  height: 40px;
}

.border-none-input {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  align-self: stretch;
}

.border-none-input:focus {
  outline: none;
  border: none !important;
}

.scroll-container {
  overflow-y: auto;
}

.modal-backdrop {
  z-index: 4000;
}

.modal {
  z-index: 4010;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chip-red {
  background-color: #FFEEEC;
  color: #EB4D3D;
  display: flex;
  padding: 2px 6px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 4px;
}

.chip-gray {
  background-color: #F3F4F4;
  color: #565656;
  display: flex;
  padding: 2px 6px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 9999px;
}

.chip-blue {
  background-color: #EBF5FF;
  color: #246FF4;
  display: flex;
  padding: 2px 6px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 4px;
}

.border-divider {
  width: 100%;
  height: 4px;
  background-color: #3E3E3E;
  margin: 16px 0 !important;
}

.thin-divider {
  width: 100%;
  height: 1px;
  background-color: #EBECEE;
  margin: 16px 0 !important;
}

.booking-engine-name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.room-type-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 3.5px;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.45);
}

.scroll-container:hover::-webkit-scrollbar-thumb,
.reservations-room-detail-modal-body-scroll:hover::-webkit-scrollbar-thumb,
*:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 0.25rem;
  border: 1px solid #DDDDDD !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  background-color: #FFF;
}

input[type=checkbox]:checked {
  border-color: #3E3E3E !important;
  background-color: #3E3E3E !important;
}

input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */