@charset "UTF-8";
/* font */
/* color */
/* radius */
/* shadow */
/* 간격 */
/* surface */
.modal--notice {
  background-color: #fff;
  border-radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 변경 후 (특이도 0으로 내려감) */
:where(*, *::before, *::after) {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  height: 100%;
  font-family: "SpoqaHanSansNeo";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: #424242;
}

a {
  text-decoration: none;
  color: inherit;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input {
  outline: none;
  /* 필요 시 유지 가능 */
  font-family: "Pretendard";
  background: none;
}

button {
  cursor: pointer;
  border: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin: 0;
}

/********** scrollbar custom **********/
/* 아래의 모든 코드는 영역::코드로 사용 */
.scrollBar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollBar::-webkit-scrollbar-thumb {
  height: 3%;
  background: #7d808a;
  border-radius: 30px;
}

.scrollBar::-webkit-scrollbar-track {
  background-color: rgba(91, 96, 111, 0);
  border-radius: 15px;
}

/* Quasar Framework 확인/취소 모달 커스텀 */
.q-card.q-dialog-plugin {
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  padding: 40px 32px 32px 32px;
}
.q-card.q-dialog-plugin .q-dialog__message {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.q-card__section--vert {
  text-align: center;
  font-size: 1.8rem;
  color: #222222;
  padding: 0;
  padding-bottom: 32px;
}
.q-card__section--vert:first-of-type {
  font-weight: 600;
}

.q-card__actions {
  padding: 0;
  white-space: pre-line;
}

.q-card__actions {
  display: flex;
  justify-content: center;
}
.q-card__actions .q-btn--rectangle {
  min-width: 0 !important;
}
.q-card__actions .q-btn {
  box-shadow: none !important;
  height: 40px !important;
  padding: 0 12px !important;
  font-size: 1.5rem !important;
  border-radius: 4px !important;
  min-width: 68px !important;
  white-space: nowrap;
}
.q-card__actions .q-btn::before {
  box-shadow: none !important;
}
.q-card__actions .q-btn:first-child {
  background-color: #fff !important;
  border: 1px solid #e0e0e0 !important;
  color: #424242 !important;
}
.q-card__actions .q-btn:first-child.btn-ok {
  color: #fff !important;
}
.q-card__actions .q-btn:first-child:hover {
  background-color: #fafafa !important;
  border: 1px solid #bdbdbd !important;
}
.q-card__actions .q-btn:last-child {
  background-color: #3592FD !important;
  color: #fff;
  border: none;
}
.q-card__actions .q-btn:last-child:hover {
  background-color: #0659B2 !important;
  color: #fff;
}

/* typo */
/* 색상 Alpha */
/* button */
/* chip-style */
/* background-image */
/* focus, hover */
/*input, select, textarea, readonly */
/* input */
/* select */
/* textarea */
/* readonly 공통 */
/* fieldset (select,search) */
/* radio button **/
/* checkbox button */
/* calendar input custom */
/* pagination */
/********** gauge **********/
/* close-btn */
/* tab-menus */
/* custom-btns */
/* overlay */
.modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.close-btn {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  height: 40px;
  padding: 0 12px;
  font-size: 1.5rem;
  border-radius: 4px;
  min-width: 68px;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #424242;
  border: 1px solid transparent;
}
.close-btn:hover {
  background-color: #fafafa;
  border: 1px solid #bdbdbd;
}
.close-btn:hover {
  border-color: transparent;
}

.modal--notice {
  width: min(560px, 100vw - 40px);
  border-radius: 16px;
}
.modal--notice .modal-tit {
  font-size: 2.4rem;
  font-weight: 700;
  color: #424242;
  color: #222222;
  display: flex;
  justify-content: center;
  padding: 24px;
}
@media (max-width: 768px) {
  .modal--notice .modal-tit {
    font-size: 2rem;
    padding: 16px;
  }
}
.modal--notice .modal-body {
  padding: 12px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #222222;
}
@media (max-width: 768px) {
  .modal--notice .modal-body {
    padding: 16px;
  }
}
.modal--notice .modal-body .notice-period {
  display: flex;
  flex-direction: column;
}
.modal--notice .modal-body .notice-period label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #424242;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .modal--notice .modal-body .notice-period label {
    font-size: 1.6rem;
  }
}
.modal--notice .modal-body .notice-period .notice-box {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #f5f5f5;
  padding: 16px;
  display: grid;
  gap: 10px;
}
@media (max-width: 768px) {
  .modal--notice .modal-body .notice-period .notice-box {
    gap: 6px;
  }
}
.modal--notice .modal-body .notice-period .notice-box .notice-box-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
}
.modal--notice .modal-body .notice-period .notice-box .notice-box-row p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #424242;
}
.modal--notice .modal-body .notice-period .notice-box .notice-box-row span {
  font-size: 1.5rem;
  color: #222222;
}
@media (max-width: 768px) {
  .modal--notice .modal-body .notice-period .notice-box .notice-box-row p,
  .modal--notice .modal-body .notice-period .notice-box .notice-box-row span {
    font-size: 1.4rem;
  }
}
.modal--notice .modal-body .modal-desc {
  color: #757575;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .modal--notice .modal-body .modal-desc {
    font-size: 1.3rem;
  }
}
.modal--notice .modal-bottom {
  padding: 16px 24px 24px 24px;
  border-top: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .modal--notice .modal-bottom {
    padding: 10px 16px;
  }
}
.modal--notice .modal-bottom .dont-today {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 박스 꽉 채우는 회색 (박스 레이어) */
  /* disabled + checked : 체크표시 유지 */
  gap: 8px;
  font-size: 1.4rem;
  color: #616161;
}
.modal--notice .modal-bottom .dont-today input.icon-check::before {
  content: "" !important;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox] {
  opacity: 0;
  position: absolute;
  inset: 0;
  margin: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 3;
}
.modal--notice .modal-bottom .dont-today label {
  position: relative;
  display: block;
  margin-bottom: 0;
  margin-bottom: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 4;
}
.modal--notice .modal-bottom .dont-today label:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  box-sizing: border-box;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  background: #fff;
  z-index: 1;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  border-radius: 1px;
  transform: translate(-50%, -70%) rotate(-45deg);
  z-index: 3;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox]:checked + label:before {
  border-color: #3592FD;
  background: #3592FD;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox]:disabled + label {
  cursor: not-allowed;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox]:disabled + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 6px;
  border: 2px solid #9e9e9e;
  border-top: 0;
  border-right: 0;
  border-radius: 1px;
  transform: translate(-50%, -70%) rotate(-45deg);
  z-index: 3;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox]:disabled + label::before {
  background: #bdbdbd;
  border-color: #bdbdbd;
}
.modal--notice .modal-bottom .dont-today input[type=checkbox]:disabled:checked + label::after {
  content: "" !important;
  /* 라이브러리의 content:none 무력화 */
}
@media (max-width: 768px) {
  .modal--notice .modal-bottom .dont-today {
    font-size: 1.3rem;
  }
}
.modal--notice .modal-bottom .dont-today .dont-today__text {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
}
.modal--notice .modal-bottom .dont-today .dont-today__text::before, .modal--notice .modal-bottom .dont-today .dont-today__text::after {
  content: none !important;
  display: none !important;
}
.modal--notice .modal-bottom .dont-today .dont-today__box {
  flex: 0 0 auto;
}