@charset "UTF-8";
/*
컴파일 코드
npx sass --watch assets/styles/scss:assets/styles/css
*/
/* Global */
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-Thin.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-ExtraLight.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-Light.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-Regular.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-Medium.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-SemiBold.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-Bold.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-ExtraBold.woff) format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  src: local("Pretendard"), url(/assets/fonts/Pretendard-Black.woff) format("woff2");
}
.toast__wrapper {
  user-select: text;
  display: flex;
  align-items: center;
  width: 80%;
  min-width: 280px;
  max-width: 450px;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 10px);
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1490196078);
  transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
}
.toast__wrapper > .toast__icon_wrapper {
  width: 40px;
  height: 40px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.toast__wrapper > .toast__message {
  width: calc(100% - 74px);
  padding-right: 30px;
}
@media (max-width: 410px) {
  .toast__wrapper > .toast__message {
    padding-right: 10px;
  }
}
.toast__wrapper > .toast__message .toast__message_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 4px;
  color: #212121;
}
.toast__wrapper > .toast__message .toast__message_content {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
  word-break: keep-all;
  user-select: text;
}
.toast__wrapper > .toast__close_btn {
  align-self: flex-start;
  cursor: pointer;
}
.toast__wrapper > .__close {
  margin-left: 20px;
  cursor: pointer;
}

.toast__wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.toast__wrapper.toast--error {
  border: 1px solid #ff3b30;
}
.toast__wrapper.toast--error .toast__icon_wrapper {
  background-color: #fff0f0;
}
.toast__wrapper.toast--error .toast__icon_wrapper .toast__icon {
  content: url(/assets/images/common/toast/error.svg);
}

.toast__wrapper.toast--info {
  border: 1px solid #387dff;
}
.toast__wrapper.toast--info .toast__icon_wrapper {
  background-color: #eef7ff;
}
.toast__wrapper.toast--info .toast__icon_wrapper .toast__icon {
  content: url(/assets/images/common/toast/info.svg);
}

.toast__wrapper.toast--success {
  border: 1px solid #f78c9f;
}
.toast__wrapper.toast--success .toast__icon_wrapper {
  background-color: #fef4f5;
}
.toast__wrapper.toast--success .toast__icon_wrapper .toast__icon {
  content: url(/assets/images/common/toast/success.svg);
}

.toast__wrapper.toast--warning {
  border: 1px solid #ffbc35;
}
.toast__wrapper.toast--warning .toast__icon_wrapper {
  background-color: #fff8e1;
}
.toast__wrapper.toast--warning .toast__icon_wrapper .toast__icon {
  content: url(/assets/images/common/toast/warning.svg);
}

.input_wrapper .__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #212121;
  margin-bottom: 5px;
}
.input_wrapper .__input {
  position: relative;
  height: 48px;
}
.input_wrapper .__input > input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  padding: 0 36px 0 16px;
  color: #212121;
  caret-color: #f78c9f;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  background: #f8f8f8;
  font-family: "Pretendard";
}
.input_wrapper .__input > input::placeholder {
  color: #aaaaaa;
}
.input_wrapper .__input > input:focus-visible {
  border: #f78c9f solid 1px;
  outline: none;
}
.input_wrapper .__input > input:disabled, .input_wrapper .__input > input:read-only {
  background: #eaeaea;
  color: #c8c8c8;
  border: 1px solid #eaeaea;
}
.input_wrapper .__input > input:disabled:focus-visible, .input_wrapper .__input > input:read-only:focus-visible {
  outline: none;
}
.input_wrapper .__input > .__error {
  display: none;
  position: absolute;
  top: 14px;
  right: 16px;
  width: 20px;
  height: 20px;
}
.input_wrapper .__input > .__search {
  position: absolute;
  left: 14px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
}
.input_wrapper .__selectbox {
  position: relative;
}
.input_wrapper .__selectbox.open .select_label {
  border-color: #f78c9f;
}
.input_wrapper .__selectbox.open .select_label .__down {
  transform: rotate(180deg);
}
.input_wrapper .__selectbox.open .select_label .__down > path {
  stroke: #f78c9f;
}
.input_wrapper .__selectbox.open .select_items {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.input_wrapper .__selectbox .select_label {
  position: relative;
  height: 48px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  padding: 0 14px 0 16px;
  color: #212121;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.input_wrapper .__selectbox .select_label > .__down {
  transition: 200ms ease-in all;
}
.input_wrapper .__selectbox .select_items {
  margin: 0px;
  position: absolute;
  border-radius: 5px;
  border: 1px solid #eaeaea;
  padding: 8px;
  top: 48px;
  left: 0;
  width: 100%;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
  transform: translateY(-28px);
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  max-height: 176px;
  overflow: auto;
}
.input_wrapper .__selectbox .select_items::-webkit-scrollbar {
  width: 20px;
}
.input_wrapper .__selectbox .select_items::-webkit-scrollbar-thumb {
  background-color: #eaeaea;
  border-radius: 100px;
  border: 8px solid #ffffff;
}
.input_wrapper .__selectbox .select_items::-webkit-scrollbar-track {
  background-color: #ffffff;
}
.input_wrapper .__selectbox .select_items > .select_item {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #aaaaaa;
  padding: 11px 8px;
  margin-bottom: 0px;
  cursor: pointer;
  border-radius: 5px;
}
.input_wrapper .__selectbox .select_items > .select_item:hover {
  background-color: #fef4f5;
  color: #f78c9f;
}
.input_wrapper .__selectbox .select_items > .select_item.active {
  color: #f78c9f;
}
.input_wrapper .__message {
  margin-top: 8px;
  display: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.input_wrapper.input_error .__input > input {
  color: #ff3b30;
  border: 1px solid #ff3b30;
}
.input_wrapper.input_error .__input > input::placeholder {
  color: #ff3b30;
}
.input_wrapper.input_error .__input > .__error {
  display: block;
}
.input_wrapper.input_error .__message {
  color: #ff3b30;
}
.input_wrapper.input_error .__message.show {
  display: block;
}
.input_wrapper.search_input .__input > input {
  padding: 0 14px 0 44px;
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  line-height: 36px;
}
.input_wrapper.search_input .__input > input::placeholder {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  line-height: 36px;
}

/* Custom Button */
button {
  cursor: pointer;
  border: none;
}
button:focus-visible, button:focus {
  outline: none !important;
}
button.primary_btn {
  border-radius: 5px;
  color: #ffffff;
  background-color: #f78c9f;
}
button.primary_btn:disabled {
  background-color: #fbcad3;
}
button.primary_btn--outline {
  border-radius: 5px;
  border: 1px solid #f78c9f;
  background-color: #ffffff;
  color: #f78c9f;
}
button.neutral_btn--outline {
  border-radius: 5px;
  border: 1px solid #dfdede;
  background-color: #ffffff;
  color: #666666;
}
button.neutral_btn {
  border-radius: 5px;
  color: #ffffff;
  background-color: #212121;
}
button.otp_btn {
  width: 100px !important;
  margin: 0 auto 0 0;
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 400 !important;
}

/* Custom Checkbox */
.checkbox_wrapper {
  display: inline-flex;
  align-items: center;
  color: #666666;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.checkbox_wrapper input[type=checkbox] {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  background: #ffffff no-repeat center center;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/images/common/input/checkbox_unchecked.svg");
  background-size: contain;
}
.checkbox_wrapper input[type=checkbox]:checked {
  background-image: url("/assets/images/common/input/checkbox_checked.svg");
}
.checkbox_wrapper input[type=checkbox]:checked + span {
  color: #f78c9f;
}

/* Custom Radio */
.radio_wrapper {
  display: inline-flex;
  align-items: center;
  color: #666666;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.radio_wrapper input[type=radio] {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  background: #ffffff no-repeat center center;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/images/common/input/radio_unchecked.svg");
  background-size: contain;
}
.radio_wrapper input[type=radio]:checked {
  background-image: url("/assets/images/common/input/radio_checked.svg");
}
.radio_wrapper input[type=radio]:checked + span {
  color: #f78c9f;
}
.radio_wrapper input[type=radio]:disabled {
  background-image: url("/assets/images/common/input/radio_disabled.svg");
}

.radio_wrapper--mobile {
  display: inline-flex;
  flex: 1;
}
.radio_wrapper--mobile .radio_item {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #aaaaaa;
  border: 1px solid #dfdede;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio_wrapper--mobile input[type=radio] {
  display: none;
}
.radio_wrapper--mobile input[type=radio]:checked + .radio_item {
  color: #f78c9f;
  border: 1px solid #f78c9f;
}

/* Custom Datepicker */
.date_picker_box {
  display: flex;
  position: relative;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.date_picker_box .date_input_box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 7px 14px;
  background-color: #f8f8f8;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  max-width: 116px;
  cursor: pointer;
  overflow: hidden;
  transition: all ease-in 50ms;
}
.date_picker_box .date_input_box.active {
  border: 1px solid #f78c9f;
}
.date_picker_box .date_input_box.disabled {
  background-color: #eaeaea;
}
.date_picker_box .date_input_box.disabled img {
  content: url(/assets/images/common/datepicker/calendar--disabled.svg);
}
.date_picker_box .date_input_box.disabled input.date_picker_date {
  color: #c8c8c8;
}
.date_picker_box .date_input_box img.calendr_icon {
  width: 20px;
  height: 20px;
}
.date_picker_box .date_input_box input.date_picker_date {
  text-align: right;
  border: none;
  outline: none;
  background-color: transparent;
  max-width: 65px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #666666;
  caret-color: transparent;
  cursor: pointer;
  padding: 0px;
  font-family: "Pretendard";
}
.date_picker_box .date_input_box input.date_picker_date:disabled {
  background-color: transparent;
}
.date_picker_box .date_input_box button.ui-datepicker-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  opacity: 0;
  cursor: pointer;
}
.date_picker_box > span {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #3d3d3d;
  width: 7px;
}

#ui-datepicker-div {
  border-radius: 10px;
  border: 1px solid rgb(234, 234, 234);
  padding: 16px;
  width: auto;
  height: auto;
  font-family: "Pretendard";
}
#ui-datepicker-div .ui-datepicker-header {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  background-image: none !important;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 0;
  box-sizing: border-box;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev {
  transform: translateY(11%);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-next {
  transform: translateY(11%);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-prev:hover, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-next:hover {
  border: none;
  background-color: transparent;
  top: 2px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-prev:hover.ui-datepicker-next:hover, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next:hover.ui-datepicker-next:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev:hover.ui-datepicker-next:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-next:hover.ui-datepicker-next:hover {
  right: 2px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-prev:hover.ui-datepicker-prev:hover, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next:hover.ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev:hover.ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-next:hover.ui-datepicker-prev:hover {
  left: 2px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  font-weight: normal;
  align-items: center;
  justify-content: center;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before {
  background-image: url("/assets/images/common/datepicker/datePickerPrevIcon.svg");
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
  content: "";
  background-image: url("/assets/images/common/datepicker//datePickerNextIcon.svg");
}
#ui-datepicker-div table.ui-datepicker-calendar {
  margin: 0;
}
#ui-datepicker-div table.ui-datepicker-calendar * {
  color: rgb(132, 132, 132);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}
#ui-datepicker-div table.ui-datepicker-calendar thead tr th {
  width: 36px;
  height: 30.4px;
  padding: 0;
}
#ui-datepicker-div table.ui-datepicker-calendar a.ui-state-default {
  text-align: center;
  border: none;
  background: transparent;
  color: rgb(69, 69, 74);
}
#ui-datepicker-div table.ui-datepicker-calendar a.ui-state-active {
  color: #f78c9f;
}
#ui-datepicker-div table.ui-datepicker-calendar a.ui-state-highlight {
  background-color: #f78c9f;
  color: #fff;
  border-radius: 5px;
}
#ui-datepicker-div table.ui-datepicker-calendar td.ui-datepicker-other-month span,
#ui-datepicker-div table.ui-datepicker-calendar td.ui-state-disabled span {
  background-color: transparent;
  border: none;
  text-align: center;
}
#ui-datepicker-div table.ui-datepicker-calendar a,
#ui-datepicker-div table.ui-datepicker-calendar span,
#ui-datepicker-div table.ui-datepicker-calendar td {
  padding: 0;
  width: 36px;
  height: 30.4px;
}
#ui-datepicker-div table.ui-datepicker-calendar a.ui-datepicker-week-end:last-child a,
#ui-datepicker-div table.ui-datepicker-calendar span.ui-datepicker-week-end:last-child a,
#ui-datepicker-div table.ui-datepicker-calendar td.ui-datepicker-week-end:last-child a {
  color: #ff3b30;
}
#ui-datepicker-div table.ui-datepicker-calendar a.ui-datepicker-week-end:last-child a.ui-state-active,
#ui-datepicker-div table.ui-datepicker-calendar span.ui-datepicker-week-end:last-child a.ui-state-active,
#ui-datepicker-div table.ui-datepicker-calendar td.ui-datepicker-week-end:last-child a.ui-state-active {
  color: #f78c9f;
}
#ui-datepicker-div table.ui-datepicker-calendar a span, #ui-datepicker-div table.ui-datepicker-calendar a a,
#ui-datepicker-div table.ui-datepicker-calendar span span,
#ui-datepicker-div table.ui-datepicker-calendar span a,
#ui-datepicker-div table.ui-datepicker-calendar td span,
#ui-datepicker-div table.ui-datepicker-calendar td a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#ui-datepicker-div div.ui-datepicker-buttonpane {
  border: none;
  margin-top: 12px;
  padding: 0;
}
#ui-datepicker-div div.ui-datepicker-buttonpane button {
  background-color: transparent;
  border: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  padding: 0;
  font-family: Pretendard;
}
#ui-datepicker-div div.ui-datepicker-buttonpane button.ui-datepicker-current {
  color: #f78c9f;
  margin-left: 8px;
}
#ui-datepicker-div div.ui-datepicker-buttonpane button.ui-datepicker-close {
  color: #666666;
  margin-right: 8px;
}

/* Custom Dialog */
.dialog__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 21;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}
.dialog__wrapper.show {
  display: flex;
}
.dialog__wrapper .dialog__box {
  position: relative;
  background-color: #fff;
  padding: 24px;
  min-width: 448px;
  box-shadow: 15px 4px 20px 0px rgba(35, 39, 47, 0.1490196078);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}
.dialog__wrapper .dialog__box .box__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.dialog__wrapper .dialog__box .box__title > h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #212121;
  margin-bottom: 14px;
}
.dialog__wrapper .dialog__box .box__title > img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
}
.dialog__wrapper .dialog__box .box__title > img:hover {
  background-color: #f8f8f8;
}
.dialog__wrapper .dialog__box .box__contents {
  margin-bottom: 20px;
}
.dialog__wrapper .dialog__box .box__bottom {
  display: flex;
  justify-content: flex-end;
}
.dialog__wrapper .dialog__box .box__bottom button {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  width: 53px;
  height: 36px;
}
.dialog__wrapper .dialog__box .box__bottom .btn_close {
  margin-right: 5px;
}

/* Custom confirm */
.confirm__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 22;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}
.confirm__wrapper.show {
  display: flex;
}
.confirm__wrapper .confirm__box {
  width: 100%;
  max-width: 448px;
  margin: 0 20px;
  word-break: keep-all;
  position: relative;
  background-color: #fff;
  padding: 24px;
  box-shadow: 15px 4px 20px 0px rgba(35, 39, 47, 0.1490196078);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}
.confirm__wrapper .confirm__box .box__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.confirm__wrapper .confirm__box .box__title > h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #212121;
  margin-bottom: 14px;
}
.confirm__wrapper .confirm__box .box__title > img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
}
.confirm__wrapper .confirm__box .box__title > img:hover {
  background-color: #f8f8f8;
}
.confirm__wrapper .confirm__box .box__contents {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 20px;
  color: #666666;
}
.confirm__wrapper .confirm__box .box__bottom {
  display: flex;
  justify-content: flex-end;
}
.confirm__wrapper .confirm__box .box__bottom button {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  width: 53px;
  height: 36px;
}
.confirm__wrapper .confirm__box .box__bottom .btn_close {
  margin-right: 5px;
}

/* Custom Editor */
.editor_container {
  position: relative;
  display: flex;
  flex-direction: column;
}
.editor_container > .ql-toolbar {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #eaeaea !important;
  border-bottom: none !important;
  background: #f8f8f8;
}
.editor_container .ql-container {
  height: 413px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: 0px !important;
  border: 1px solid #eaeaea !important;
  background: #f8f8f8;
}
.editor_container .ql-container > .ql-editor {
  font-family: "Pretendard";
  padding: 20px 25px 20px 16px;
  overflow-y: scroll;
}
.editor_container .ql-container > .ql-editor p,
.editor_container .ql-container > .ql-editor blockquote,
.editor_container .ql-container > .ql-editor div,
.editor_container .ql-container > .ql-editor span,
.editor_container .ql-container > .ql-editor a,
.editor_container .ql-container > .ql-editor ul,
.editor_container .ql-container > .ql-editor li {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.editor_container .ql-container > .ql-editor .ql-size-huge {
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}
.editor_container .ql-container > .ql-editor .ql-size-large {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.editor_container .ql-container > .ql-editor .ql-size-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.editor_container .ql-container > .ql-editor h1 {
  font-size: 32px;
}
.editor_container .ql-container > .ql-editor h2 {
  font-size: 24px;
}
.editor_container .ql-container > .ql-editor h3 {
  font-size: 20px;
}
.editor_container .ql-container > .ql-editor h4 {
  font-size: 18px;
}
.editor_container .ql-container > .ql-editor h5 {
  font-size: 16px;
}
.editor_container .ql-container > .ql-editor h6 {
  font-size: 14px;
}
.editor_container .ql-container > .ql-editor strong {
  font-weight: bold;
}
.editor_container .ql-container > .ql-editor em {
  font-style: italic;
}
.editor_container .ql-container > .ql-editor u {
  text-decoration: underline;
}
.editor_container .ql-container > .ql-editor a {
  text-decoration: underline;
}
.editor_container .ql-container > .ql-editor blockquote {
  border-left: 4px solid #dfdede;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.editor_container .ql-container > .ql-editor ul {
  padding-left: 16px;
  list-style: none;
}
.editor_container .ql-container > .ql-editor li {
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
}
.editor_container .ql-container > .ql-editor li:before {
  margin: 0;
  content: "•";
  width: 16px;
  text-align: center;
  position: absolute;
  left: 0;
}
.editor_container .ql-toolbar.ql-snow .ql-formats {
  margin-right: 4px;
}
.editor_container .deadline-show {
  height: 315px;
}

@-webkit-keyframes slideIn {
  from {
    transform: translate(0, 500px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translate(0, 500px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 리스트 */
.contents__list table {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
}
.contents__list table > thead > tr {
  height: 48px;
}
.contents__list table > thead > tr > th {
  padding-top: 1px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  line-height: 46px;
  color: #212121;
  text-align: center;
  background-color: #fafafa;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
.contents__list table > tbody > tr {
  height: 48px;
}
.contents__list table > tbody > tr:hover {
  background-color: #fef4f5;
}
.contents__list table > tbody > tr:hover > td {
  color: #f78c9f;
}
.contents__list table > tbody > tr > td {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  padding: 8px 10px;
  user-select: text;
}
.contents__list table > tbody > tr > td > div {
  user-select: text;
}
.contents__list table > tbody > tr > td .btn_info_modi {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  width: 74px;
  height: 32px;
}
.contents__list table > tbody > tr > td.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contents__list table > tbody > tr > td .text-truncate--doubleline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2; /* 표시할 줄 수 설정 */
  max-height: 32px; /* 표시될 최대 높이 설정 */
}
.contents__list .pagination_wrapper {
  margin-top: 32px;
}
.contents__list .pagination_wrapper > .pagination_sic {
  margin: auto;
  display: flex;
  justify-content: center;
}
.contents__list .pagination_wrapper > .pagination_sic > li {
  border: 1px solid #dfdede;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #212121;
  height: 28px;
  min-width: 28px;
  margin-right: 16px;
}
.contents__list .pagination_wrapper > .pagination_sic > li:last-child {
  margin-right: 0px !important;
}
.contents__list .pagination_wrapper > .pagination_sic > li.pagination__first_btn {
  margin-right: 6px;
}
.contents__list .pagination_wrapper > .pagination_sic > li.pagination__next_btn {
  margin-right: 6px;
}
.contents__list .pagination_wrapper > .pagination_sic > li.active {
  border: 1px solid #f78c9f;
  color: #f78c9f;
  background-color: #fef4f5;
  display: flex;
  padding: 6px;
  justify-content: center;
  align-items: center;
}
.contents__list .pagination_wrapper > .pagination_sic > li > a {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #212121;
  width: 100%;
  display: flex;
  height: 100%;
  padding: 6px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.contents__list .pagination_wrapper > .pagination_sic > li > a:hover {
  text-decoration: none;
}

.contents__no_data {
  min-height: 528px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contents__no_data > img {
  width: 76px;
  margin-bottom: 24px;
}
.contents__no_data > div {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
}

/* 중간 버튼들*/
.contents__middle_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.contents__middle_btns .btn_excel {
  width: 98px;
  height: 36px;
  background-color: #3db967;
  color: white;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  border-radius: 5px;
}
.contents__middle_btns .selectbox__page_size .__selectbox .select_label {
  width: 87px;
  height: 36px;
  background: white;
  padding: 0 16px;
}
.contents__middle_btns .selectbox__page_size .__selectbox .select_label .__selection {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.contents__middle_btns .selectbox__page_size .__selectbox .select_items {
  top: 36px;
  padding-right: 8px;
}
.contents__middle_btns .selectbox__page_size .__selectbox .select_items .select_item {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 8px;
}
.contents__middle_btns .selectbox__page_size .__selectbox.open .select_label {
  border-color: #f78c9f;
}
.contents__middle_btns .selectbox__page_size .__selectbox.open .select_label .__down > path {
  stroke: #f78c9f;
}

/* 합계 박스 */
.contents__sum_row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.contents__sum_row .sum__col {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}
.contents__sum_row .sum__col .__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #848484;
}
.contents__sum_row .sum__col .__bottom {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212121;
}
.contents__sum_row .sum__col:first-child {
  background-color: #f78c9f;
}
.contents__sum_row .sum__col:first-child .__top {
  color: #f78c9f;
}
.contents__sum_row .sum__col:first-child .__top > svg > path {
  stroke: #f78c9f;
}

.loading {
  display: none;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
  color: #e17f91;
  z-index: 999;
}
.loading.show {
  display: inline-block;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.styled-label {
  color: #666666 !important;
  margin-bottom: 10px !important;
}

.styled-box {
  width: 100%;
  height: 48px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  padding: 14px 16px;
  color: #f78c9f;
  border: 1px solid #fef4f5;
  border-radius: 5px;
  background: #fef4f5;
}
.styled-box .separator {
  color: #fbcad3;
  margin: 0 7px;
}

/* Custom Style */
.pb-1px {
  padding-bottom: 1px;
}

.pb-2px {
  padding-bottom: 2px;
}

.pb-3px {
  padding-bottom: 3px;
}

.pb-4px {
  padding-bottom: 4px;
}

.pb-5px {
  padding-bottom: 5px;
}

.pb-6px {
  padding-bottom: 6px;
}

.pb-7px {
  padding-bottom: 7px;
}

.pb-8px {
  padding-bottom: 8px;
}

.pb-9px {
  padding-bottom: 9px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-11px {
  padding-bottom: 11px;
}

.pb-12px {
  padding-bottom: 12px;
}

.pb-13px {
  padding-bottom: 13px;
}

.pb-14px {
  padding-bottom: 14px;
}

.pb-15px {
  padding-bottom: 15px;
}

.pb-16px {
  padding-bottom: 16px;
}

.pb-17px {
  padding-bottom: 17px;
}

.pb-18px {
  padding-bottom: 18px;
}

.pb-19px {
  padding-bottom: 19px;
}

.pb-20px {
  padding-bottom: 20px;
}

.pb-21px {
  padding-bottom: 21px;
}

.pb-22px {
  padding-bottom: 22px;
}

.pb-23px {
  padding-bottom: 23px;
}

.pb-24px {
  padding-bottom: 24px;
}

.pb-25px {
  padding-bottom: 25px;
}

.pb-26px {
  padding-bottom: 26px;
}

.pb-27px {
  padding-bottom: 27px;
}

.pb-28px {
  padding-bottom: 28px;
}

.pb-29px {
  padding-bottom: 29px;
}

.pb-30px {
  padding-bottom: 30px;
}

.pb-31px {
  padding-bottom: 31px;
}

.pb-32px {
  padding-bottom: 32px;
}

.pb-33px {
  padding-bottom: 33px;
}

.pb-34px {
  padding-bottom: 34px;
}

.pb-35px {
  padding-bottom: 35px;
}

.pb-36px {
  padding-bottom: 36px;
}

.pb-37px {
  padding-bottom: 37px;
}

.pb-38px {
  padding-bottom: 38px;
}

.pb-39px {
  padding-bottom: 39px;
}

.pb-40px {
  padding-bottom: 40px;
}

.pb-41px {
  padding-bottom: 41px;
}

.pb-42px {
  padding-bottom: 42px;
}

.pb-43px {
  padding-bottom: 43px;
}

.pb-44px {
  padding-bottom: 44px;
}

.pb-45px {
  padding-bottom: 45px;
}

.pb-46px {
  padding-bottom: 46px;
}

.pb-47px {
  padding-bottom: 47px;
}

.pb-48px {
  padding-bottom: 48px;
}

.pb-49px {
  padding-bottom: 49px;
}

.pb-50px {
  padding-bottom: 50px;
}

.pb-51px {
  padding-bottom: 51px;
}

.pb-52px {
  padding-bottom: 52px;
}

.pb-53px {
  padding-bottom: 53px;
}

.pb-54px {
  padding-bottom: 54px;
}

.pb-55px {
  padding-bottom: 55px;
}

.pb-56px {
  padding-bottom: 56px;
}

.pb-57px {
  padding-bottom: 57px;
}

.pb-58px {
  padding-bottom: 58px;
}

.pb-59px {
  padding-bottom: 59px;
}

.pb-60px {
  padding-bottom: 60px;
}

.pb-61px {
  padding-bottom: 61px;
}

.pb-62px {
  padding-bottom: 62px;
}

.pb-63px {
  padding-bottom: 63px;
}

.pb-64px {
  padding-bottom: 64px;
}

.pb-65px {
  padding-bottom: 65px;
}

.pb-66px {
  padding-bottom: 66px;
}

.pb-67px {
  padding-bottom: 67px;
}

.pb-68px {
  padding-bottom: 68px;
}

.pb-69px {
  padding-bottom: 69px;
}

.pb-70px {
  padding-bottom: 70px;
}

.pb-71px {
  padding-bottom: 71px;
}

.pb-72px {
  padding-bottom: 72px;
}

.pb-73px {
  padding-bottom: 73px;
}

.pb-74px {
  padding-bottom: 74px;
}

.pb-75px {
  padding-bottom: 75px;
}

.pb-76px {
  padding-bottom: 76px;
}

.pb-77px {
  padding-bottom: 77px;
}

.pb-78px {
  padding-bottom: 78px;
}

.pb-79px {
  padding-bottom: 79px;
}

.pb-80px {
  padding-bottom: 80px;
}

.pb-81px {
  padding-bottom: 81px;
}

.pb-82px {
  padding-bottom: 82px;
}

.pb-83px {
  padding-bottom: 83px;
}

.pb-84px {
  padding-bottom: 84px;
}

.pb-85px {
  padding-bottom: 85px;
}

.pb-86px {
  padding-bottom: 86px;
}

.pb-87px {
  padding-bottom: 87px;
}

.pb-88px {
  padding-bottom: 88px;
}

.pb-89px {
  padding-bottom: 89px;
}

.pb-90px {
  padding-bottom: 90px;
}

.pb-91px {
  padding-bottom: 91px;
}

.pb-92px {
  padding-bottom: 92px;
}

.pb-93px {
  padding-bottom: 93px;
}

.pb-94px {
  padding-bottom: 94px;
}

.pb-95px {
  padding-bottom: 95px;
}

.pb-96px {
  padding-bottom: 96px;
}

.pb-97px {
  padding-bottom: 97px;
}

.pb-98px {
  padding-bottom: 98px;
}

.pb-99px {
  padding-bottom: 99px;
}

.pb-100px {
  padding-bottom: 100px;
}

/*# sourceMappingURL=common.css.map */
