@charset "UTF-8";
/*백그라운드 버튼*/
/*보더 버튼*/
/*개별 페이지 색상 배경*/
/*
대시보드 박스 넓이 지정
box 개수는 유동적이므로 배열로 받고($sizes) 반복

박스 넓이에 따른 클래스명
33% - a / 50% - b / 66% - c / 100% - d
ex)넓이 33% 33% 33% 66% 33% 면 .aaaca
*/
/*스크롤바*/
/*
토글 슬라이더

.toggle에 include해서 사용

<div class="toggle">
    <span>라벨명</span>
    <label class="switch">
        <input type="checkbox" id="" name="" checked>
        <span class="slider"></span>
    </label>
</div>
*/
/*모달*/
.modal {
  width: 500px;
  background: var(--white);
  box-shadow: 0 0 2px var(--bk50);
  border-radius: 15px;
  position: fixed;
  top: 10%;
  left: auto;
  z-index: 100000000;
  display: none;
  overflow: hidden;
}
.modal-top {
  padding: 24px;
}
.modal-top h3 {
  font-size: 20px;
}
.modal-cont {
  max-height: 64vh;
  overflow-y: auto;
  padding: 0 24px 24px;
}
.modal-cont .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal-cont .input-wrap .row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-cont .input-wrap .row label {
  font-weight: 600;
}
.modal-cont::-webkit-scrollbar {
  width: 6px;
}
.modal-cont::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--lt300);
}
.modal-cont::-webkit-scrollbar-track {
  background: transparent;
}
.modal-bottom {
  padding: 12px 24px;
  border-top: 1px solid var(--lt200);
}
.modal-bottom .bt-wrap {
  display: flex;
  gap: 12px;
  text-align: center;
}
.modal-bottom .bt-wrap button {
  flex: 1;
}
.modal-bottom:has(.bt-wrap.sm) {
  display: flex;
  justify-content: end;
}
.modal-bottom:has(.bt-wrap.sm) .bt-wrap {
  width: fit-content;
}
.modal.lg {
  width: 800px;
}
.modal.lg .modal-cont .st-wrap {
  display: flex;
  gap: 32px;
}
.modal.lg .modal-cont .check-wrap {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.modal.lg .modal-cont .check-wrap .check-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 28px;
}
.modal.lg .modal-cont .check-wrap .check-cell > label {
  font-weight: 600;
}
.modal.lg .modal-cont .check-wrap .check-cell input[type=text], .modal.lg .modal-cont .check-wrap .check-cell input[type=number] {
  width: 80px;
  height: 28px;
}
.modal.lg .modal-cont .check-wrap .check-cell .toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.modal.lg .modal-cont .grid-wrap {
  flex: 1;
  border: 1px solid var(--lt200);
  border-radius: 12px;
}
.modal.lg .modal-cont .grid-wrap .pq-cont-inner::-webkit-scrollbar {
  width: 6px;
}
.modal.lg .modal-cont .grid-wrap .pq-cont-inner::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--lt300);
}
.modal.lg .modal-cont .grid-wrap .pq-cont-inner::-webkit-scrollbar-track {
  background: transparent;
}
.modal.lg .modal-cont .grid-wrap .bt-wrap {
  justify-content: space-evenly;
  border-top: 1px solid var(--lt200);
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
}
.modal.lg .modal-cont .grid-wrap .bt-wrap .btn-ico {
  border-radius: 8px;
}
.modal.lg .modal-cont .grid-wrap .bt-wrap .btn-ico:hover .material-icons-outlined {
  color: var(--og600);
}
.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: var(--bk50);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999999;
}
.modal-bg.off {
  display: none;
}

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