@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");
@import '../css/init.css';
@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.w-fit {
  width: fit-content !important;
}

table.color-table {
  border-color: var(--color1);
}
table.color-table th, table.color-table td {
  border-color: var(--color1_sub2);
}
table.color-table th {
  background-color: var(--color1_bg);
}

.tabulator {
  width: 100%;
  height: 350px;
  margin: 0;
}
.tabulator .tabulator-header {
  text-align: center;
  justify-content: center;
}
.tabulator .tabulator-header .tabulator-col {
  min-height: 35px !important;
  text-align: center;
  justify-content: center;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding: 0 25px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  line-height: 35px;
  padding: 0 5px;
  text-align: center;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .chk-wrap {
  width: fit-content;
  margin: 0 auto;
}
.tabulator .tabulator-row.tabulator-selected {
  background-color: var(--color1_bg) !important;
}
.tabulator .tabulator-cell {
  min-height: 35px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.tabulator .tabulator-cell.text-left {
  justify-content: left !important;
}
.tabulator .tabulator-cell.text-right {
  justify-content: right !important;
}
.tabulator .tabulator-cell input, .tabulator .tabulator-cell select {
  height: 30px;
  font-size: 13px;
}
.tabulator .tabulator-cell select {
  line-height: 30px;
}
.tabulator .tabulator-cell .chk-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: fit-content;
  height: fit-content;
  margin: auto;
}
.tabulator .tabulator-cell .search {
  width: 100%;
  height: 100%;
  padding-right: 25px;
  align-items: center;
  display: flex;
}
.tabulator .tabulator-cell .search .item-search-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
}
.tabulator .tabulator-tableholder {
  background-color: var(--white);
}
.tabulator .tabulator-tableholder .tabulator-placeholder-contents {
  font-size: 18px !important;
  font-weight: 500 !important;
}
.tabulator .tabulator-tableholder .tabulator-row.tabulator-selectable:hover {
  background-color: var(--bg) !important;
}
.tabulator .tabulator-footer {
  padding: 0;
  border-top: 0;
}
.tabulator .tabulator-footer .tabulator-calcs-holder {
  margin: 0;
  border-bottom: 0;
}
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
  background-color: #feefef !important;
}
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-cell {
  color: var(--red);
}
.tabulator .fa-xmark {
  color: var(--red);
}

.grids {
  gap: 20px;
  display: flex;
}
.grids .grid-wrap {
  width: 100%;
  height: 100%;
}
.grids .grid-wrap .grid-title {
  margin-bottom: 10px;
}

.chk-wrap {
  gap: 0 15px;
  flex-flow: wrap;
  display: flex;
}
.chk-wrap label {
  cursor: pointer;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
  display: flex;
}
.chk-wrap label span {
  width: 17px;
  height: 17px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: 0.2s ease all;
  justify-content: center;
  align-items: center;
  display: flex;
}
.chk-wrap label span:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 12px;
  color: transparent;
  font-weight: 600;
  transition: 0.2s ease color;
}
.chk-wrap input:checked + label span {
  border-color: var(--color1);
  background-color: var(--color1);
}
.chk-wrap input:checked + label span:before {
  color: var(--white);
}
.chk-wrap input:disabled {
  cursor: no-drop;
}
.chk-wrap input:disabled + label {
  color: var(--black9);
  cursor: no-drop;
}

.radio-wrap {
  gap: 0 15px;
  flex-flow: wrap;
  display: flex;
}
.radio-wrap label {
  width: fit-content;
  cursor: pointer;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
  display: flex;
}
.radio-wrap label span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: 0.2s ease border-color;
  flex-shrink: 0;
  display: block;
}
.radio-wrap label span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--border);
  border-radius: 50%;
  margin: auto;
  transition: 0.2s ease background-color;
}
.radio-wrap input:checked + label span {
  border-color: var(--color1);
}
.radio-wrap input:checked + label span:before {
  background-color: var(--color1);
}
.radio-wrap input:disabled {
  cursor: no-drop;
}
.radio-wrap input:disabled + label {
  color: var(--black9);
  cursor: no-drop;
}

.select-wrap {
  width: 100%;
}
.select-wrap input {
  padding-right: 35px;
}
.select-wrap input::placeholder {
  color: var(--black3);
}
.select-wrap button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  color: var(--color1);
  aspect-ratio: 1/1;
}
.select-wrap .select-list {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border);
  display: none;
}
.select-wrap .select-list.active {
  display: block;
}
.select-wrap .select-list input {
  border: 0;
  border-radius: 0;
  border-bottom: 1px dashed var(--bbb);
  color: var(--color1_sub1);
}
.select-wrap .select-list input::placeholder {
  color: var(--black9);
}
.select-wrap .select-list ul {
  overflow-y: auto;
  height: fit-content;
  max-height: 150px;
}
.select-wrap .select-list ul li {
  padding: 10px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.2s ease background-color;
}
.select-wrap .select-list ul li.selected, .select-wrap .select-list ul li:hover {
  background-color: var(--color1_bg);
}

.layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  animation: fade_in 0.2s ease forwards;
}
.layer:nth-of-type(1) {
  z-index: 99;
}
.layer:nth-of-type(2) {
  z-index: 100;
}
.layer:nth-of-type(3) {
  z-index: 101;
}
.layer.closing {
  animation: fade_out 0.2s ease forwards;
}
.layer .layer-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  margin: auto;
  background-color: var(--bg);
  border-radius: 10px;
  flex-flow: column;
  display: flex;
}
.layer .layer-container .tnb {
  height: 60px;
  padding: 0 20px;
  background-color: var(--white);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.layer .layer-container .tnb .title {
  font-size: 22px;
  font-weight: 600;
}
.layer .layer-container .tnb .close-btn {
  width: 40px;
  height: 40px;
  background-color: var(--color1_bg);
  border-radius: 10px;
  font-size: 20px;
  color: var(--color1);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
.layer .layer-container .contents {
  overflow: hidden;
  height: 100%;
  padding: 20px;
  gap: 0 20px;
  flex-flow: wrap;
  display: flex;
}

.sub-layer .layer-contents {
  overflow-y: auto;
  height: 100%;
  padding: 15px;
}
.sub-layer .layer-contents .tabulator {
  height: 100%;
}
.sub-layer .layer-contents .tab-content {
  display: none;
}
.sub-layer .layer-contents .tab-content.active {
  display: block;
}
.sub-layer .layer-contents .dot-line {
  border-bottom: 1px dashed var(--border);
  padding-bottom: 10px;
}
.sub-layer .layer-contents .title-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.sub-layer .layer-contents .title {
  font-size: 18px;
  font-weight: 600;
}
.sub-layer .layer-contents .title:before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color1);
}
.sub-layer .layer-contents .search-form {
  gap: 10px 15px;
}
.sub-layer .layer-contents .search-form input {
  border-color: var(--border);
}
.sub-layer .layer-contents .inline-form > li {
  width: fit-content;
}
.sub-layer .layer-contents .inline-form > li .label {
  width: fit-content;
}
.sub-layer .layer-contents .input-form > li .label {
  width: 80px;
}
.sub-layer .layer-contents .search-form .select-wrap .select-list {
  border-color: var(--border);
}

#toast {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
  width: 320px;
  gap: 10px;
  flex-flow: column;
  display: flex;
}
#toast .toast-item {
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: fade_in 0.2s ease forwards;
  gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
#toast .toast-item.closing {
  animation: fade_out 0.2s ease forwards;
}
#toast .toast-item.info {
  border-color: var(--blue);
}
#toast .toast-item.success {
  border-color: var(--green);
}
#toast .toast-item.warning {
  border-color: var(--yellow);
}
#toast .toast-item.danger {
  border-color: var(--red);
}
#toast .toast-item .toast-title {
  font-weight: 700;
  margin-bottom: 5px;
}
#toast .toast-item .toast-msg {
  font-size: 13px;
  line-height: 1.35;
}

.calendar .controls {
  margin-bottom: 45px;
  gap: 0 40px;
  align-items: center;
  display: flex;
}
.calendar .controls .date {
  font-family: var(--sub_font), var(--font);
  font-size: 24px;
}
.calendar .controls .date span {
  font-family: inherit;
  font-size: 32px;
  font-weight: 700;
  color: var(--color1);
}
.calendar > ul {
  gap: 20px 0;
  flex-flow: wrap;
  display: flex;
}
.calendar > ul > li {
  position: relative;
  width: 14.2857142857%;
}
.calendar > ul > li.yoil {
  font-weight: 500;
  text-align: center;
}
.calendar > ul > li.yoil:nth-child(1) {
  color: var(--red);
}
.calendar > ul > li.yoil:nth-child(7) {
  color: var(--blue);
}
.calendar > ul > li .day {
  font-family: var(--sub_font);
  color: inherit;
}
.calendar > ul > li .day.prev {
  color: var(--border) !important;
}
.calendar > ul > li.holiday .day {
  color: var(--red) !important;
}
.calendar .wrap {
  justify-content: space-between;
  display: flex;
}
.calendar .wrap + ul {
  gap: 0;
}
.calendar .wrap + ul > li.yoil {
  padding-bottom: 30px;
  font-size: 28px;
}
.calendar .wrap + ul > li:not(.yoil) {
  height: 175px;
  border: 1px solid var(--border);
  border-left: 0;
  margin-bottom: -1px;
  padding: 15px 10px;
}
.calendar .wrap + ul > li:not(.yoil):nth-child(7n+1) {
  border-left: 1px solid var(--border);
}
.calendar .wrap + ul > li .day {
  font-size: 20px;
  font-weight: 500;
  text-align: right;
  padding-right: 10px;
}
.calendar .wrap + ul > li .day.today {
  color: var(--color1);
}
.calendar .wrap + ul > li .schedule {
  overflow: hidden;
  background-color: var(--color1_sub2);
  margin-top: 5px;
  padding: 5px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.container {
  background-color: var(--bg);
  padding: 25px;
}
.container .tab {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  width: 100%;
}
.container .tab::-webkit-scrollbar {
  display: none;
}
.container .tab ul {
  width: 100%;
  gap: 0 5px;
  display: flex;
}
.container .tab ul li {
  position: relative;
  width: calc(10% - 4.5px);
  border-radius: 10px 10px 0 0;
  background-color: var(--color1);
  padding: 12px 15px;
  cursor: pointer;
  transition: 0.2s ease background-color;
  gap: 0 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.container .tab ul li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 15px;
  background-color: transparent;
  margin: auto 0;
  transition: 0.2s ease background-color;
}
.container .tab ul li .name {
  overflow: hidden;
  font-weight: 700;
  color: var(--white);
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.2s ease color;
}
.container .tab ul li button {
  color: var(--white);
  flex-shrink: 0;
}
.container .tab ul li.active {
  padding: auto;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: auto;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.container .tab ul li.active .title {
  font-size: 24px;
  font-weight: 700;
}
.container .tab ul li.active:before {
  background-color: var(--color1);
}
.container .tab ul li.active .name, .container .tab ul li.active button {
  color: var(--color1);
}
.container .tab-contents .contents {
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 0 20px 20px;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.container .tab-contents .contents .title {
  font-size: 24px;
  font-weight: 700;
}
.container .tab-contents .contents {
  gap: 20px;
  flex-flow: column;
  display: flex;
}

.title-wrap {
  justify-content: space-between;
  display: flex;
}
.title-wrap .title {
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.title-wrap .dot-title {
  width: fit-content;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 700;
}
.title-wrap .dot-title:after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color1);
}
.title-wrap .dot-title {
  flex-shrink: 0;
}
.title-wrap {
  align-items: end;
}
.title-wrap .tab-title {
  gap: 0 10px;
  align-items: center;
  display: flex;
}
.title-wrap .tab-title .favorite-btn {
  color: var(--border);
  font-size: 15px;
}
.title-wrap .tab-title .favorite-btn .fa-solid {
  color: var(--color1);
}
.title-wrap.no-justify-content {
  align-items: center !important;
  justify-content: unset !important;
}
.title-wrap.form-title, .title-wrap.grid-title {
  margin-bottom: -10px;
}
.title-wrap.form-title .announce {
  line-height: 18px;
  font-size: 13px !important;
  color: var(--red) !important;
  align-items: end;
  display: flex;
}
.title-wrap.form-title .chk-wrap {
  margin-left: 30px;
}
.title-wrap.form-title button {
  height: 28px;
  background-color: var(--color1_sub2);
  padding: 0 8px;
  font-size: 13px;
  transition: 0.2s ease all;
}
.title-wrap.form-title button:hover {
  background-color: var(--color1_sub1);
  color: var(--white);
}
.title-wrap.form-title .btns {
  flex-shrink: 0;
  gap: 3px;
  display: flex;
}

.title-btns {
  width: fit-content;
  flex-shrink: 0;
  gap: 0 5px;
  justify-content: right;
  display: flex;
}
.title-btns button,
.title-btns label {
  height: 35px;
  background-color: var(--black6) !important;
  color: var(--white) !important;
  padding: 0 20px;
  flex-shrink: 0;
}
.title-btns label {
  line-height: 35px;
  cursor: pointer;
}

.form-wrap {
  width: 100%;
  padding: 15px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.form-wrap .title {
  font-size: 24px;
  font-weight: 700;
}
.form-wrap.toggle {
  margin-bottom: 30px;
}
.form-wrap.hide {
  padding: 0;
  border-top: 1px solid var(--eee);
  box-shadow: none;
}
.form-wrap.hide .search-form {
  display: none;
}
.form-wrap.hide .toggle-btn i {
  transform: rotate(-180deg);
}
.form-wrap .toggle-btn {
  position: absolute;
  bottom: -27px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 65px;
  background-color: var(--white);
  border: 1px solid var(--eee);
  border-top: 0;
  padding: 5px 0;
  margin: 0 auto;
  box-shadow: 0 3px 5px -3px rgba(0, 0, 0, 0.15);
}
.form-wrap .toggle-btn i {
  color: var(--color1);
  transition: 0.2s ease transform;
}

.search-form {
  width: 100%;
  gap: 10px 20px;
  flex-flow: wrap;
  display: flex;
}
.search-form > li {
  width: calc(25% - 15px);
  gap: 8px;
  align-items: center;
  display: flex;
}
.search-form > li .label {
  width: 150px;
  flex-shrink: 0;
}
.search-form > li .label.essential:before {
  content: "*";
  position: relative;
  top: 3px;
  font-size: 15px;
  color: var(--color1);
  margin-right: 5px;
}
.search-form > li .search-wrap {
  width: 100%;
  gap: 0 5px;
  align-items: center;
  display: flex;
}
.search-form > li .search-wrap .chk-wrap,
.search-form > li .search-wrap .radio-wrap {
  margin-left: 10px;
  flex-shrink: 0;
}
.search-form > li .search {
  width: 100%;
}
.search-form > li .search input {
  padding-right: 35px;
}
.search-form > li .search .icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}
.search-form > li .search .icon.xmark {
  color: var(--red);
  display: none;
}
.search-form > li .search:hover .xmark {
  display: flex;
}
.search-form > li .select-wrap input:read-only {
  color: var(--black3) !important;
  background-color: var(--white) !important;
  cursor: pointer;
}
.search-form > li .select-wrap.disabled input,
.search-form > li .select-wrap.disabled button {
  color: var(--black9) !important;
  cursor: no-drop;
}
.search-form > li .select-wrap.disabled input:read-only {
  background-color: #f9f9f9 !important;
}
.search-form > li .select-wrap.disabled input:read-only::placeholder {
  color: var(--black9) !important;
}
.search-form input {
  border-color: var(--color1_sub1);
}
.search-form input:read-only, .search-form input:disabled {
  background-color: var(--color1_bg) !important;
}
.search-form .search-wrap .search .icon {
  color: var(--color1_sub1);
}
.search-form .search-wrap input[type=date] {
  width: 150px;
}
.search-form .select-wrap .select-list {
  border-color: var(--color1_sub1);
}
.search-form .select-wrap .select-list input {
  border-color: var(--color1_sub1);
}
.search-form .search.single .icon {
  color: var(--color1_sub1);
}
.search-form .search.single .xmark {
  right: 35px;
  aspect-ratio: unset;
}

.input-form {
  width: 100%;
  gap: 5px 15px;
  flex-flow: wrap;
  display: flex;
}
.input-form > li {
  width: calc(25% - 11.25px);
  gap: 8px;
  align-items: center;
  display: flex;
}
.input-form > li .label {
  width: 150px;
  flex-shrink: 0;
}
.input-form > li .label.essential:before {
  content: "*";
  position: relative;
  top: 3px;
  font-size: 15px;
  color: var(--color1);
  margin-right: 5px;
}
.input-form > li .search-wrap {
  width: 100%;
  gap: 0 5px;
  align-items: center;
  display: flex;
}
.input-form > li .search-wrap .chk-wrap,
.input-form > li .search-wrap .radio-wrap {
  margin-left: 10px;
  flex-shrink: 0;
}
.input-form > li .search {
  width: 100%;
}
.input-form > li .search input {
  padding-right: 35px;
}
.input-form > li .search .icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}
.input-form > li .search .icon.xmark {
  color: var(--red);
  display: none;
}
.input-form > li .search:hover .xmark {
  display: flex;
}
.input-form > li .select-wrap input:read-only {
  color: var(--black3) !important;
  background-color: var(--white) !important;
  cursor: pointer;
}
.input-form > li .select-wrap.disabled input,
.input-form > li .select-wrap.disabled button {
  color: var(--black9) !important;
  cursor: no-drop;
}
.input-form > li .select-wrap.disabled input:read-only {
  background-color: #f9f9f9 !important;
}
.input-form > li .select-wrap.disabled input:read-only::placeholder {
  color: var(--black9) !important;
}

.inner-tab {
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
  gap: 1px;
  display: flex;
}
.inner-tab li {
  position: relative;
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 10px;
  color: var(--black9);
  cursor: pointer;
  transition: 0.2s linear all;
}
.inner-tab li:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 1;
  width: calc(100% + 2px);
  height: 3px;
  background-color: transparent;
  transition: 0.2s linear background-color;
}
.inner-tab li.active {
  background-color: var(--white);
  border-bottom-color: var(--white);
  color: var(--black6);
}
.inner-tab li.active:before {
  background-color: var(--color1);
}

.inner-container {
  gap: 20px;
  display: flex;
}

.inner-contents {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px;
}
.inner-contents > li {
  height: 100%;
  display: none;
}
.inner-contents > li.active {
  flex-flow: column;
  display: flex;
}

.cart-list {
  width: 350px;
  height: 600px;
  padding: 15px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.cart-list .title {
  font-size: 24px;
  font-weight: 700;
}
.cart-list {
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
.cart-list .total {
  padding: 0 10px 10px;
  border-bottom: 1px solid var(--border);
  gap: 5px 0;
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
.cart-list .total > div {
  font-size: 18px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.cart-list .total > div .bold {
  font-weight: 600;
}
.cart-list .total > div .count {
  gap: 0 5px;
  align-items: center;
  display: flex;
}
.cart-list .total > div span {
  line-height: 1;
  font-family: var(--sub_font);
  font-weight: 700;
  font-size: 26px;
  color: var(--color1);
  display: block;
}
.cart-list ul {
  overflow-y: auto;
  height: 100%;
}
.cart-list ul li {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border);
  gap: 0 10px;
  align-items: baseline;
  display: flex;
}
.cart-list ul li .info {
  width: 100%;
}
.cart-list ul li .info .name span {
  color: var(--color1_sub1);
  font-weight: 500;
  margin-right: 5px;
}
.cart-list ul li .info .controls {
  width: fit-content;
  padding: 0 10px;
  margin-top: 10px;
  background-color: var(--bg);
  border-radius: 50px;
  display: flex;
}
.cart-list ul li .info .controls button {
  line-height: 1;
  flex-shrink: 0;
}
.cart-list ul li .info .controls input {
  width: 50px;
  height: 30px;
  background-color: transparent;
  padding: 0 5px;
  border: 0;
  text-align: center;
}
.cart-list ul li .info .price {
  position: absolute;
  right: -22px;
  bottom: 7px;
}
.cart-list ul li button {
  color: var(--border);
  flex-shrink: 0;
}

.print {
  width: 210mm;
  height: 297mm;
}
.print .page {
  padding: 15px;
  gap: 15px;
  flex-flow: column;
  display: flex;
}
.print * {
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.2;
  font-size: 12px;
}
.print table {
  width: 100%;
  border: 0;
}
.print table tr {
  break-inside: avoid;
  page-break-inside: avoid;
}
.print table th, .print table td {
  padding: 5px;
}
.print table .text-center {
  text-align: center;
}
.print table .text-right {
  text-align: right;
}
.print table .spacer {
  height: 10px;
  border: 0;
}
.print table .box {
  padding: 5px 10px;
}
.print table .box .wrap {
  gap: 0 10px;
  align-items: center;
  display: flex;
}
.print table .box .wrap ul {
  flex-shrink: 0;
}
.print table .box .wrap .title {
  width: 100%;
  text-align: center;
  font-size: 14px !important;
  font-weight: 600;
  border-bottom: 1px solid var(--black3);
  padding-bottom: 3px;
  letter-spacing: -1px;
}
.print table .box .name {
  font-size: 16px !important;
  font-weight: 600;
  margin-top: 7px;
  text-align: center;
}

.print-mini {
  width: 72mm;
  margin: 0 auto;
  padding: 10px 0;
}
.print-mini * {
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.2;
  font-size: 11px;
}
.print-mini .btns {
  margin-bottom: 15px;
  gap: 0 5px;
  display: flex;
}
.print-mini .btns button {
  width: 100%;
  height: 30px;
  background-color: var(--black3);
  color: var(--white);
  font-size: 12px;
}
.print-mini .title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.print-mini .seller {
  text-align: right;
  margin: 5px 0;
}
.print-mini .seller .name {
  margin-bottom: 2px;
}
.print-mini .store {
  margin-bottom: 5px;
  padding-left: 5px;
}
.print-mini table {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border);
}
.print-mini table th, .print-mini table td {
  padding: 5px;
  border: 0;
  background-color: var(--white);
}
.print-mini table th.text-center, .print-mini table td.text-center {
  text-align: center;
}
.print-mini table th.text-right, .print-mini table td.text-right {
  text-align: right;
}
.print-mini table tr:first-child th {
  border-bottom: 1px solid var(--border);
}
.print-mini table tr:last-child td {
  border-top: 1px solid var(--border);
}
.print-mini table tr:last-child td:first-child {
  font-weight: 600;
}

@media print {
  @page {
    size: A4;
    padding: 15px;
  }
  .print .page {
    padding: 0;
  }
  .print table {
    page-break-inside: auto;
    break-inside: avoid;
  }
  .print table tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  .print table tfoot {
    display: table-row-group;
  }
  .print-mini .btns {
    display: none;
  }
}
.search-layer {
  width: 100%;
  max-width: 750px;
  height: fit-content;
  max-height: calc(100% - 40px);
}
.search-layer .contents .form-btns {
  width: 100%;
  margin-bottom: 10px;
  justify-content: right;
  gap: 5px;
  display: flex;
}
.search-layer .contents .form-btns button {
  background-color: var(--black6);
  color: var(--white);
  padding: 7px 12px;
}
.search-layer .contents .form-wrap {
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

#login_layer .layer-container {
  height: fit-content;
}
#login_layer .layer-container .contents {
  gap: 15px;
  flex-flow: column;
}
#login_layer .layer-container .contents .input-form {
  gap: 5px;
  flex-flow: column;
}
#login_layer .layer-container .contents .input-form li {
  width: 100%;
}
#login_layer .layer-container .contents .input-form li .label {
  width: 100px;
}
#login_layer .layer-container .contents .input-form li .search-wrap > button {
  width: 100px;
  height: 35px;
  background-color: var(--color1);
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
}
#login_layer .layer-container .contents .announce {
  margin-top: 15px;
  gap: 10px;
  flex-flow: column;
  display: flex;
}
#login_layer .layer-container .contents .announce span {
  position: relative;
  font-size: 13px;
  padding-left: 15px;
}
#login_layer .layer-container .contents .announce span:before {
  content: "*";
  position: absolute;
  top: 2px;
  left: 0;
}
#login_layer .layer-container .contents .announce span.important {
  color: var(--red);
}

#item_select_layer .layer-container .search-form {
  gap: 5px 10px;
}
#item_select_layer .layer-container .search-form > li {
  width: calc(50% - 5px);
}
#item_select_layer .layer-container .search-form > li .label {
  width: 110px;
}
#item_select_layer .layer-container .grid-wrap {
  width: 100%;
  gap: 10px;
  display: flex;
}
#item_select_layer .layer-container .grid-wrap .controls {
  flex-shrink: 0;
  gap: 5px;
  justify-content: center;
  flex-flow: column;
  display: flex;
}
#item_select_layer .layer-container .grid-wrap .controls button {
  width: 25px;
  height: 25px;
  color: var(--color1_sub1);
  background-color: var(--white);
  border: 1px solid var(--color1_sub2);
  border-radius: 5px;
}

#pos .tabulator {
  height: 100%;
}

.pos {
  width: 100%;
  max-width: 1250px;
  height: calc(100% - 40px);
}
.pos .tnb > img {
  height: 30px;
}
.pos .tnb .wrap {
  gap: 0 5px;
  align-items: center;
  display: flex;
}
.pos .tnb .wrap input,
.pos .tnb .wrap select {
  width: fit-content;
  min-width: 150px;
  border-radius: 50px;
  flex-shrink: 0;
}
.pos .tnb .wrap button {
  position: relative;
  margin-left: 25px;
  flex-shrink: 0;
  gap: 0 15px;
  align-items: center;
  display: flex;
}
.pos .tnb .wrap button.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--color1_bg);
  color: var(--color1);
  font-size: 20px;
  justify-content: center;
}
.pos .tnb .wrap button span {
  position: absolute;
  top: -2px;
  left: 10px;
  width: 15px;
  height: 15px;
  font-family: var(--sub_font);
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--color1);
  color: var(--white);
}
.pos .contents .menu {
  width: 210px;
  flex-shrink: 0;
  gap: 20px 0;
  flex-flow: column;
  display: flex;
}
.pos .contents .menu select {
  height: 50px;
  border-color: var(--color1);
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.pos .contents .menu ul {
  overflow-y: auto;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(110deg, rgb(143, 75, 243) 35%, rgb(112, 38, 221) 70%);
  padding: 0 10px;
}
.pos .contents .menu ul::-webkit-scrollbar {
  display: none;
}
.pos .contents .menu ul li {
  padding: 20px;
  font-size: 16px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
}
.pos .contents .menu ul li span {
  width: 40px;
  font-size: inherit;
  color: inherit;
  flex-shrink: 0;
}
.pos .contents .menu ul li:first-child {
  border-top: 0;
}
.pos .contents .content {
  width: calc(100% - 230px);
  gap: 20px 0;
  flex-flow: column;
  display: flex;
}
.pos .contents .content .top-bar {
  width: 100%;
  height: 50px;
  padding: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.pos .contents .content .top-bar .title {
  font-size: 24px;
  font-weight: 700;
}
.pos .contents .content .top-bar {
  flex-shrink: 0;
  display: flex;
}
.pos .contents .content .top-bar li {
  position: relative;
  width: 100%;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.pos .contents .content .top-bar li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 20px;
  background-color: var(--border);
  margin: auto 0;
}
.pos .contents .content .top-bar li .label {
  font-size: 17px;
  font-weight: 700;
  color: var(--color1);
  gap: 0 10px;
  align-items: center;
  display: flex;
}
.pos .contents .content .top-bar li .text {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
.pos .contents .content .controls {
  height: 337px;
  flex-shrink: 0;
  gap: 0 15px;
  display: flex;
}
.pos .contents .content .controls .bills {
  width: 250px;
  padding: 5px 10px 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.pos .contents .content .controls .bills .title {
  font-size: 24px;
  font-weight: 700;
}
.pos .contents .content .controls .bills {
  flex-shrink: 0;
}
.pos .contents .content .controls .bills > div {
  padding: 15px 10px;
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.pos .contents .content .controls .bills > div:first-child {
  border-top: 0;
}
.pos .contents .content .controls .bills > div .label {
  flex-shrink: 0;
}
.pos .contents .content .controls .bills > div input {
  height: unset;
  line-height: 0;
  border: 0;
  padding: 0;
  text-align: right;
}
.pos .contents .content .controls .bills > div.big * {
  font-size: 20px;
  font-weight: 700;
}
.pos .contents .content .controls .bills > div.big.collectible * {
  color: var(--color1);
}
.pos .contents .content .controls .shortcut {
  width: 260px;
  flex-shrink: 0;
  gap: 10px;
  flex-flow: wrap;
  display: flex;
}
.pos .contents .content .controls .shortcut button {
  width: calc(50% - 5px);
  height: 84px;
  border-radius: 10px;
  font-size: 17px;
  color: var(--white);
  padding: 0 15px;
}
.pos .contents .content .controls .shortcut button[class*=-btn] {
  height: 54px;
  color: var(--black3);
  background: var(--border);
  font-size: 20px;
  flex-shrink: 0;
}
.pos .contents .content .controls .shortcut button.update-btn {
  font-weight: 700;
}
.pos .contents .content .controls .shortcut button.dir-btn {
  width: calc(25% - 7.5px);
  padding: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.pos .contents .content .controls .shortcut .favorites {
  width: 100%;
  height: calc(100% - 64px);
  gap: 10px;
  align-content: start;
  flex-flow: wrap;
  display: flex;
}
.pos .contents .content .controls .shortcut .favorites button {
  background: linear-gradient(-131deg, rgb(139, 139, 139) 0%, rgb(174, 173, 173) 100%);
}
.pos .contents .content .controls .shortcut .favorites button:nth-child(n+7) {
  display: none;
}
.pos .contents .content .controls .payment {
  width: 130px;
  flex-shrink: 0;
  gap: 10px 0;
  flex-flow: column;
  display: flex;
}
.pos .contents .content .controls .payment button {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color1) 0%, var(--color1_sub1) 100%);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  gap: 12px 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.pos .contents .content .controls .keypad {
  width: 100%;
  gap: 10px 0;
  flex-flow: column;
  display: flex;
}
.pos .contents .content .controls .keypad input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
}
.pos .contents .content .controls .keypad .key {
  height: 100%;
  gap: 0 10px;
  flex-flow: wrap;
  display: flex;
}
.pos .contents .content .controls .keypad .key button {
  border: 1px solid var(--color1_sub1);
  border-radius: 10px;
}
.pos .contents .content .controls .keypad .key .number {
  width: calc(75% - 5px);
  gap: 10px;
  flex-flow: wrap;
  display: flex;
}
.pos .contents .content .controls .keypad .key .number button {
  width: calc(33.333% - 7.5px);
  background-color: var(--white);
  font-size: 22px;
  font-weight: 900;
  transition: 0.2s ease all;
}
.pos .contents .content .controls .keypad .key .number button:hover {
  color: var(--color1);
  background-color: var(--color1_bg);
}
.pos .contents .content .controls .keypad .key .action {
  width: calc(25% - 5px);
  gap: 10px 0;
  flex-flow: column;
  display: flex;
}
.pos .contents .content .controls .keypad .key .action button {
  width: 100%;
  height: calc(25% - 7.5px);
  background-color: #f0f0f0;
  flex-shrink: 0;
}
.pos .contents .content .controls .keypad .key .action button img {
  width: 22px;
  margin: 0 auto;
}
.pos .contents .content .controls .keypad .key .action button.clear-btn {
  font-family: var(--sub_font);
  font-size: 16px;
  font-weight: 300;
}
.pos .contents .content .controls .keypad .key .action button.apply-btn {
  height: 100%;
  background-color: var(--color1_sub2);
  font-size: 20px;
  font-weight: 700;
  color: var(--color1);
  flex-shrink: 1;
}

.sub-layer .pos {
  max-width: 1200px;
  height: calc(100% - 80px);
  border-radius: 3px;
}
.sub-layer .pos .tnb {
  left: -10px;
  width: calc(100% + 20px);
  justify-content: space-between;
  display: flex;
}
.sub-layer .pos .tnb ul {
  gap: 0 20px;
  display: flex;
}
.sub-layer .pos .tnb ul li {
  position: relative;
  line-height: 60px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease all;
}
.sub-layer .pos .tnb ul li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color1);
  transition: 0.2s ease width;
}
.sub-layer .pos .tnb ul li.active:before {
  width: 100%;
}
.sub-layer .pos .tab-content {
  height: 100%;
  gap: 10px 0;
  flex-flow: column;
}
.sub-layer .pos .tab-content.active {
  display: flex;
}
.sub-layer .pos .tab-content > .dot-line {
  display: flex;
}

#pos_customer .tab-content[data-target=info] .title-wrap .chk-wrap {
  margin-left: 22px;
}

#pos_client .tab-content[data-target=info] .title-wrap {
  margin-bottom: 8px;
}
#pos_client .tab-content[data-target=info] .wrap {
  padding-right: 8px;
}
#pos_client .tab-content[data-target=info] .wrap .input-form > li {
  width: calc(50% - 7.5px);
}
#pos_client .tab-content[data-target=info] .wrap .input-form > li.addr .search {
  width: 92px;
  flex-shrink: 0;
}
#pos_client .tab-content[data-target=info] .manager {
  width: 400px;
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
#pos_client .tab-content[data-target=info] .manager .btns button {
  height: 21px;
  background-color: var(--color1_sub2);
  padding: 0 7px;
  font-size: 12px;
  transition: 0.2s ease all;
}
#pos_client .tab-content[data-target=info] .manager .btns button:hover {
  background-color: var(--color1_sub1);
  color: var(--white);
}

#pos_item_labor .cart-wrap {
  height: 100%;
  gap: 15px;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap {
  overflow: hidden;
  height: 100%;
  gap: 10px 0;
  flex-flow: column;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .dot-line {
  gap: 0 15px;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .list {
  height: 100%;
  gap: 10px 0;
  flex-flow: column;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .item-grid {
  max-height: 250px;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap {
  height: 100%;
  gap: 15px;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .btns {
  margin-bottom: 5px;
  gap: 5px;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .btns button {
  height: 25px;
  font-size: 13px;
  padding: 0 10px;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups {
  width: 320px;
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups button {
  border: 1px solid var(--color1);
  background-color: var(--white);
  color: var(--color1);
  transition: 0.2s ease all;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups button:hover, #pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups button.active {
  background-color: var(--color1);
  color: var(--white);
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  border: 1px solid var(--color1_sub1);
  align-content: flex-start;
  flex-flow: wrap;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li {
  position: relative;
  width: 50%;
  height: 20%;
  background: linear-gradient(0, var(--border) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-top: 0;
  cursor: pointer;
  transition: 0.2s ease color;
  justify-content: center;
  align-items: center;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  z-index: 1;
  transition: 0.2s ease border-color;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li:nth-child(odd) {
  border-left: 0;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li:nth-child(even) {
  border-right: 0;
  border-left: 0;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li:hover, #pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li.active {
  color: var(--color1);
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li:hover:before, #pos_item_labor .cart-wrap .wrap .grid-wrap .labor-groups .labor-group-list li.active:before {
  border-color: var(--color1_sub1);
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labors {
  overflow: hidden;
  width: 100%;
  flex-flow: column;
  display: flex;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labors .btns {
  width: 100%;
  justify-content: right;
}
#pos_item_labor .cart-wrap .wrap .grid-wrap .labors .btns button {
  background-color: var(--color1_sub2);
}
#pos_item_labor .cart-wrap .cart-list {
  width: 320px;
  height: 100%;
}
#pos_item_labor .cart-wrap .cart-list .add-btn {
  width: 100%;
  height: 55px;
  background-color: var(--color1);
  color: var(--white);
  margin-top: 15px;
  font-size: 16px;
}

#pos_favorite_labor .labor-wrap {
  height: 100%;
  gap: 15px;
  display: flex;
}
#pos_favorite_labor .labor-wrap > div {
  gap: 10px;
  flex-flow: column;
  display: flex;
}
#pos_favorite_labor .labor-wrap .favorite-labor {
  width: 450px;
  flex-shrink: 0;
}
#pos_favorite_labor .labor-wrap .labor-list {
  width: 100%;
}

#pos_payment .layer-container {
  overflow: unset;
  width: 650px;
  height: fit-content;
  max-height: 90%;
}
#pos_payment .layer-container .tnb {
  border-radius: 10px 10px 0 0;
}
#pos_payment .layer-container .contents {
  overflow: unset;
  flex-flow: column;
}
#pos_payment .layer-container .contents .inner-container {
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--border);
  gap: 10px;
  flex-flow: column;
}
#pos_payment .layer-container .contents .inner-contents {
  overflow: unset;
  border: 0;
  border-bottom: 1px dashed var(--border);
  padding: 0 0 10px;
}
#pos_payment .layer-container .contents .inner-contents .wrap {
  gap: 0 15px;
  display: flex;
}
#pos_payment .layer-container .contents .input-form {
  flex-flow: column;
}
#pos_payment .layer-container .contents .input-form li {
  width: 100%;
}
#pos_payment .layer-container .contents .input-form li .label {
  width: 80px;
}
#pos_payment .layer-container .contents .input-form li .select-list {
  z-index: 99999;
}
#pos_payment .layer-container .contents .btns {
  margin-top: 10px;
  gap: 10px;
  justify-content: center;
  display: flex;
}
#pos_payment .layer-container .contents .btns button {
  height: 35px;
  background-color: var(--color1);
  color: var(--white);
  padding: 0 20px;
}

.login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color1_bg);
  display: flex;
}
.login > div {
  width: 50%;
  float: left;
}
.login > div.images {
  padding: 85px;
}
.login > div.images .logo {
  height: 35px;
}
.login > div.images .object {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}
.login > div.form {
  padding: 0 100px;
  background-color: var(--white);
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.1);
  flex-flow: column;
  justify-content: center;
  display: flex;
}
.login > div.form .title {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 65px;
}
.login > div.form ul {
  gap: 40px 0;
  flex-flow: column;
  display: flex;
}
.login > div.form ul li .label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.login > div.form ul li input {
  height: 55px;
  font-size: 17px;
  padding: 0 15px;
  transition: 0.2s ease border-color;
}
.login > div.form ul li input:focus {
  border-color: var(--color1);
}
.login > div.form button {
  height: 55px;
  background-color: var(--color1) !important;
  color: var(--white) !important;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin-top: 65px;
}

.gnb {
  z-index: 99;
  height: 85px;
  padding: 0 45px;
  background-color: var(--white);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  gap: 0 55px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.gnb .logo {
  width: fit-content;
  flex-shrink: 0;
}
.gnb .logo img {
  height: 30px;
}
.gnb .menu {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  align-items: center;
  display: flex;
}
.gnb .menu > li {
  position: relative;
  width: fit-content;
  height: 100%;
  padding: 0 25px;
  cursor: pointer;
  align-items: center;
  display: flex;
}
.gnb .menu > li:first-child {
  padding-left: 0;
}
.gnb .menu > li:last-child {
  padding-right: 0;
}
.gnb .menu > li > button {
  font-size: 20px;
}
.gnb .menu > li > ul {
  position: absolute;
  top: 85px;
  left: 50%;
  z-index: 1;
  cursor: initial;
  transform: translateX(-50%);
  padding: 15px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  border: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.gnb .menu > li > ul .title {
  font-size: 24px;
  font-weight: 700;
}
.gnb .menu > li > ul {
  border: 1px solid var(--color1);
  gap: 0 20px;
  display: none;
}
.gnb .menu > li > ul > li {
  width: fit-content;
  min-width: 200px;
}
.gnb .menu > li > ul > li button {
  width: max-content;
  padding: 0 10px;
}
.gnb .menu > li > ul > li > button {
  color: var(--color1);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: text;
}
.gnb .menu > li > ul > li ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.gnb .menu > li > ul > li ul li:last-child {
  border-bottom: 0;
}
.gnb .menu > li > ul > li ul li.favorite {
  background: url("../images/favorite.png") no-repeat calc(100% - 10px) center;
}
.gnb .menu > li > ul > li ul li.favorite button {
  padding-right: 35px;
}
.gnb .menu > li > ul > li ul li button {
  transition: 0.2s ease color;
}
.gnb .menu > li > ul > li ul li button:hover {
  color: var(--color1_sub1);
  font-weight: 700;
}
.gnb .menu > li:hover > ul {
  display: flex;
}
.gnb .info {
  width: fit-content;
  flex-shrink: 0;
  gap: 0 10px;
  align-items: center;
  display: flex;
}
.gnb .info .profile {
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--color1_bg);
}
.gnb .info .name {
  font-family: var(--sub_font), sans-serif;
  cursor: pointer;
}
.gnb .info button {
  margin-left: 10px;
}

.container .ad {
  padding: 55px 120px;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  background-color: #000;
  border-radius: 10px;
}
.container .favorite-menus {
  gap: 10px;
  display: flex;
}
.container .favorite-menus .add-btn, .container .favorite-menus .link {
  height: 35px;
  background-color: var(--color1) !important;
  color: var(--white) !important;
  padding: 0 15px;
  border-radius: 5px;
  cursor: pointer;
  gap: 0 15px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.container .favorite-menus .add-btn button, .container .favorite-menus .link button {
  color: inherit;
}
.container .favorite-menus .add-btn {
  background-color: var(--black9) !important;
  display: flex;
}
.container .favorite-menus .links {
  gap: 10px;
  display: flex;
}
.container .conditions {
  gap: 20px;
  display: flex;
}
.container .conditions .count {
  width: 100%;
  gap: 20px;
  flex-flow: column;
  display: flex;
}
.container .conditions .count .sales {
  height: 100%;
  padding: 25px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
}
.container .conditions .count .talk {
  height: 250px;
  padding: 25px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  border-color: var(--color1_sub2);
  background-color: var(--color1_bg);
  flex-shrink: 0;
}
.container .conditions .reservation {
  width: 100%;
  max-width: 720px;
  padding: 25px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
.container .conditions .reservation .title-wrap {
  flex-shrink: 0;
}
.container .conditions .reservation .title-wrap button {
  height: 35px;
  background-color: var(--color1) !important;
  color: var(--white) !important;
  padding: 0 15px;
  flex-shrink: 0;
  gap: 0 8px;
  align-items: center;
  display: flex;
}
.container .conditions .reservation .calendar {
  height: 100%;
  padding: 15px 0;
}
.container .conditions .reservation .calendar .controls {
  padding: 0 25px;
  justify-content: space-between;
}
.container .conditions .reservation .calendar .yoil {
  font-size: 20px;
}
.container .conditions .reservation .calendar .day {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--black9);
  margin: 0 auto;
}
.container .conditions .reservation .calendar .day.today {
  background-color: var(--color1);
  border-radius: 50%;
  color: var(--white);
}
.container .conditions .reservation .calendar .dot {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color1);
  margin: 0 auto;
}
.container .conditions .reservation .status-list {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  flex-shrink: 0;
}
.container .conditions .reservation .status-list ul {
  overflow-y: auto;
  max-height: 75px;
  gap: 10px 0;
  flex-flow: column;
  display: flex;
}
.container .conditions .reservation .status-list ul li {
  gap: 0 15px;
  align-items: center;
  display: flex;
}
.container .conditions .reservation .status-list ul li img {
  flex-shrink: 0;
}
.container .conditions .reservation .status-list ul li .date {
  font-family: var(--sub_font), sans-serif;
  font-weight: 500;
  flex-shrink: 0;
}
.container .conditions .reservation .status-list ul li .content {
  padding: 0 15px 0 35px;
  color: var(--bbb);
}
.container .board {
  padding: 25px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
}
.container .board .category {
  border-bottom: 4px solid var(--color1_sub2);
  gap: 0 30px;
  display: flex;
}
.container .board .category li {
  position: relative;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--border);
  cursor: pointer;
  transition: 0.2s ease color;
}
.container .board .category li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 1;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: 0.2s ease background-color;
}
.container .board .category li.active {
  color: var(--color1_sub1);
}
.container .board .category li.active:before {
  background-color: var(--color1_sub1);
}
.container .board .list {
  padding-top: 15px;
  margin-bottom: -10px;
}
.container .board .list li {
  padding: 15px 0;
  border-top: 1px solid var(--border);
  cursor: pointer;
  gap: 0 15px;
  align-items: center;
  display: flex;
}
.container .board .list li:first-child {
  border-top: 0;
}
.container .board .list li:hover .link {
  text-decoration: underline;
}
.container .board .list li .badge {
  width: 65px;
  height: 25px;
  font-size: 13px;
  background-color: var(--color1_sub2);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
.container .board .list li .badge.ing {
  background-color: var(--color1_sub1);
  color: var(--white);
}
.container .board .list li .badge.complete {
  background-color: var(--color1);
  color: var(--white);
}
.container .board .list li .link {
  overflow: hidden;
  width: 100%;
  gap: 0 35px;
  display: flex;
}
.container .board .list li .link div {
  width: 100%;
}
.container .board .list li .link div.subject {
  overflow: hidden;
  width: 180px;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}
.container .board .list li .link div.content {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--bbb);
}
.container .board .list li .date {
  width: fit-content;
  flex-shrink: 0;
}
.container .order-entry .search-form .promotion {
  display: none;
}
.container .order-entry .wrap .table-wrap {
  width: 100%;
  overflow: hidden;
  flex-flow: column;
}
.container .order-entry .wrap .table-wrap table {
  width: 100%;
}
.container .order-entry .wrap .table-wrap table td {
  text-align: center;
}
.container .order-entry .wrap .inner-contents {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid var(--border);
}
.container .order-entry .wrap .inner-contents > li {
  height: 100%;
  display: none;
}
.container .order-entry .wrap .inner-contents > li.active {
  display: block;
}
.container .order-entry .wrap .inner-contents > li.active.normal {
  display: flex;
}
.container .order-entry .wrap .inner-contents > li.normal {
  gap: 10px;
  flex-flow: column;
}
.container .order-entry .wrap .inner-contents > li.normal .top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.container .order-entry .wrap .inner-contents > li.normal .top .input-form {
  width: fit-content;
}
.container .order-entry .wrap .inner-contents > li.normal .top .input-form li {
  width: 100%;
}
.container .order-entry .wrap .inner-contents > li.normal .top .input-form li .label {
  width: fit-content;
}
.container .order-entry .wrap .inner-contents > li.normal .top .input-form li .search {
  width: 80px;
}
.container .order-entry .wrap .inner-contents > li.normal .top .txt span {
  color: var(--red);
  font-weight: 500;
}
.container .order-entry .wrap .cart-list textarea {
  margin-top: 15px;
}
.container .order-parts .order-grid {
  height: 200px;
}
.container .optimal-inventory .form-title {
  justify-content: unset;
}
.container .optimal-inventory .form-title .form {
  width: 100%;
  margin-left: 30px;
  gap: 3px;
  display: flex;
}
.container .optimal-inventory .form-title .form input {
  width: 70px;
  height: 28px;
  font-size: 13px;
  padding: 0 5px;
}
.container .inventory-adjustment-history .wrap {
  overflow: hidden;
}
.container .inventory-adjustment-history .wrap .history {
  overflow: hidden;
  width: 350px;
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
.container .inventory-adjustment-history .wrap .history-detail {
  overflow: hidden;
  width: 100%;
  flex-flow: column;
  display: flex;
}
.container .inventory-adjustment-history .wrap .form-title {
  margin-bottom: 10px;
}
.container .client-registration .wrap {
  gap: 20px;
  display: flex;
}
.container .client-registration .wrap .title-wrap.form-title,
.container .client-registration .wrap .title-wrap.grid-title {
  margin-bottom: 10px;
}
.container .client-registration .wrap .input-form > li {
  width: calc(33.333% - 10px);
}
.container .client-registration .wrap .manager {
  width: 450px;
  flex-shrink: 0;
  flex-flow: column;
  display: flex;
}
.container .client-registration .wrap .manager .tabulator {
  height: 100%;
}
.container .intra-member .input-form input:disabled + .icon {
  cursor: no-drop;
}
.container .intra-member-permission .table-wrap tr.hide {
  display: none;
}
.container .intra-member-permission .table-wrap tr td .chk-wrap {
  justify-content: center;
}
.container .intra-member-permission .table-wrap tr td:first-child .chk-wrap {
  justify-content: unset;
}
.container .intra-member-permission .table-wrap tr td .search-wrap {
  gap: 0 2px;
  display: flex;
}
.container .intra-member-permission .table-wrap tr td .search-wrap .select-wrap > input:read-only {
  background-color: var(--white) !important;
  color: var(--black3) !important;
  cursor: pointer;
}
.container .intra-member-permission .table-wrap tr td .search-wrap .select-wrap .select-list {
  border-color: var(--border);
}
.container .intra-member-permission .table-wrap tr.color-row {
  background-color: var(--color1_bg);
}
.container .intra-member-permission .table-wrap tr.color-row td:first-child {
  position: relative;
  padding-right: 35px;
}
.container .intra-member-permission .table-wrap tr.color-row td:first-child button {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.2s ease transform;
}
.container .intra-member-permission .table-wrap tr.color-row td:first-child button.active {
  transform: rotate(180deg);
}
.container .order-registration .inner-container .inner-contents li .cal-discount {
  justify-content: right;
  display: flex;
}
.container .order-registration .inner-container .inner-contents li .cal-discount input {
  width: 130px;
}
.container .order-registration .inner-container .inner-contents li .cal-discount .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  aspect-ratio: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}
.container .order-registration .inner-container .inner-contents li .grid {
  max-height: 724px;
  margin-top: 10px;
}
.container .order-registration .inner-container .inner-contents li .grid .tabulator-placeholder[tabulator-render-mode=virtual] {
  min-height: 100%;
}
.container .order-registration .inner-container .cart-wrap {
  width: 350px;
  flex-shrink: 0;
}
.container .order-registration .inner-container .cart-wrap table {
  width: 100%;
  margin-top: 20px;
}
.container .order-registration .inner-container .cart-wrap table td {
  padding: 2px;
}
.container .order-registration .inner-container .cart-wrap table td input {
  color: var(--black3) !important;
  background-color: var(--white) !important;
  cursor: pointer !important;
}
.container .order-registration .inner-container .cart-wrap > button {
  width: 100%;
  height: 40px;
  background-color: var(--color1);
  color: var(--white);
  font-size: 15px;
  margin-top: 10px;
}

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