.wrap {
  width: 100%;
  min-width: 1366px;
  display: flex;
  position: relative;
  background-color: #fafafa;

  .content_box {
    width: 1px;
    flex: 1;
  }
}

.none_scroll {
  overflow: hidden !important;
}

.none_padding {
  padding: 0 !important;
}

/* 사이드 메뉴 바 */

.nav_box {
  width: 68px;
  height: 100vh;
  position: sticky;
  top: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: 0.6s;
  border-right: 1px solid #eaeaea;

  .nav_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 16px 16px 32px;

    .logo {
      cursor: pointer;
      width: 32px;
      height: 32px;
      background: url("/static/asset/images/common/logo_hidden.svg") no-repeat;
      background-size: cover;
      transition: 0.6s;
    }

    .hospital_logo {
      display: flex;
      align-items: center;
      gap: 10px;

      .hospital_thumb {
        width: 32px;
        height: 32px;
        box-sizing: border-box;
        border-radius: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hospital_name {
        font-size: 16px;
        line-height: 24px;
        transition: 0.6s;
        display: none;
      }
    }
  }

  &.active .nav_top {
    justify-content: flex-start;

    .hospital_logo .hospital_name {
      display: block;
    }
  }

  .nav_bot {
    width: 100%;
    flex: 1;
    overflow-y: auto;
    -ms-overflow-style: none;

    /* IE and Edge */
    scrollbar-width: none;

    /* Firefox */

    &::-webkit-scrollbar {
      width: 100%;
      flex: 1;
      overflow-y: auto;
    }

    width: 100%;
    flex: 1;

    .nav_list {
      width: 100%;
      height: 100%;

      .nav_item {
        width: 100%;
        box-sizing: border-box;
        transition: 0.6s;
        max-height: 56px;
        overflow: hidden;

        .nav_depth1 {
          width: 100%;
          height: 56px;
          box-sizing: border-box;
          padding: 12px 22px;
          display: flex;
          align-items: center;
          gap: 16px;
          cursor: pointer;
          border-radius: 16px;
          position: relative;
          transition: 0.6s;

          img {
            width: 20px;
            height: 20px;
          }

          .icon_a {
            display: none;
          }

          .depth_name {
            font-size: 14px;
            line-height: 24px;
            color: #454545;
            opacity: 0;
            white-space: nowrap;
          }
        }

        .depth2_list {
          width: 100%;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
          overflow: hidden;
          padding: 6px 0;

          .nav_depth2 {
            width: 100%;
            padding: 6px 0 6px 50px;
            box-sizing: border-box;
            cursor: pointer;

            .depth_name {
              font-size: 14px;
              line-height: 17px;
              color: #454545;
            }
          }
        }

        &.nav_arr .nav_depth1::before {
          content: "";
          width: 20px;
          height: 20px;
          background: url("/static/asset/images/common/icon_arr_down.svg") no-repeat;
          background-size: cover;
          position: absolute;
          right: 24px;
          top: 50%;
          transform: translate(0, -50%);
          transition: transform 0.6s, opacity 0.6s;
          opacity: 0;
        }

        &.active {
          .nav_depth1 {
            &::after {
              content: "";
              width: calc(100% - 20px);
              height: calc(100% - 8px);
              background-color: #751785;
              border-radius: 16px;
              position: absolute;
              left: 50%;
              top: 50%;
              transform: translate(-50%, -50%);
              z-index: -1;
            }

            .icon_b {
              display: none;
            }

            .icon_a {
              display: flex;
            }

            .depth_name {
              color: #fff;
            }
          }

          .depth2_list .nav_depth2.current .depth_name {
            color: #7e1785;
          }
        }

        &.nav_arr.active .nav_depth1::before {
          background: url("/static/asset/images/common/icon_arr_down_w.svg") no-repeat;
          transform: translate(0, -50%) rotate(180deg);
        }
      }
    }
  }

  .nav_btn {
    width: 20px;
    height: 120px;
    background-color: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 8px 0px 14px 0 rgba(0, 0, 0, 0.04);
    position: absolute;
    bottom: 100px;
    right: -1px;
    transform: translate(100%, 0);
    cursor: pointer;

    img {
      width: 12px;
      transform: rotate(180deg);
      transition: 0.6s;
    }
  }

  &.active {
    width: 224px;

    .logo {
      width: 130px;
      height: 32px;
      background: url("/static/asset/images/common/logo.svg") no-repeat;
      background-size: cover;
    }

    .nav_btn img {
      transform: rotate(0deg);
    }

    .nav_bot .nav_list .nav_item {
      .nav_depth1 {
        padding: 12px 24px;

        .depth_name {
          opacity: 1;
        }
      }

      &.nav_arr .nav_depth1 {
        padding-right: 44px;

        &::before {
          opacity: 1;
        }
      }
    }
  }
}

/* 해더 */

.wrap .content_box {
  header {
    width: 100%;

    .h_wrap {
      width: 100%;
      height: 58px;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      padding: 0 20px;
      background-color: #fff;
      border-bottom: 1px solid #eaeaea;
    }

    .logo_white {
      width: 130px;
      margin-right: 12px;
    }

    .h_left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .title {
      font-size: 18px;
      font-family: 'notokr-bold';
      color: #222;
    }

    .bookmark {
      width: 24px;
      height: 24px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url("/static/asset/images/common/icon_bookmark.svg");

      &.active {
        background-position: center;
        background-image: url("/static/asset/images/common/icon_bookmark_active.svg");
      }
    }

    .h_right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;

      .user_info {
        display: flex;
        align-items: center;
        cursor: pointer;
        gap: 8px;

        .user_name {
          font-size: 16px;
          color: #222;
          font-family: 'notokr-bold';
        }

        .edit_icon {
          width: 24px;
          height: 24px;
          background: url("/static/asset/images/common/icon_setting.svg") no-repeat;
          background-size: cover;
        }
      }

      .btn_logout {
        width: 32px;
        height: 32px;
        background: url("/static/asset/images/common/icon_logout.svg") no-repeat;
        background-size: cover;
        cursor: pointer;
      }

      .h_btn {
        display: flex;
        align-items: center;
        gap: 12px;

        .h_btn_item {
          width: 140px;
          display: flex;
          align-items: center;
          justify-content: center;
          box-sizing: border-box;
          padding: 7px;
          font-size: 12px;
          line-height: 18px;
          border: 1px solid #5a5a5a;
          border-radius: 8px;
          color: #454545;
          cursor: pointer;

          &.receipt_btn {
            border-color: #e7385e;
            background-color: #e7385e;
            color: #fff;
          }
        }
      }
    }

    .menu_tab {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;

      &::-webkit-scrollbar {
        height: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }

      .menu_tab_list {
        display: inline-flex;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: row;

        .menu_tab_item {
          min-width: 120px;
          box-sizing: border-box;
          padding: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          position: relative;
          z-index: 0;
          background-color: #fafafa;
          border: 1px solid #eaeaea;
          border-radius: 0 0 12px 12px;
          box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.03);
          margin-left: -12px;
          border-top: none;
          cursor: pointer;

          &:last-child {
            border-bottom-left-radius: 0;
          }

          .menu_title {
            width: 100%;
            box-sizing: border-box;
            padding: 0 16px;
            text-align: center;
            font-size: 13px;
            line-height: 20px;
            white-space: nowrap;
          }

          .menu_close {
            width: 12px;
            height: 12px;
            background: url("/static/asset/images/common/icon_close_12px.svg") no-repeat;
            background-size: cover;
            margin-left: auto;
            display: none;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translate(0, -50%);
          }

          &.current {
            z-index: 10;
            background-color: #fff;

            .menu_title {
              font-family: 'notokr-bold';
              color: #7e1785;
            }
          }

          &:hover .menu_close {
            display: block;
          }
        }
      }
    }
  }

  section {
    width: 100%;
    display: flex;
    min-height: calc(100vh - 99px);
    position: relative;
    overflow: auto hidden;

    &::-webkit-scrollbar {
      width: 16px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 5px solid transparent;
    }

    .footer {
      width: 100%;
      box-sizing: border-box;
      padding: 0 40px 30px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: space-between;

      .info {
        font-size: 12px;
        line-height: 20px;
        color: #777;
      }

      .copyright {
        font-size: 12px;
        color: #ccc;
        margin-top: auto;
        white-space: nowrap;
      }
    }
  }
}

/* 섹션 */

/* 푸터 */

/* 인풋 */

label {
  width: 100%;
  cursor: pointer;

  input {
    width: 100%;
    height: 44px;
    box-sizing: border-box;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #222;

    &.type_b {
      height: 56px;
      padding: 0 16px;
      font-size: 16px;
      border-radius: 12px;
    }

    &::placeholder {
      color: #a9a9a9;
    }

    &:disabled {
      background-color: #f5f5f5;
      color: #777;
    }
  }
}

.chk_box {
  width: auto;
  display: inline-flex;
  align-items: center;

  input[type="checkbox"] {
    display: none;
  }

  .chk_icon {
    width: 20px;
    height: 20px;
    background: url("/static/asset/images/common/icon_chk.svg") no-repeat;
    background-size: cover;
  }

  .chk_txt {
    padding-left: 6px;
    font-size: 14px;
    color: #5a5a5a;
  }

  input:checked ~ .chk_icon {
    background: url("/static/asset/images/common/icon_chk_active.svg") no-repeat;
    background-size: cover;
  }

  &.type_02 {
    width: auto;
    display: inline-flex;
    align-items: center;

    input[type="checkbox"], .chk_icon {
      display: none;
    }

    .chk_txt {
      padding: 7px;
      width: 100%;
      font-size: 13px;
      line-height: 20px;
      box-sizing: border-box;
      border: 1px solid #eaeaea;
      border-radius: 8px;
      color: #454545;
      text-align: center;
    }

    input {
      &:checked ~ .chk_txt {
        border-color: #7e1785;
        color: #7e1785;
        color: #fff;
        background-color: #7e1785;
        border-color: #7e1785;
      }

      &:disabled ~ .chk_txt {
        color: #ccc;
        background-color: #f5f5f5;
      }
    }
  }

  &.type_03 {
    width: auto;
    display: inline-flex;
    align-items: center;

    input[type="checkbox"], .chk_icon {
      display: none;
    }

    .chk_txt {
      padding: 7px;
      width: 100%;
      font-size: 13px;
      line-height: 20px;
      box-sizing: border-box;
      border: 1px solid #eaeaea;
      border-radius: 8px;
      color: #454545;
      text-align: center;
    }

    input {
      &:checked ~ .chk_txt {
        border-color: #7e1785;
        color: #7e1785;
        color: #fff;
        background-color: #7e1785;
        border-color: #7e1785;
      }

      &:disabled ~ .chk_txt {
        color: #ccc;
        background-color: #f5f5f5;
      }
    }
  }
}

.time_list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  .time_item {
    .title {
      font-size: 13px;
      line-height: 20px;
      color: #454545;
      margin-bottom: 6px;
    }

    .time_box {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;

      .chk_box {
        width: calc(25% - 6px);
        box-sizing: border-box;
        flex: initial;
        width: calc(25% - 6px);
        box-sizing: border-box;
        flex: initial;
      }
    }
  }
}

.chk_box.type_radio {
  .chk_icon {
    width: 44px;
    height: 24px;
    background-color: #f5f5f5 !important;
    border: 1px solid #eaeaea;
    position: relative;
    background-image: none !important;
    border-radius: 12px;

    &::before {
      content: "";
      width: 16px;
      height: 16px;
      background-color: #ccc;
      border-radius: 100%;
      position: absolute;
      top: 50%;
      left: 3px;
      transform: translate(0, -50%);
      transition: 0.4s;
    }
  }

  input:checked ~ .chk_icon::before {
    background-color: #4065c2;
    left: calc(100% - 20px);
    background-color: #4065c2;
    left: calc(100% - 20px);
  }
}

.radio_box {
  display: flex;
  align-items: center;
  cursor: pointer;

  .radio_icon {
    width: 24px;
    height: 24px;
    background: url("/static/asset/images/common/icon_radio_unactive.svg") no-repeat;
    background-size: cover;
    position: relative;
    cursor: pointer;
  }

  .radio_txt {
    padding-left: 10px;
    user-select: none;
    font-size: 14px;
    white-space: nowrap;
  }

  input {
    display: none;

    &:checked ~ .radio_icon {
      background: url("/static/asset/images/common/icon_radio_active.svg") no-repeat;
      background-size: cover;
    }

    &:checked ~ .radio_txt {
      color: #000;
    }
  }
}

.radio_wrap {
  box-sizing: border-box;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

select {
  width: 108px;
  height: 44px;
  padding: 0 40px 0 12px;
  font-size: 14px;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
}

.input_item {
  position: relative;
  display: flex;

  &.type_02 {
    flex-wrap: wrap;

    .img_view {
      width: 100%;
      height: 246px;
      border-radius: 12px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }
  }

  &.input_search_icon {
    input {
      padding-right: 40px;
    }

    .search_btn {
      width: 20px;
      height: 20px;
      position: absolute;
      right: 12px;
      top: 12px;
      cursor: pointer;
      background: url("/static/asset/images/common/icon_search.svg") no-repeat;
      background-size: cover;
    }
  }

  &.p_btn_input {
    gap: 12px;

    label {
      flex: 1;
    }

    .produce_btn {
      width: 80px;
      height: 44px;
      font-size: 14px;
      line-height: 20px;
      box-sizing: border-box;
      padding: 11px;
      color: #7e1785;
      border: 1px solid #7e1785;
      border-radius: 8px;
      text-align: center;
    }
  }

  &.type_txt {
    gap: 10px;

    .txt_btn {
      min-width: 74px;
      height: 44px;
      box-sizing: border-box;
      padding: 7px 11px;
      text-align: center;
      border: 1px solid #7e1785;
      border-radius: 8px;
      font-size: 14px;
      color: #7e1785;
    }
  }
}

.input_box {
  position: relative;
  display: flex;
  gap: 16px;
  width: 100%;
}

.page_detail {
  .input_box {
    width: auto;
    align-items: center;
    gap: 12px;

    .txt {
      font-size: 14px;
      line-height: 20px;
    }
  }

  .input_deposit .input_body {
    justify-content: space-between;

    &.type_txt label {
      display: flex;
      gap: 8px;
    }
  }
}

.input_box {
  &.type_icon {
    input {
      padding-right: 40px;
    }

    .icon_btn {
      width: 20px;
      height: 20px;
      background: url("/static/asset/images/common/icon_calender.svg") no-repeat;
      background-size: cover;
      position: absolute;
      right: 12px;
      top: 12px;
      cursor: pointer;

      &.time_btn {
        background: url("/static/asset/images/common/icon_time.svg") no-repeat;
        background-size: cover;
      }
    }
  }

  &.txt_input {
    gap: 12px;
    align-items: center;

    span {
      font-size: 13px;
      color: #454545;
    }
  }
}

.ip_head {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 16px;

  .title {
    font-size: 14px;
    line-height: 20px;
    color: #222;
  }
}

.input_wrap {
  padding-top: 16px;

  &:first-child {
    padding-top: 0;
  }

  .input_item.send_layout {
    display: flex;
    align-items: center;
    gap: 24px;

    .input_box {
      display: flex;
      align-items: center;
      gap: 12px;
      width: auto;

      span {
        font-size: 13px;
        line-height: 20px;
        color: #454545;
      }

      &.first label {
        width: 60px;
      }

      &.last {
        width: 1px;
        flex: 1;
      }
    }

    .delete_btn {
      width: 16px;
      height: 16px;
      background: url("/static/asset/images/common/icon_delete.svg") no-repeat;
      background-size: cover;
      margin-left: -12px;
    }
  }

  .add_btn {
    padding: 7px 15px;
    border: 1px solid #e7385e;
    border-radius: 8px;
    color: #e7385e;
    font-size: 14px;
    margin-top: 24px;
  }
}

/* 버튼 */

.btn_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn_item {
  font-size: 14px;
  line-height: 18px;
  font-family: 'notokr-bold';
  border: 1px solid transparent;
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}

.btn_list {
  .btn_item {
    flex: 1 1 0;
    font-size: 14px;
    line-height: 18px;
    font-family: 'notokr-bold';
    border: 1px solid transparent;
    box-sizing: border-box;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
  }

  &.type_02 .btn_item {
    flex: inherit;
    width: 170px;
  }
}

.btn_item.btn_36 {
  flex: inherit;
  padding: 7px 4px;
  font-size: 12px;
  line-height: 18px;
  font-family: 'notokr-medium';
}

.pm_color {
  border-color: #7e1785 !important;
  background-color: #7e1785 !important;
  color: #fff !important;
}

.pm_l_color {
  border-color: #7e1785 !important;
  color: #7e1785 !important;
}

.c_color {
  border-color: #454545 !important;
  background-color: #454545 !important;
  color: #fff !important;
}

.c_l_color {
  border-color: #454545 !important;
  color: #454545 !important;
}

.c_red {
  color: #e7385e;
  border-color: #dd3434;
  background-color: transparent;
}

.btn_item.disabled {
  color: #fff;
  border-color: #777;
  background-color: #777;
  cursor: inherit;
}

.b_btn {
  border-color: #454545;
  background-color: #454545;
  color: #fff;
}

/* 로그인 */

.wrap.type_login {
  .content_box section {
    min-height: calc(100vh - 58px);
  }

  .nav_box {
    display: none;
  }

  .content_box {
    header {
      background-color: #7E1785;
      display: flex;
      align-items: center;
      height: 58px;
      box-sizing: border-box;
      padding: 0 20px;

      .h_right .h_btn .h_btn_item.manual_btn {
        background-color: #fff;
        border-color: #fff;
      }

      .title {
        color: #fff;
      }
    }

    section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }
}

.login_box {
  margin: auto;
  width: 420px;
  box-sizing: border-box;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 24px;

  .logo {
    width: 130px;
    margin: -16px 0 32px auto;
  }

  .login_txt {
    font-size: 24px;
    font-family: 'notokr-bold';
    margin-bottom: 40px;
  }

  .input_wrap {
    width: 100%;

    .input_item {
      width: 100%;
      margin-top: 12px;

      &:first-child {
        margin-top: 0;
      }
    }
  }

  .btn_list {
    margin-top: 40px;

    .btn_item {
      border-radius: 12px;
    }
  }

  .login_func {
    margin-top: 12px;
    display: flex;
    align-items: center;

    .pw_find {
      font-size: 14px;
      line-height: 20px;
      color: #5a5a5a;
      margin-left: auto;
      cursor: pointer;
    }
  }

  .login_head {
    padding-bottom: 40px;

    .title {
      font-size: 20px;
      font-family: 'notokr-bold';
      line-height: 30px;
      color: #222;
      padding-bottom: 12px;
    }

    .txt {
      font-size: 16px;
      line-height: 24px;
      color: #222;
    }
  }

  .input_item {
    gap: 12px;
    gap: 12px;

    &.phone_input {
      label {
        flex: 1;
      }

      .send_btn {
        width: 80px;

        &:disabled {
          background-color: #f5f5f5;
          cursor: default;
        }
      }
    }
  }
}

.transfer_success {
  display: none;

  &.active {
    display: flex;
  }
}

.login_box .input_item {
  &.send_input {
    input {
      padding-right: 50px;
    }

    .send_time {
      font-size: 14px;
      line-height: 20px;
      color: #f55165;
      position: absolute;
      right: 12px;
      top: 17px;
    }
  }

  &.transfer_success {
    input {
      padding-right: 50px;
    }

    .send_time {
      font-size: 14px;
      line-height: 20px;
      color: #f55165;
      position: absolute;
      right: 102px;
      top: 17px;

      > * {
        font-size: 14px;
        line-height: 20px;
        color: #f55165;
      }
    }
  }
}

/* 내 정보관리 */

.user_info_box {
  margin: auto;
  width: 452px;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 24px;

  .box_head {
    padding-bottom: 16px;

    .title {
      font-size: 18px;
      font-family: 'notokr-bold';
      line-height: 28px;
      color: #222;
    }

    .txt {
      font-size: 16px;
      line-height: 24px;
      color: #222;
    }
  }

  .input_item {
    gap: 8px;
    margin-top: 8px;

    &:first-child {
      margin-top: 0;
    }

    .input_head {
      width: 110px;
      padding: 12px 4px;

      .title {
        font-size: 14px;
        line-height: 20px;
      }
    }

    .input_body {
      display: flex;
      gap: 0 8px;
      flex-wrap: wrap;
      flex: 1;

      .input_box {
        width: 100%;
        margin-top: 8px;

        &:first-child {
          margin-top: 0;
        }
      }
    }

    &.type_btn .input_body {
      label {
        flex: 1;
      }

      button {
        width: 80px;
        height: 44px;
        font-size: 14px;
        border-radius: 8px;
        padding: 0;
      }

      .phone_input {
        flex-wrap: wrap;
        width: 100%;
        gap: 0 8px;
      }
    }

    .input_body .alert_txt {
      font-size: 12px;
      margin-top: 4px;
      width: 100%;
      color: #d05050;

      &.color_blue {
        color: #4065c2;
      }
    }

    .send_input {
      label {
        position: relative;
      }

      input {
        padding-right: 50px;
      }

      .send_time {
        font-size: 14px;
        line-height: 20px;
        color: #f55165;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translate(0, -50%);
      }
    }

    .phone_chk {
      border-color: #5a5a5a;
      background-color: transparent;
      color: #5a5a5a;
    }
  }
}

button.disabled_btn {
  border-color: #a9a9a9 !important;
  background-color: #a9a9a9 !important;
  color: #fff !important;
}

/* 팝업1 */

.popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none !important;
  align-items: center;
  justify-content: center;
  z-index: 999;
  gap: 20px;

  .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }

  .popup_box {
    width: 400px;
    max-height: 780px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;

    .popup_con {
      width: 100%;
      flex: 1;
      overflow-y: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      padding-top: 16px;
      box-sizing: border-box;

      &.type_02 {
        flex-direction: row;
        gap: 32px;
      }

      &::-webkit-scrollbar {
        width: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }

      .alert {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 40px;
        padding-bottom: 60px;

        &.type_02 {
          gap: 0;
          padding-bottom: 24px;
        }

        img {
          width: 48px;
        }

        .txt {
          font-size: 14px;
          line-height: 20px;
          text-align: center;
        }

        .p_count, .p_point {
          color: #7e1785;
        }

        .title {
          font-size: 18px;
          line-height: 28px;
          padding-top: 24px;
        }

        .txt {
          padding-top: 8px;
        }

        .con_txt {
          padding-top: 24px;
          font-size: 14px;
          text-align: center;
          line-height: 20px;
          color: #454545;
        }

        .upload_list {
          padding-top: 24px;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 16px;

          .upload_item {
            font-size: 13px;
            line-height: 20px;
            color: #454545;

            &.type_fail {
              color: #dd3434;
            }
          }
        }
      }

      .box_list_wrap {
        padding-bottom: 0;
      }
    }

    .result_chk {
      padding-right: 26px;
      font-size: 13px;
      color: #7e1785;
      line-height: 20px;
      position: absolute;
      top: 24px;
      right: 24px;
      cursor: pointer;

      &::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("/static/asset/images/common/icon_result.svg") no-repeat;
        background-size: cover;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
      }
    }

    .p_guide_box {
      width: 100%;
      box-sizing: border-box;
      padding: 12px 18px;
      background-color: #fafafa;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;

      .dots_list {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;

        li {
          width: 100%;
          box-sizing: border-box;
          padding-left: 7px;
          position: relative;
          font-size: 12px;
          color: #777;
          line-height: 14px;

          &::before {
            content: "";
            width: 3px;
            height: 3px;
            border-radius: 100%;
            background-color: #777;
            position: absolute;
            left: 0;
            top: 6px;
          }
        }
      }

      .img_preview {
        display: flex;
        flex-direction: column;
        gap: 4px;

        .txt {
          font-size: 12px;
          line-height: 14px;
          color: #777;
          margin-left: auto;
        }

        img {
          width: 100%;
        }
      }
    }
  }

  .pc_head {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    gap: 10px;

    .input_item {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;

      .title {
        font-size: 14px;
        white-space: nowrap;
      }
    }

    .search_con {
      font-size: 14px;
      line-height: 20px;
    }

    &.type_02 {
      gap: 10px;

      .input_item {
        width: auto;

        select {
          width: 108px;
        }
      }

      .input_search_icon {
        flex: 1;
      }
    }
  }

  .popup_box {
    .popup_con {
      &.type_row {
        flex-direction: row;
      }

      .flex_box {
        gap: 24px;
      }

      .input_basic {
        flex: 1;

        .pc_head {
          .title {
            font-size: 14px;
            line-height: 20px;
          }

          .chk_box {
            margin-left: auto;
          }
        }
      }

      .side_list {
        width: 220px;
        display: flex;
        flex-direction: column;

        .side_head {
          width: 100%;
          height: 44px;
          display: flex;
          align-items: center;

          .title {
            font-size: 14px;
            line-height: 20px;
            color: #454545;
          }

          &.type_02 {
            height: auto;
            padding-bottom: 16px;
          }
        }

        .side_body {
          flex: 1;
          box-sizing: border-box;
          border: 1px solid #eaeaea;
          border-radius: 12px;
          background-color: #fafafa;
          padding: 12px;
          overflow-y: auto;

          &::-webkit-scrollbar {
            width: 12px;
            height: 12px;
          }

          &::-webkit-scrollbar-thumb {
            background-color: #eaeaea;
            border-radius: 24px;
            background-clip: padding-box;
            border: 4px solid transparent;
          }

          .p_promotion_list {
            width: 100%;

            .p_promotion_item {
              width: 100%;
              box-sizing: border-box;
              padding: 11px 11px;
              display: flex;
              align-items: center;
              border: 1px solid transparent;
              border-radius: 8px;
              cursor: pointer;
              font-size: 14px;
              line-height: 20px;

              &.current {
                background-color: #fff;
                border-color: #a679b5;
                color: #7e1785;
              }
            }
          }
        }
      }

      .side_con {
        flex: 1;
        width: 1px;

        .p_sc_head {
          width: 100%;
          margin-bottom: 16px;

          .title {
            font-size: 14px;
            line-height: 20px;
          }
        }

        .p_search_box {
          width: 100%;
          margin-bottom: 16px;
        }
      }
    }

    .popup_top {
      width: 100%;
      display: flex;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid #454545;

      .popup_title {
        font-size: 18px;
        font-family: 'notokr-bold';
        line-height: 28px;
      }

      .popup_close {
        width: 24px;
        height: 24px;
        background: url("/static/asset/images/common/icon_close.svg") no-repeat;
        background-size: cover;
        cursor: pointer;
        margin-left: auto;
      }
    }

    .popup_bot .btn_list .btn_item {
      height: 44px;
    }

    &.size_740 {
      width: calc(100% - 40px);
      max-width: 740px;
      padding: 20px;
      box-sizing: border-box;

      .popup_bot {
        padding-top: 20px;
      }
    }

    &.size_400 {
      width: calc(100% - 40px);
      max-width: 400px;
      padding: 20px;
      box-sizing: border-box;

      .popup_bot {
        padding-top: 20px;
      }
    }

    &.size_1280 {
      width: calc(100% - 40px);
      max-width: 1280px;
      padding: 20px;
      box-sizing: border-box;

      .popup_bot {
        padding-top: 20px;
      }
    }

    &.size_644 {
      width: calc(100% - 40px);
      max-width: 644px;
      padding: 20px;
      box-sizing: border-box;

      .popup_bot {
        padding-top: 20px;
      }
    }

    &.size_660 {
      width: calc(100% - 40px);
      max-width: 660px;
      padding: 20px;
      box-sizing: border-box;

      .popup_bot {
        padding-top: 20px;
      }
    }

    &.size_1200 {
      width: calc(100% - 40px);
      max-width: 1200px;
      padding: 20px;
      box-sizing: border-box;
    }

    &.size_1000 {
      .popup_bot {
        padding-top: 20px;
      }

      width: calc(100% - 40px);
      height: 90vh;
      max-width: 1000px;
      max-height: 40vh;
      padding: 20px;
      box-sizing: border-box;
      overflow-y: auto;
    }

    .preview_box {
      width: 300px;
      background-color: #f8f4fb;
      border-radius: 24px;
      box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
      position: absolute;
      right: -24px;
      top: 0;
      transform: translate(100%, 0);
      box-sizing: border-box;
      padding: 24px 20px 20px;
      max-height: 700px;
      display: none;
      flex-direction: column;
    }

    &.preview_active .preview_box {
      display: flex;
    }

    .preview_box {
      .preview_head {
        width: 100%;
        padding-bottom: 12px;

        .txt {
          font-size: 14px;
          line-height: 20px;
          color: #7e1785;
        }
      }

      .preview_body {
        flex: 1;
        display: flex;
        flex-direction: column;

        .title {
          font-size: 16px;
          line-height: 24px;
          padding-bottom: 12px;
        }

        .preview_con {
          flex: 1;
          width: 100%;
          box-sizing: border-box;
          background-color: #fff;
          border: 1px solid #debff0;
          border-radius: 10px;
          padding: 15px;

          .txt {
            font-size: 14px;
            line-height: 20px;
          }

          .p_img_box {
            width: 100%;
            padding-top: 20px;

            img {
              width: 100%;
            }
          }
        }
      }
    }

    &.type_02 {
      .popup_top {
        border-bottom: none;
      }

      .popup_con {
        padding-top: 0;
      }
    }
  }

  .popup_table_wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    border-top: 1px solid #454545;

    &.type_y {
      overflow: auto;
    }

    &::-webkit-scrollbar {
      width: 12px;
      height: 12px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 4px solid transparent;
    }

    .popup_table {
      display: inline-flex;
      min-width: 100%;

      table {
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%;

        th {
          white-space: nowrap;
          font-weight: 500;
          font-size: 14px;
          line-height: 20px;
          box-sizing: border-box;
          padding: 12px;
          text-align: center;
          border-bottom: 1px solid #ccc;
        }

        td {
          font-size: 14px;
          line-height: 20px;
          box-sizing: border-box;
          padding: 12px;
          text-align: center;
          border-bottom: 1px solid #ccc;
        }

        th {
          color: #000;
        }

        td {
          color: #454545;

          &.max_td {
            min-width: 160px;
          }

          &.title {
            max-width: 182px;

            p {
              width: 100%;
              text-overflow: ellipsis;
              overflow: hidden;
              word-break: break-word;
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical;
            }
          }
        }

        .tr_fail {
          background-color: #fff3f4;

          .result_txt {
            color: #dd3434;
          }
        }

        .tr_success .result_txt {
          color: #1a53e6;
        }
      }
    }
  }

  table .count_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    gap: 12px;

    .count_txt {
      text-align: center;
    }

    &.type_02 {
      gap: 4px;

      .count_txt {
        min-width: 24px;
      }

      .count_btn_item {
        margin: 0;
      }
    }
  }

  .p_input_list {
    display: flex;
    align-items: center;
    gap: 24px;

    .pil_item {
      display: inline-flex;
      align-items: center;
      gap: 16px;

      .pil_head .pil_title {
        font-size: 12px;
        line-height: 18px;
        color: #222;
      }

      .input_item {
        width: 106px;

        input {
          text-align: right;
        }
      }
    }
  }

  .sub_popup {
    width: 400px;
    max-height: 700px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: 400px;
    padding: 20px;
    flex-direction: column;
    z-index: 1;
    display: none;
  }

  .popup_box .sub_popup {
    z-index: 1;
    position: absolute;
    right: -20px;
    top: 0;
    transform: translate(100%, 0);
    font-size: 14px;
  }

  .sub_popup {
    &.sub_active {
      display: flex;
    }

    .sp_con {
      width: 100%;
      flex: 1;
      overflow-y: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      padding-top: 16px;
      box-sizing: border-box;

      &::-webkit-scrollbar {
        width: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }
    }

    .sp_top {
      width: 100%;
      display: flex;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid #454545;

      .sp_title {
        font-size: 18px;
        font-family: 'notokr-bold';
        line-height: 28px;
      }

      .sp_close {
        width: 24px;
        height: 24px;
        background: url("/static/asset/images/common/icon_close.svg") no-repeat;
        background-size: cover;
        cursor: pointer;
        margin-left: auto;
      }
    }

    .sp_bot {
      padding-top: 20px;

      .btn_list .btn_item {
        height: 44px;
      }
    }

    &.type_02 {
      .sp_top {
        border-bottom: none;
      }

      .sp_con {
        padding-top: 0;
      }
    }
  }
}

.count_btn {
  width: 54px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.count_btn_item {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: 1px solid #5a5a5a;
  border-radius: 4px;
  cursor: pointer;
  position: relative;

  &.btn_minus::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #5a5a5a;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  &.btn_plus {
    &::before {
      content: "";
      width: 10px;
      height: 1px;
      background-color: #5a5a5a;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    &::after {
      content: "";
      width: 1px;
      height: 10px;
      background-color: #5a5a5a;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
  }
}

.popup {
  .popup_table_wrap .popup_table table .list_btn {
    padding: 7px 11px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    background-color: #454545;
    border: 1px solid #454545;
    margin: -8px auto;
  }

  textarea {
    height: 180px;
  }

  .pw_reset {
    width: 80px;
    height: 36px;
    background-color: #e7385e;
    border: 1px solid #e7385e;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
  }
}

.point_txt {
  color: #7e1785;
}

.p_search_list {
  width: 100%;

  .p_search_item {
    width: 100%;
    box-sizing: border-box;
    padding: 11px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;

    .delete_btn {
      width: 20px;
      height: 20px;
      background: url("/static/asset/images/common/icon_close.svg") no-repeat;
      background-size: cover;
      margin-left: auto;
      display: none;
    }

    &.current {
      background-color: #fff;
      border-color: #a679b5;
      color: #7e1785;

      .delete_btn {
        display: block;
      }
    }
  }
}

.popup {
  .basic_btn {
    min-width: 66px;
    height: 44px;
    border: 1px solid #7e1785;
    font-size: 12px;
    line-height: 18px;
    color: #7e1785;
  }

  &.active {
    display: flex !important;
  }
}

/* 팝업 액티브 */

/* 컨텐츠 */

.contents {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;

  .con_head {
    width: 100%;
    display: flex;
    padding-bottom: 24px;

    .title {
      font-size: 28px;
      font-family: 'notokr-bold';
      line-height: 42px;
      color: #222;
      position: relative;
      display: inline-flex;
      padding-right: 12px;

      &::before {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #e6375e;
        border-radius: 100%;
        position: absolute;
        top: 0;
        right: 0;
      }
    }
  }
}

.page_tab_list {
  display: flex;
  align-items: center;
  gap: 20px;

  .page_tab_item {
    box-sizing: border-box;
    padding-bottom: 4px;
    font-size: 14px;
    font-family: 'notokr-bold';
    line-height: 20px;
    color: #a9a9a9;
    position: relative;
    cursor: pointer;

    &.current {
      color: #e7385e;

      &::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: #e7385e;
        position: absolute;
        left: 0;
        bottom: 0;
      }
    }
  }
}

.contents .con_body {
  height: 100%;

  > .flex_box {
    height: 100%;

    &.gap_12 {
      gap: 12px;
      align-items: flex-start;
    }
  }
}

.flex_box {
  width: 100%;
  display: flex;

  .right {
    flex: 1;
    min-height: calc(100vh - 228px);
    display: flex;
    flex-direction: column;
  }

  .flex_100 {
    flex: 1;
    min-height: calc(100vh - 228px);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page_detail {
    width: 100%;
    gap: 56px;
    display: flex;

    .detail_item {
      flex: 1 1 0;

      .d_head {
        padding-bottom: 12px;
        border-bottom: 1px solid #454545;

        .title {
          font-size: 18px;
          font-family: 'notokr-bold';
        }
      }

      .d_body .d_con_item {
        width: 100%;
        padding: 16px 0;
        border-top: 1px solid #ccc;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 24px;

        &:last-child {
          padding-bottom: 0;
        }

        &:first-child {
          border-top: none;
        }
      }
    }
  }

  .w_box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
  }
}

/* 검색 박스 */

.search_box {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;

  .input_wrap {
    display: inline-flex;
    gap: 8px 16px;
    flex-wrap: wrap;
    width: 100%;

    .input_search {
      width: 390px;
    }
  }

  .btn_list {
    display: inline-flex;

    .btn_item {
      width: 100px;
      height: 44px;
      font-size: 14px;
      line-height: 20px;
    }
  }

  .input_item {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    .input_head {
      width: auto;
      height: auto;
      padding: 0;

      .title {
        white-space: nowrap;
        font-size: 14px;
        line-height: 20px;
      }
    }

    &.input_period input {
      width: 192px;
      padding-right: 40px;
    }

    &.month_input input {
      width: 120px;
      padding-right: 40px;
    }
  }
}

.input_item.input_period .period_btn {
  width: 20px;
  height: 20px;
  background: url("/static/asset/images/common/icon_calender.svg") no-repeat;
  background-size: cover;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}

.search_box .input_item {
  &.month_input .month_btn {
    width: 20px;
    height: 20px;
    background: url("/static/asset/images/common/icon_calender.svg") no-repeat;
    background-size: cover;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
  }

  &.input_user_name input {
    width: 108px;
  }
}

.input_item.type_icon {
  input {
    width: 192px;
    padding-right: 40px;
  }

  .icon_btn {
    width: 20px;
    height: 20px;
    background: url("/static/asset/images/common/icon_calender.svg") no-repeat;
    background-size: cover;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
  }

  .time_btn {
    background: url("/static/asset/images/common/icon_time.svg") no-repeat;
    background-size: cover;
  }

  .search_btn {
    background: url("/static/asset/images/common/icon_search.svg") no-repeat;
    background-size: cover;
  }
}

.input_box.type_icon .search_btn {
  background: url("/static/asset/images/common/icon_search.svg") no-repeat;
  background-size: cover;
}

.price_input {
  text-align: right;
}

/* 사이드 검색 박스 */

.search_side {
  height: 100%;
  width: 300px;
  margin-right: 24px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  padding: 32px;
  display: flex;
  flex-direction: column;

  &.size_360 {
    width: 360px;
  }

  .search_top {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #222;

    .title {
      font-size: 18px;
      font-family: 'notokr-bold';
      line-height: 28px;
    }
  }

  .search_bot {
    width: 100%;
    flex: 1;
    overflow-y: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    position: relative;

    .input_item {
      width: 100%;
      padding-bottom: 4px;
    }

    .result_wrap {
      width: 100%;
      overflow-y: auto;
      flex-grow: 1;
      height: 1px;

      /*position: absolute;*/
      /*bottom: 0;*/
      /*top: 64px;*/

      &::-webkit-scrollbar {
        width: 16px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 5px solid transparent;
      }

      .result_list {
        width: 100%;

        .result_item {
          width: 100%;
          box-sizing: border-box;
          padding: 12px;
          font-size: 14px;
          line-height: 20px;
          color: #454545;
          margin-top: 4px;
          display: flex;
          align-items: center;
          cursor: pointer;

          &.current {
            background-color: #f8f4fb;
            color: #7e1785;
            font-family: 'notokr-bold';
            border-radius: 8px;

            .edit_input {
              width: calc(100% - 50px);
              height: 20px;
              font-size: 15px;
            }
          }

          &:first-child {
            margin-top: 0;
          }

          .icon_btn_list {
            display: none;
          }
        }
      }

      &.type_edit .result_list .result_item {
        &:first-child {
          margin-top: 0;
        }

        .icon_btn_list {
          align-items: center;
          gap: 8px;
          margin-left: auto;
        }

        &.current .icon_btn_list {
          display: inline-flex;
        }

        .icon_btn_list .icon_btn {
          width: 20px;
          height: 20px;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          cursor: pointer;
          display: flex;
          padding: 0;

          &.edit_btn {
            background-image: url("/static/asset/images/common/icon_pen.svg");
          }

          &.delete_btn {
            background-image: url("/static/asset/images/common/icon_close.svg");
          }
        }
      }
    }
  }
}

/* 검색 결과 */

.search_result {
  width: 100%;
  flex: 1;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;

  .sr_top {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 16px;
    flex-wrap: wrap;

    &.type_line {
      border-bottom: 1px solid #222;
      margin-bottom: 16px;
    }

    .title {
      font-size: 18px;
      line-height: 28px;
      color: #222;
    }

    .btn_list {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      margin-left: auto;

      .btn_item {
        padding: 7px 15px;
      }
    }

    .sr_info {
      display: inline-flex;
      align-items: center;
      gap: 15px;

      li {
        font-size: 14px;
        line-height: 20px;
        color: #454545;
        position: relative;

        &::before {
          content: "";
          width: 1px;
          height: 16px;
          background-color: #a9a9a9;
          position: absolute;
          left: -7px;
          top: 2px;
        }

        &:first-child::before {
          display: none;
        }
      }
    }

    .category_list {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      padding-bottom: 16px;
      gap: 8px;
      align-items: center;

      .category_item {
        border: 1px solid #ccc;
        border-radius: 30px;
        background-color: #fafafa;
        box-sizing: border-box;
        padding: 8px 12px;
        display: inline-flex;
        align-items: center;
        gap: 12px;

        .title {
          font-size: 12px;
          line-height: 18px;
        }

        .delete_btn {
          width: 16px;
          height: 16px;
          background: url("/static/asset/images/common/icon_delete.svg") no-repeat;
          background-size: cover;
          cursor: pointer;
        }
      }

      .more_txt {
        font-size: 14px;
        line-height: 20px;
      }
    }

    .sr_flex {
      display: flex;
      align-items: center;
      width: 100%;
    }

    .btn_list_2 {
      display: inline-flex;
      gap: 20px;
      align-items: center;
      margin-left: auto;

      .btn_item {
        position: relative;
        display: flex;
        padding: 0;

        .btn_depth1 {
          display: inline-flex;
          gap: 8px;
          cursor: pointer;

          img {
            width: 20px;
          }

          .title {
            font-size: 14px;
            line-height: 20px;
            color: #222;
          }
        }

        &.btn_point .btn_depth1 .title {
          color: #7e1785;
        }

        .btn_depth2_list {
          opacity: 0;
          pointer-events: none;
          min-width: 116px;
          position: absolute;
          left: 50%;
          bottom: -10px;
          transform: translate(-50%, 100%);
          box-sizing: border-box;
          padding: 8px;
          background-color: #fff;
          border: 1px solid #ccc;
          border-radius: 12px;
          display: flex;
          flex-direction: column;
          z-index: 10;
          transition: 0.4s;
        }

        &.active .btn_depth2_list {
          opacity: 1;
          pointer-events: inherit;
        }

        .btn_depth2_list {
          &::before {
            content: '';
            width: 0;
            height: 0;
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translate(-50%, 0);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 6px solid #ccc;
          }

          &::after {
            content: '';
            width: 0;
            height: 0;
            position: absolute;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 6px solid #fff;
            top: -5px;
            left: 50%;
            transform: translate(-50%, 0);
          }

          .btn_depth2 {
            width: 100%;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;

            &:hover {
              color: #7e1785;
            }
          }
        }
      }
    }

    .sr_flex {
      .category_list {
        flex: 1;
        width: 1px;
        padding-bottom: 0;
        margin-right: 12px;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;

        &::-webkit-scrollbar {
          width: 12px;
          height: 12px;
        }

        &::-webkit-scrollbar-thumb {
          background-color: #eaeaea;
          border-radius: 24px;
          background-clip: padding-box;
          border: 4px solid transparent;
        }
      }

      .amount_box {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 16px;

        .txt_amount {
          font-size: 14px;
          line-height: 20px;
          color: #222;
          display: flex;
          align-items: center;
          gap: 8px;

          span {
            font-size: 16px;
            line-height: 24px;
            color: #222;
          }
        }
      }
    }
  }
}

.flex_item .table_wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  .table_box {
    width: 100%;

    table {
      border-collapse: collapse;
      border-spacing: 0;
      width: 100%;

      .t_head th {
        background-color: #f8f4fb;

        &:first-child {
          border-top-left-radius: 8px;
          border-bottom-left-radius: 8px;
        }

        &:last-child {
          border-top-right-radius: 8px;
          border-bottom-right-radius: 8px;
        }
      }

      .t_body {
        cursor: pointer;

        &:hover {
          .title {
            text-decoration: underline;
          }

          .user_name_box .user_chart {
            display: block;
          }
        }

        .t_btn_txt {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;

          .tbt_time {
            font-size: 14px;
            line-height: 20px;
            color: #454545;
          }

          .tbt_btn {
            width: 60px;
            height: 26px;
            box-sizing: border-box;
            padding: 0;
            border: 1px solid #454545;
            font-size: 12px;
            line-height: 18px;
            margin: 0;
            border-radius: 8px;

            &:disabled {
              opacity: 0.5;
              color: #222;
            }
          }
        }

        .favorite_title {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;

          .title {
            width: auto;
          }

          .item_favorite {
            width: 20px;
            height: 20px;
            background-image: url("/static/asset/images/common/icon_bookmark.svg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 0;
            margin: 0;

            &.active {
              background-image: url("/static/asset/images/common/icon_bookmark_active.svg");
            }
          }
        }
      }

      th, td {
        font-size: 14px;
        line-height: 20px;
        box-sizing: border-box;
        padding: 12px 8px;
        text-align: center;
      }

      th {
        color: #222;
        font-weight: 300;
      }

      td {
        color: #454545;
        border-bottom: 1px solid #eaeaea;
      }

      .pw_reset {
        box-sizing: border-box;
        padding: 8px;
        border: 1px solid #dd3434;
        border-radius: 8px;
        font-size: 14px;
        line-height: 20px;
        cursor: pointer;
        color: #e7385e;
      }

      td {
        button {
          margin: -9px auto -9px;
        }

        &.title {
          width: 356px;
          max-width: 356px;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
        }
      }

      .chk_box {
        display: flex;
        width: 24px;
        margin: -2px auto;
      }
    }
  }
}

/* 페이지네이션 */

.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 60px;

  .p_btn {
    display: inline-flex;
    gap: 2px;
    align-items: center;

    a {
      width: 32px;
      height: 32px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer;

      &.btn_prev {
        background-image: url("/static/asset/images/common/icon_prev.svg");
      }

      &.btn_next {
        background-image: url("/static/asset/images/common/icon_next.svg");
      }

      &.btn_first {
        background-image: url("/static/asset/images/common/icon_arrow_first_next.svg");
      }

      &.btn_last {
        background-image: url("/static/asset/images/common/icon_arrow_last_next.svg");
      }
    }
  }

  .p_num {
    display: inline-flex;
    gap: 2px;

    .num_item {
      min-width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #000;
      opacity: 0.3;
      cursor: pointer;
      border-radius: 8px;

      &.current {
        background-color: #4b4b4b;
        color: #fff;
        opacity: 1;
      }
    }
  }
}

/* 기본 입력 양식 */

.input_basic {
  width: 100%;
  display: flex;
  flex-direction: column;

  .input_item {
    width: 100%;
    margin-top: 8px;
    display: flex;
  }
}

.input_item {
  gap: 8px;

  &:first-child {
    margin-top: 0;
  }

  .input_head {
    padding: 12px 0 12px 4px;
    width: 108px;

    &.type_s {
      width: 82px;
    }
  }
}

.input_basic .input_item {
  .input_head {
    &.type_60 {
      width: 60px;
      padding: 13px 0 13px 4px;

      .title {
        font-size: 12px;
        line-height: 18px;
      }
    }

    .title {
      font-size: 14px;
      line-height: 20px;
      color: #454545;
    }
  }

  .input_body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    &.flex_input label {
      flex: 1 1 0;
    }

    &.type_txt label {
      display: flex;
      align-items: center;
      gap: 8px;

      input {
        flex: 1;
      }

      .txt {
        font-size: 14px;
      }
    }

    &.input_operating_time {
      align-items: center;

      .input_box {
        flex: 1 1 0;
      }
    }

    &.type_wrap {
      flex-wrap: wrap;
    }
  }
}

.input_item {
  .input_body.input_address {
    label:first-child {
      flex: 1;
    }

    .address_search {
      width: 80px;
      height: 44px;
      border: 1px solid #7e1785;
      border-radius: 8px;
      font-size: 14px;
      color: #7e1785;
      cursor: pointer;
    }
  }

  &.type_btn .input_body {
    label {
      flex-grow: 1;
      width: auto;
    }

    button {
      width: 100px;
    }
  }
}

.input_basic {
  .input_item .input_body {
    .input_detail {
      width: 100%;
      padding: 12px 4px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;

      .txt {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        word-break: break-all;

        &.txt_left {
          text-align: right;
        }
      }
    }

    &.charge_item .charge_btn {
      margin: -8px 0 -8px auto;
      width: 73px;
      height: 36px;
      border: 1px solid #7e1785;
      border-radius: 8px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #7e1785;
    }
  }

  &.type_02 .input_item {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
  }

  &.type_03 .input_wrap {
    border-top: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding: 16px 0;

    &:first-child {
      border-top: none;
    }
  }
}

.page_detail .detail_item .d_body .d_con_item .input_item {
  width: 100%;
  margin: 0;

  &.half_item {
    flex: 1 1 0;
  }
}

.input_item.type_multiple {
  gap: 12px;
  align-items: center;
}

.page_detail {
  .input_add_box {
    .box_head {
      width: 100%;
      display: flex;
      box-sizing: border-box;
      padding: 10px 4px;
      margin-bottom: 12px;

      .title {
        font-size: 16px;
        line-height: 24px;
        color: #454545;
      }
    }

    .add_list {
      display: inline-flex;
      flex-direction: column;
      gap: 10px;

      .add_item {
        display: flex;
        gap: 24px;
        position: relative;

        .input_item {
          width: auto;

          input {
            width: 100%;
          }
        }

        .add_remove {
          width: 16px;
          height: 16px;
          background: url("/static/asset/images/common/icon_delete.svg") no-repeat;
          background-size: cover;
          position: absolute;
          right: -12px;
          top: 50%;
          transform: translate(100%, -50%);
          cursor: pointer;
        }
      }
    }

    .add_btn {
      width: 100%;
      height: 40px;
      box-sizing: border-box;
      border: 1px solid #e7385e;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #e7385e;
      margin-top: 10px;
    }

    .add_bot {
      padding-top: 12px;
      margin-top: 12px;
      width: 100%;
      border-top: 1px solid #ccc;
    }
  }

  .detail_item .d_body .d_con_item .input_item {
    .input_head {
      padding: 10px 0 10px 4px;

      &.type_s {
        width: 82px;
      }
    }

    .input_body {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
      align-items: center;
      flex: 1;
    }

    .input_head .title {
      /*font-size: 16px;*/
      /*line-height: 24px;*/
      font-size: 14px;
      line-height: 20px;
    }
  }
}

/* 로딩 */

.loading_box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.3);
}

.loading_icon {
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  border: 5px solid #eaeaea;
  border-top-color: #914196;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 고객관리 */

.t_group_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  .t_group_title {
    height: 100%;
    position: relative;

    .title {
      font-size: 14px;
      line-height: 20px;
      color: #454545;
    }

    .title_list {
      max-width: 800px;
      width: max-content;
      white-space: normal;
      word-break: break-word;
      box-sizing: border-box;
      padding: 12px 20px;
      border: 1px solid #ccc;
      background-color: #fafafa;
      border-radius: 12px;
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translate(-50%, 100%);
      display: none;
      z-index: 10;

      p {
        word-break: break-word;
      }
    }

    &:hover {
      .title {
        text-decoration: underline;
      }

      .title_list {
        display: flex;
      }
    }
  }

  .t_group_title_hover {
    height: 100%;
    position: relative;

    .title {
      font-size: 14px;
      line-height: 20px;
      color: #454545;
    }

    .title_list {
      display: none !important;

      /* 👈 VÔ HIỆU HOVER CŨ */

      p {
        word-break: break-word;
      }
    }

    &:hover {
      .title {
        text-decoration: underline;
      }

      .title_list {
        display: none !important;
      }
    }
  }
}

/* --- CLASS MỚI DÙNG GLOBAL TOOLTIP --- */

/* Underline vẫn giữ */

/* KHÔNG SHOW TOOLTIP CŨ NỮA */

/* GLOBAL TOOLTIP */

.global-tooltip {
  position: fixed !important;
  max-width: 800px;
  width: max-content;
  white-space: normal;
  word-break: break-word;
  box-sizing: border-box;
  padding: 12px 20px;
  border: 1px solid #ccc;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647 !important;
}

.t_group_box .group_edit_btn {
  padding: 4px 12px;
  font-size: 12px;
  line-height: 18px;
  border: 1px solid #7e1785;
  border-radius: 8px;
  margin: -9px 0 !important;
}

.user_name_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  .user_name {
    font-size: 14px;
    line-height: 20px;
    color: #454545;
  }

  .user_chart {
    min-width: 55px;
    height: 26px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #4065c2;
    color: #4065c2;
    font-size: 12px;
    margin: -9px 0 !important;
    display: none;
    padding: 0 15px;
  }
}

/* 그룹팝업 */

.p_user_group .input_search_icon {
  width: 100%;
}

.group_list_wrap {
  width: 100%;
  padding: 16px 0;

  .group_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    .group_item {
      width: 100%;
      cursor: pointer;
      box-sizing: border-box;
      padding: 12px;
      border: 1px solid #ccc;
      font-size: 14px;
      line-height: 20px;
      border-radius: 8px;

      &.active {
        border-color: #a679b5;
      }
    }
  }
}

.p_user_group_edit .group_list_wrap .group_list .input_item {
  input:disabled {
    background-color: transparent;
    border-color: transparent;
  }

  .btn_box {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    button {
      padding: 0;
      font-size: 14px;
      font-family: 'notokr-bold';
      line-height: 20px;
      color: #5a5a5a;

      &.p_group_edit {
        color: #1a53e6;
      }
    }
  }
}

/* 추가 생성 */

.create_box {
  width: 100%;
  padding: 16px 0;

  .create_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    .create_item {
      width: 100%;
      cursor: pointer;
      box-sizing: border-box;
      padding: 12px;
      border: 1px solid #ccc;
      font-size: 14px;
      line-height: 20px;
      border-radius: 8px;
    }

    .group_item.active {
      border-color: #a679b5;
    }

    .input_item {
      input:disabled {
        background-color: transparent;
        border-color: transparent;
      }

      .btn_box {
        display: inline-flex;
        align-items: center;
        gap: 12px;

        button {
          padding: 0;
          font-size: 12px;
          font-family: 'notokr-bold';
          line-height: 18px;
          color: #5a5a5a;

          &.c_edit {
            color: #1a53e6;
          }
        }
      }
    }
  }
}

/* 메세지 전송 */

.popup {
  .input_item select {
    width: 100%;
  }

  textarea {
    resize: none;
  }
}

/* 엑셀 업로드 결과 */

.p_result_count {
  width: 100%;
  padding-bottom: 12px;
  display: flex;
  align-items: center;

  .result_success {
    display: flex;
    align-items: center;
    gap: 4px;

    * {
      font-size: 14px;
      line-height: 20px;
    }

    .result_fail {
      color: #dd3434;
    }
  }

  .result_down {
    display: inline-flex;
    gap: 8px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;

    img {
      width: 20px;
    }

    .title {
      font-size: 14px;
      line-height: 20px;
      color: #7e1785;
    }
  }
}

/* 예약관리 */

.status_txt {
  p {
    display: inline-flex;
    padding-left: 14px;
    font-size: 12px;
    line-height: 18px;
    position: relative;

    &::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 100%;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translate(0, -50%);
    }

    &.status_basic {
      padding-left: 0;

      &::before {
        display: none;
      }
    }
  }

  .status_purple {
    color: #5f1986;

    &::before {
      background-color: #5f1986;
    }
  }

  .status_yellow {
    color: #ffbc0f;

    &::before {
      background-color: #ffbc0f;
    }
  }

  .status_green {
    color: #4eb845;

    &::before {
      background-color: #4eb845;
    }
  }

  .status_blue {
    color: #1a53e6;

    &::before {
      background-color: #1a53e6;
    }
  }

  .status_red {
    color: #dd3434;

    &::before {
      background-color: #dd3434;
    }
  }

  .status_gray {
    color: #777;

    &::before {
      background-color: #777;
    }
  }

  .status_black {
    color: #000;

    &::before {
      background-color: #000;
    }
  }
}

.table_box {
  .t_btn_list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: -3px auto;

    .status_btn {
      min-width: 80px;
      height: 26px;
      box-sizing: border-box;
      padding: 3px 15px;
      border: 1px solid #454545;
      background-color: #454545;
      border-radius: 8px;
      color: #fff;
      font-size: 12px;
      line-height: 18px;
      white-space: nowrap;
      margin: 0 !important;

      &.btn_payment_check {
        border-color: #cd2e65;
        background-color: #cd2e65;
      }

      &.btn_visit_receipt {
        border-color: #914196;
        background-color: #914196;
      }

      &.btn_complete {
        border-color: #5f2d86;
        background-color: #5f2d86;
      }

      &.btn_reservation_cancel, &.btn_receipt_cancel {
        border-color: #cd2e65;
        background-color: transparent;
        color: #cd2e65;
      }

      &.type_01 {
        border-color: #454545;
        background-color: #454545;
        color: #fff;
      }

      &.type_02 {
        border-color: #CD2E65;
        background-color: transparent;
        color: #CD2E65;
      }

      &.type_03 {
        border-color: #4065C2;
        background-color: #4065C2;
        color: #fff;
      }

      &.type_04 {
        border-color: #4065C2;
        background-color: transparent;
        color: #4065C2;
      }

      &.type_05 {
        border-color: #A9A9A9;
        background-color: #A9A9A9;
        color: #fff;
      }
    }
  }

  .t_thumb_box {
    width: 112px;
    height: 76px;
    border-radius: 8px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin: 0 auto;

    &::before {
      content: "";
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      position: absolute;
      left: 0;
      top: 0;
    }
  }

  table .t_body {
    .title_box {
      width: 356px;
      position: relative;
    }

    &:hover {
      background-color: #fafafa;
    }

    .title_box {
      .title {
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
      }

      .guide_txt {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 20px;
        border: 1px solid #ccc;
        background-color: #fafafa;
        border-radius: 12px;
        position: absolute;
        left: 50%;
        bottom: -4px;
        transform: translate(-50%, 100%);
        display: none;
        z-index: 10;

        p {
          word-break: keep-all;
        }
      }

      &:hover .guide_txt {
        display: block;
        line-break: anywhere;

        /*text-align: left;*/
      }
    }
  }
}

/* 예약상세 팝업 */

.popup .input_item.type_icon input {
  width: 100%;
}

/* 문의게시판 */

.type_icon .file_btn {
  background-image: url("/static/asset/images/common/icon_file.svg") !important;
}

.table_box .attachments_icon {
  width: 20px;
  height: 20px;
  background: url("/static/asset/images/common/icon_file.svg") no-repeat;
  background-size: cover;
  margin: 0 auto;
}

.p_qna_detail {
  .p_sub_title {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 4px;
  }

  .input_wrap {
    padding-top: 8px;
    margin-top: 16px;
    border-top: 1px solid #ccc;

    &:first-child {
      padding-top: 0;
      margin-top: 0;
      border-top: none;
    }
  }
}

/* 병원정보 */

.page_detail .input_item .input_body.input_address .address_search {
  min-width: 100px;
  background-color: #454545;
  border-color: #454545;
  color: #fff;
}

.week_list {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;

  &.type_02 {
    gap: 4px;
    padding: 0;

    .chk_box.type_02 {
      flex: 1 1 0;

      .chk_txt {
        min-width: auto;
        width: 100%;
        padding: 11px 4px;
        font-size: 14px;
        line-height: 20px;
      }
    }
  }
}

/* 프로모션 사용관리 */

.refund_btn {
  width: 80px;
  height: 36px;
  border: 1px solid #dd3434;
  background-color: transparent;
  color: #e7385e;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;

  &.disabled {
    border-color: #777;
    background-color: #777;
    color: #fff;
  }
}

.popup {
  .input_basic .input_wrap .input_item .input_body.amount_input input {
    width: 100px;
    flex: inherit;
  }

  &.p_promotion_refund textarea, &.p_promotion_refund_cancel textarea {
    height: 140px;
  }
}

.input_item.type_txt_count label {
  position: relative;

  .txt_count {
    font-size: 12px;
    line-height: 14px;
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #777;
  }
}

/* 데이터없는 경우 */

.none_content {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;

  img {
    width: 56px;
    height: 56px;
  }

  .none_title {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

/* 프로모션등록 */

.popup {
  .product_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    width: 100%;

    .product_item {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      gap: 4px;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;

      &.active {
        border-color: #a679b5;
      }

      .p_title {
        font-size: 14px;
        font-family: 'notokr-bold';
        line-height: 20px;
        color: #454545;
        width: 100%;

        &.type_02 {
          width: calc(100% - 100px);
        }

        .p_company {
          padding-right: 9px;
          position: relative;

          &::before {
            content: "";
            width: 1px;
            height: 14px;
            background-color: #ccc;
            position: absolute;
            right: 3px;
            top: 3px;
          }
        }
      }

      .p_price {
        font-size: 14px;
        line-height: 20px;
        color: #454545;
      }

      .p_num {
        font-size: 12px;
        line-height: 18px;
        color: #777;
      }

      .p_txt {
        width: 100%;
        font-size: 12px;
        line-height: 18px;
        color: #5a5a5a;
      }

      .p_count {
        font-size: 12px;
        line-height: 18px;
        color: #454545;
      }

      .p_detail {
        width: 100%;
        background-color: #f5f5f5;
        box-sizing: border-box;
        padding: 12px;
        border-radius: 12px;
        margin-top: 4px;

        .p_detail_item {
          display: flex;
          flex-wrap: wrap;
          box-sizing: border-box;
          width: 100%;
          border-top: 1px solid #ccc;
          gap: 4px;
          justify-content: space-between;
          padding: 8px 0;

          &:first-child {
            border-top: none;
            padding-top: 0;
          }

          &:last-child {
            padding-bottom: 0;
          }

          .p_detail_title, .p_detail_price {
            font-size: 14px;
            line-height: 20px;
            color: #454545;
          }
        }
      }
    }
  }

  .popup_box .popup_con {
    .input_item .product_list {
      padding: 0;

      .product_item {
        border-color: #f5f5f5;
        background-color: #f5f5f5;

        .p_detail {
          background-color: #f5f5f5;
        }
      }
    }

    .result_wrap {
      width: 100%;
      overflow-y: auto;
      flex-grow: 1;
      padding-top: 16px;

      &::-webkit-scrollbar {
        width: 16px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 5px solid transparent;
      }

      .none_content {
        padding: 40px 0;
      }
    }
  }

  .result_wrap .result_list {
    display: flex;
    gap: 8px;
    flex-direction: column;

    .result_item {
      display: flex;
      align-items: center;
      box-sizing: border-box;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 12px;
      cursor: pointer;
      gap: 10px;

      &.type_02 {
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .rating {
        min-width: 50px;
        box-sizing: border-box;
        padding: 2px 8px;
        font-size: 12px;
        font-family: 'notokr-bold';
        line-height: 18px;
        color: #fff;
        border-radius: 25px;
        text-align: center;
        background-color: #f16d7d;
      }

      &.type_02 .rating {
        min-width: 32px;
        padding: 2px;
        font-size: 10px;
        line-height: 16px;
      }

      .name {
        font-size: 14px;
        line-height: 20px;
      }

      .info_box {
        width: 1px;
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }

      .line_txt {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;

        li {
          position: relative;
          font-size: 14px;
          line-height: 20px;
        }

        &.type_02 li {
          font-size: 13px;
          color: #777;
        }

        li {
          &::before {
            content: "";
            width: 1px;
            height: 16px;
            background-color: #777;
            position: absolute;
            left: -8px;
            top: 3px;
          }

          &:first-child::before {
            display: none;
          }
        }
      }

      .customer_name, .time {
        font-size: 14px;
        line-height: 20px;
      }

      .txt {
        font-size: 14px;
        line-height: 20px;
        color: #777;
      }

      &.active {
        border-color: #a679b5;
      }
    }
  }

  .popup_box .popup_con .radio_wrap {
    padding: 0;
  }

  .product_box {
    width: 100%;

    .product_head {
      width: 100%;
      display: flex;
      align-items: center;
      padding-bottom: 16px;

      .total_list {
        width: 100%;
        display: flex;
        align-items: center;

        .tl_title {
          font-size: 12px;
          line-height: 18px;
          color: #454545;
        }

        .tl_num {
          font-size: 14px;
          font-family: 'notokr-bold';
          line-height: 20px;
          color: #454545;
          margin-left: auto;
        }
      }
    }

    .product_list.type_02 {
      box-sizing: border-box;
      padding-top: 0;

      .product_item {
        border: none;
        cursor: auto;
        padding: 12px;
        background-color: #fafafa;
        border-radius: 8px;

        .p_title {
          width: calc(100% - 36px);
        }

        .delete_btn {
          font-size: 12px;
          line-height: 20px;
          color: #d05050;
          padding: 0;
          cursor: pointer;
        }

        .count_btn {
          width: auto;
          gap: 4px;

          .count_btn_item {
            width: 20px;
            height: 20px;
          }

          .count_num {
            min-width: 24px;
            padding: 2px;
            box-sizing: border-box;
            font-size: 14px;
            line-height: 20px;
            text-align: center;
          }

          .p_price {
            margin-left: auto;
          }
        }

        .p_detail {
          border-radius: 0;
          padding: 12px 0;
          border-top: 1px solid #a9a9a9;
          background-color: transparent;

          .p_detail_item {
            border-color: #eaeaea;
          }
        }
      }
    }
  }
}

/* 결제 정보 */

.accordion_list {
  width: 100%;

  .accordion_item {
    width: 100%;
    margin-top: 8px;

    &:first-child {
      margin-top: 0;
    }

    .title {
      font-size: 12px;
      line-height: 20px;
      color: #454545;
      position: relative;
    }

    .sub_list {
      width: 100%;
      margin-top: 8px;
      display: none;

      .txt {
        font-size: 11px;
        line-height: 20px;
        color: #777;
        margin-top: 4px;

        &:first-child {
          margin-top: 0;
        }
      }
    }

    &.type_event {
      cursor: pointer;

      .title::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("/static/asset/images/common/icon_down.svg") no-repeat;
        background-size: cover;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        transition: 0.6s;
      }

      &.active {
        .title::before {
          transform: translate(0, -50%) rotate(180deg);
        }

        .sub_list {
          display: block;
        }
      }
    }
  }
}

/* 체크 리스트 */

.chk_list {
  width: 100%;

  .chk_line {
    width: 100%;
    border-top: 1px solid #eaeaea;
    box-sizing: border-box;
    padding: 12px 0;

    .chk_line_item {
      font-size: 0;
    }

    &:first-child {
      border-top: none;
      padding-top: 0;
    }

    .sub_list {
      display: flex;
      flex-direction: column;
      padding: 8px 0 0 32px;
      position: relative;
      gap: 8px;
      font-size: 0;

      &::before {
        content: "";
        width: 24px;
        height: 24px;
        background: url("/static/asset/images/common/icon_n.svg") no-repeat;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 8px;
      }
    }
  }
}

.search_result .gray_box {
  width: 100%;
  height: 1px;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid #eaeaea;
  background-color: #fafafa;
  border-radius: 12px;
  overflow-y: auto;

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 6px solid transparent;
  }
}

/* 셀렉트 박스 커스텀 */

.custom_select {
  position: relative;

  .select_btn {
    width: 160px;
    height: 44px;
    box-sizing: border-box;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #222;
    position: relative;
    text-align: left;

    &::before {
      content: "";
      width: 20px;
      height: 20px;
      background: url("/static/asset/images/common/icon_down.svg") no-repeat;
      background-size: cover;
      position: absolute;
      right: 11px;
      top: 11px;
    }
  }

  .select_box {
    display: none;
    width: auto;
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    left: 0;
    bottom: -4px;
    transform: translate(0, 100%);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 12px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);

    &::-webkit-scrollbar {
      width: 12px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 4px solid transparent;
    }

    .chk_list {
      white-space: nowrap;

      .chk_line:last-child {
        padding-bottom: 0;
      }
    }
  }

  &.active .select_box {
    display: block;
  }
}

/* 멤버십 관리 */

.btn_item.membership_cancel {
  width: 80px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7385e;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-family: 'notokr-medium';
}

.popup .popup_con .input_item button {
  font-size: 12px;
}

/*.popup_box .sub_popup{*/
/*    width: 400px;*/
/*    position: absolute;*/
/*    right: -20px;*/
/*    top: 0;*/
/*    tran*/
/*}*/

/* 라이브러리 css 수정*/

.ui-datepicker {
  padding: 0;
}

.ui-widget-header {
  background-color: #f8f4fb;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active {
  border-color: #7e1785;
  background-color: #7e1785;
  color: #fff;
}

.ui-button {
  &:active, &.ui-state-active:hover {
    border-color: #7e1785;
    background-color: #7e1785;
    color: #fff;
  }
}

.ui-datepicker-title select {
  border: none;
}

.ui-datepicker {
  .ui-datepicker-prev, .ui-datepicker-next {
    top: 50%;
    transform: translate(0, -50%);
  }
}

.ui-timepicker-standard {
  a {
    font-size: 14px;
    cursor: pointer;
  }

  .ui-state-hover {
    background-color: #7e1785;
    border-color: #7e1785;
    color: #fff;
  }
}

.datepickers-container .datepicker {
  z-index: 999;
}

.ui-timepicker-container {
  z-index: 999 !important;
}

/*.months-container{*/
/*    width: 100%;*/
/*    flex-wrap: wrap;*/
/*}*/

/* 휴무 라이브러리 커마 */

.calendar_box {
  .calendar {
    .months-container {
      gap: 20px 32px;

      .month-container.month-3 {
        width: calc(25% - 24px);
      }
    }

    table {
      &.month {
        th {
          &.month-title {
            height: 48px;
            text-align: left;
            box-sizing: border-box;
            padding: 0 8px;
            font-size: 20px;
            line-height: 30px;
            font-family: 'notokr-bold';
            border-bottom: 1px solid #5a5a5a;
          }

          &.day-header {
            height: 48px;
            font-size: 14px;
            color: #454545;
          }
        }

        tr td {
          height: 40px;
          box-sizing: border-box;
          padding: 2px 4px;
        }

        th.day-header:first-child, td.day:first-child .day-content {
          color: #f55165;
        }

        th.day-header:last-child {
          color: #17a1fa;
        }

        td.day {
          &:last-child .day-content {
            color: #17a1fa;
          }

          .day-content {
            width: 100%;
            height: 100%;
            font-size: 16px;
            color: #454545;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;

            &:hover {
              background: rgba(0, 0, 0, 0.1);
            }

            &.operating_time {
              background-color: #adc3fd;
              color: #1a53e6;
              border-radius: 6px;
            }

            &.event_day {
              background-color: #fdb7bf;
              color: #f55165;
              border-radius: 6px;
            }
          }
        }
      }

      width: 100%;
    }
  }

  .month-container .day {
    box-shadow: none !important;
  }

  .calendar .calendar-header {
    display: none !important;
  }

  .custom_header {
    .current_year {
      font-size: 28px;
      font-family: 'notokr-bold';
      color: #222;
      line-height: 42px;
    }

    .calendar_btn {
      width: 32px;
      height: 32px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 0;

      &.prev_btn {
        background-image: url("/static/asset/images/common/icon_c_prev.svg");
      }

      &.next_btn {
        background-image: url("/static/asset/images/common/icon_c_next.svg");
      }
    }
  }

  &.type_02 .calendar {
    .month-container {
      display: none;
      width: 100%;
    }

    table {
      table-layout: fixed;
      border-collapse: collapse;

      &.month tr {
        th, td {
          border: 1px solid #ccc;
        }

        th:first-child, td:first-child {
          border-left: none;
        }

        th:last-child, td:last-child {
          border-right: none;
        }

        th {
          height: 56px;
        }

        td {
          height: 140px;
          padding: 16px;
          vertical-align: top;
          cursor: pointer;
        }
      }
    }

    .month-container.active {
      display: block;
    }

    table.month {
      th.month-title {
        display: none;
      }

      td.day {
        .day-content {
          height: auto;
          justify-content: flex-end;
        }

        .day_list {
          display: flex;
          flex-direction: column;
          gap: 4px;
          margin-top: 16px;

          p {
            font-size: 12px;
            line-height: 20px;
          }
        }

        &:hover {
          background: rgba(0, 0, 0, 0.1);
        }

        .day-content:hover {
          background: transparent;
        }
      }
    }
  }

  &.type_03 {
    .custom_header {
      padding-bottom: 12px;

      .current_year {
        font-size: 18px;
        font-family: 'notokr-bold';
        color: #222;
        line-height: 28px;
      }

      .calendar_btn {
        &.prev_btn {
          background-image: url("/static/asset/images/common/icon_big_prev.svg");
          margin-right: auto;
        }

        &.next_btn {
          background-image: url("/static/asset/images/common/icon_big_next.svg");
          margin-left: auto;
        }
      }
    }

    .calendar {
      .month-container {
        display: none;
        width: 100%;

        &.active {
          display: block;
        }
      }

      table.month {
        border-collapse: collapse;

        th.month-title {
          display: none;
        }

        tr {
          th {
            height: 48px;
          }

          td {
            height: 40px;
            padding: 3px;
          }
        }

        td.day {
          .day-content {
            width: 100%;
            height: 100%;
            justify-content: center;
            align-content: center;
            border-radius: 100%;
            cursor: pointer;
          }

          &:hover .day-content {
            background-color: transparent;
          }

          &.today .day-content {
            background-color: #eaeaea;
          }
        }

        tr td.day.active .day-content {
          background-color: #eed4f7;
          color: #7e1785;
        }
      }
    }
  }
}

#calendar {
  flex-grow: 1;
  height: 100%;
}

#roomContainer {
  width: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid #ddd;
  overflow-y: auto;
}

.room-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  height: 50px;
}

.tui-full-calendar-timegrid-container {
  position: relative;
  top: -50px;

  /* Adjust this value based on the height of the room labels */
}

.drawing_box {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #eaeaea;
  box-shadow: inset 0 0 13px 0 rgba(0, 0, 0, 0.02);
  background-color: #eaeaea;
  display: flex;
  flex-direction: column;

  .drawing_top {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    display: flex;
    align-items: center;
    background-color: #fafafa;
    box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.03);

    .drawing_controller {
      display: flex;
      align-items: center;
    }

    button {
      padding: 0;
    }

    .drawing_controller {
      .direction_btn {
        display: flex;
        gap: 12px;
        align-items: center;

        .dc_btn {
          width: 24px;
          height: 24px;
          background-size: cover;
          background-repeat: no-repeat;

          &.prev_btn {
            background-image: url("/static/asset/images/sub/back.svg");
          }

          &.next_btn {
            background-image: url("/static/asset/images/sub/front.svg");
          }

          &.prev_btn.active {
            background-image: url("/static/asset/images/sub/back_black.svg");
          }

          &.next_btn.active {
            background-image: url("/static/asset/images/sub/front_black.svg");
          }
        }
      }

      .type_btn {
        margin-left: 32px;
        display: flex;
        align-items: center;
        gap: 12px;

        .type_item {
          width: 32px;
          height: 32px;
          position: relative;
          border-radius: 8px;

          .dc_btn {
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-size: 20px;
            background-position: center;
            border-radius: 8px;

            &.pen_btn {
              background-image: url("/static/asset/images/sub/pen.svg");
            }

            &.eraser_btn {
              background-image: url("/static/asset/images/sub/eraser.svg");
            }

            &.color_btn {
              background-image: url("/static/asset/images/sub/icon_color_black.png");
            }

            &.move_btn {
              background-image: url("/static/asset/images/sub/icon_move.svg");
            }
          }

          .dc_type {
            display: none;
            align-items: center;
            gap: 8px;
            box-sizing: border-box;
            padding: 8px;
            border-radius: 12px;
            border: 1px solid #f5f5f5;
            position: absolute;
            bottom: -8px;
            left: 0;
            transform: translate(0, 100%);
            z-index: 10;
            background-color: #fff;

            button {
              width: 32px;
              height: 32px;
              border-radius: 8px;
              position: relative;
            }

            .pen_item {
              &::before {
                content: "";
                width: 1px;
                height: 24px;
                background-color: #454545;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%) rotate(45deg);
              }

              &.type_02::before {
                width: 3px;
              }

              &.type_03::before {
                width: 5px;
              }

              &.type_04::before {
                width: 7px;
              }

              &.type_05::before {
                width: 10px;
              }

              &.current {
                background-color: #454545;

                &::before {
                  background-color: #fff;
                }
              }
            }

            .eraser_item {
              &::before {
                content: "";
                width: 10px;
                height: 10px;
                border: 1px solid #454545;
                border-radius: 100%;
                box-sizing: border-box;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
              }

              &.type_02::before {
                width: 15px;
                height: 15px;
              }

              &.type_03::before {
                width: 20px;
                height: 20px;
              }

              &.type_04::before {
                width: 25px;
                height: 25px;
              }

              &.type_05::before {
                width: 30px;
                height: 30px;
              }

              &.current {
                background-color: #454545;

                &::before {
                  border-color: #fff;
                }
              }
            }

            .color_item {
              background-image: url("/static/asset/images/sub/icon_color_red.png");
              background-position: center;
              background-size: 24px;
              background-repeat: no-repeat;

              &.type_02 {
                background-image: url("/static/asset/images/sub/icon_color_black.png");
              }

              &.type_03 {
                background-image: url("/static/asset/images/sub/icon_color_white.png");
              }

              &.type_04 {
                background-image: url("/static/asset/images/sub/icon_color_green.png");
              }

              &.type_05 {
                background-image: url("/static/asset/images/sub/icon_color_blue.png");
              }

              &.type_06 {
                background-image: url("/static/asset/images/sub/icon_color_select.png");
              }

              &.current {
                background-color: #eaeaea;
              }
            }

            .color_picker {
              position: absolute;
              right: -8px;
              top: 50%;
              transform: translate(100%, -50%);
              display: none;
              padding: 8px;
              border-radius: 8px;
              background-color: #fff;
              border: 1px solid #f5f5f5;

              &.current {
                display: block;
              }
            }
          }

          .dc_btn.current {
            background-color: #7e1785;

            &.pen_btn {
              background-image: url("/static/asset/images/sub/pen_w.svg");
            }

            &.eraser_btn {
              background-image: url("/static/asset/images/sub/eraser_w.svg");
            }

            &.move_btn {
              background-image: url("/static/asset/images/sub/icon_move_w.svg");
            }
          }

          &.active .dc_type {
            display: flex;
          }
        }
      }
    }

    .con_info {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 16px;

      .user_info {
        display: flex;
        align-items: center;
        gap: 8px;

        .user_rating {
          min-width: 50px;
          padding: 2px 4px;
          box-sizing: border-box;
          background-color: #f16d7d;
          border-radius: 16px;
          font-size: 12px;
          font-family: 'notokr-bold';
          line-height: 18px;
          color: #fff;
          text-align: center;
        }

        .user_name {
          font-size: 16px;
          font-family: 'notokr-bold';
          line-height: 24px;
          color: #222;
        }
      }

      .user_change {
        padding: 0 0 0 24px;
        position: relative;
        font-size: 14px;
        line-height: 20px;
        color: #454545;

        &::before {
          content: "";
          width: 20px;
          height: 20px;
          background: url("/static/asset/images/sub/icon_change.svg") no-repeat;
          background-size: cover;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translate(0, -50%);
        }
      }

      .btn_list .btn_item {
        width: 80px;
        height: 34px;
        flex: inherit;
        font-size: 12px;
        line-height: 18px;
      }
    }
  }

  .drawing_bot {
    width: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;

    .s_drawing_list {
      min-width: 240px;
      max-height: calc(100% - 20px);
      box-sizing: border-box;
      padding: 20px 16px;
      border-radius: 0 0 0 12px;
      background-color: #fafafa;
      position: absolute;
      right: 0;
      top: 10px;
      display: flex;
      flex-direction: column;
      transition: 0.6s;
      z-index: 10;

      .sd_top {
        width: 100%;
        display: flex;
        padding-bottom: 16px;
        align-items: center;

        .title {
          font-size: 16px;
          line-height: 24px;
          font-family: 'notokr-bold';
        }

        .down_btn {
          width: 20px;
          height: 20px;
          background: url("/static/asset/images/common/icon_download_p.svg") no-repeat;
          background-size: cover;
          margin-left: auto;
        }
      }

      .sd_close {
        width: 20px;
        height: 40px;
        border-radius: 4px 0 0 4px;
        background-color: #fafafa;
        position: absolute;
        left: 0;
        top: 0;
        transform: translate(-100%, 0);

        &::before {
          content: "";
          width: 24px;
          height: 24px;
          background: url("/static/asset/images/common/icon_prev.svg") no-repeat;
          background-size: cover;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%) rotate(-180deg);
          transition: 0.6s;
        }
      }

      .sd_box_wrap {
        flex: 1;
        height: 1px;
        width: 100%;
        overflow-y: auto;

        &::-webkit-scrollbar {
          width: 12px;
          height: 12px;
        }

        &::-webkit-scrollbar-thumb {
          background-color: #eaeaea;
          border-radius: 24px;
          background-clip: padding-box;
          border: 4px solid transparent;
        }

        .sd_box {
          width: 100%;
          display: flex;
          gap: 20px;
          flex-direction: column;

          .sd_item {
            width: 208px;
            height: 160px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;

            &::before {
              content: "";
              width: 100%;
              height: 100%;
              background-color: #454545;
              opacity: 0.5;
              position: absolute;
              left: 0;
              top: 0;
            }

            .sd_date {
              font-size: 13px;
              line-height: 20px;
              color: #fff;
              position: absolute;
              left: 16px;
              bottom: 20px;
              z-index: 1;
            }
          }
        }
      }

      &.list_close {
        transform: translate(100%, 0);

        .sd_close::before {
          transform: translate(-50%, -50%);
        }
      }
    }

    .scale_box {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      padding: 12px 14px;
      gap: 16px;
      border-radius: 12px;

      .scale_btn {
        width: 20px;
        height: 20px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;

        &.scale_minus {
          background-image: url("/static/asset/images/sub/zoom_in.svg");
        }

        &.scale_plus {
          background-image: url("/static/asset/images/sub/zoom_plus.svg");
        }
      }

      .scale_num {
        font-size: 14px;
        font-family: 'notokr-bold';
        color: #fff;
        line-height: 20px;
      }
    }
  }
}

/* 등록차트조회 */

.search_result .sr_top .user_info {
  display: flex;
  align-items: center;
  gap: 8px;

  .user_rating {
    min-width: 50px;
    padding: 2px 4px;
    box-sizing: border-box;
    background-color: #f16d7d;
    border-radius: 16px;
    font-size: 12px;
    font-family: 'notokr-bold';
    line-height: 18px;
    color: #fff;
    text-align: center;
  }

  .user_name {
    font-size: 16px;
    font-family: 'notokr-bold';
    line-height: 24px;
    color: #222;
  }
}

.thumb_box {
  width: 100%;
  overflow-y: auto;

  &::-webkit-scrollbar {
    width: 12px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 4px solid transparent;
  }

  .thumb_list {
    width: 100%;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

    .thumb_item {
      width: calc((100% - 96px) / 5);
      padding-bottom: calc(15.44% - 15px);
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      &::before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        left: 0;
        top: 0;
      }

      .chk_box {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 2;
      }

      .thu_date {
        position: absolute;
        bottom: 16px;
        left: 16px;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        z-index: 2;
      }

      &.active::before {
        border-radius: 12px;
        border: 2px solid #7e1785;
      }
    }
  }
}

.con_body .search_result .thumb_box {
  height: 678px;
}

.btn_list.type_txt {
  gap: 24px;

  button {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #222;

    &::before {
      content: "";
      width: 1px;
      height: 20px;
      background-color: #454545;
      position: absolute;
      left: -12px;
    }
  }
}

.favorite_wrap {
  flex: 1;
  width: 1px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  padding-right: 16px;

  .f_title {
    font-size: 12px;
    line-height: 18px;
  }

  .favorite_box {
    flex: 1;
    width: 1px;
    overflow: auto hidden;

    &::-webkit-scrollbar {
      height: 12px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 4px solid transparent;
    }

    .favorite_list {
      display: inline-flex;
      gap: 12px;

      .favorite_item {
        display: flex;
        align-items: center;
        gap: 4px;
        box-sizing: border-box;
        padding: 3px 7px;
        border: 1px solid #CCC;
        border-radius: 8px;
        white-space: nowrap;

        .fi_title {
          font-size: 13px;
          line-height: 20px;
        }

        .favorite_close {
          width: 12px;
          height: 12px;
          background: url("/static/asset/images/common/icon_close_12px.svg") no-repeat;
          background-size: cover;
        }

        &.active {
          border-color: #7E1785;

          .fi_title {
            color: #7E1785;
          }
        }
      }
    }
  }
}

/* ----------- 테블릿 ----------- */

/* 해더 */

.wrap.type_tablet {
  background-color: #fff;
  min-width: auto;
}

.type_tablet .t_section {
  width: 100%;

  header {
    position: relative;
    transition: 0.6s;
    z-index: 50;

    .top {
      width: 100%;
      height: 70px;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      padding: 0 24px;
      position: relative;
      z-index: 10;
      background-color: #fff;
    }

    .left {
      display: flex;
      align-items: center;
      gap: 12px;

      .title {
        font-size: 20px;
        line-height: 30px;
        font-family: 'notokr-bold';
        color: #222;
      }

      .back_btn {
        width: 24px;
        height: 24px;
        background: url("/static/asset/images/common/icon_chevron_back_small.svg") no-repeat;
        background-size: cover;
      }
    }

    .right {
      margin-left: auto;
      display: flex;
      align-items: center;

      .btn_icon {
        display: flex;
        align-items: center;
        gap: 12px;

        button {
          width: 36px;
          height: 36px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
        }

        .logout_btn {
          background-image: url("/static/asset/images/common/icon_logout.svg");
          display: none;
        }

        .menu_btn {
          background-image: url("/static/asset/images/common/icon_menu.svg");
        }

        .close_btn {
          background-image: url("/static/asset/images/common/icon_close_36.svg");
          display: none;
        }
      }
    }

    .gnb {
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      transition: 0.6s;
      background-color: #fff;

      .gnb_list {
        width: 100%;

        .gnb_item {
          width: 100%;
          position: relative;
          max-height: 61px;
          overflow: hidden;
          transition: 0.6s;

          .gnb_depth1 {
            width: 100%;
            box-sizing: border-box;
            padding: 16px 24px;
            font-size: 18px;
            font-family: 'notokr-bold';
            line-height: 28px;
            color: #454545;
            position: relative;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            align-items: center;
            cursor: pointer;
            background-color: #fff;
            z-index: 5;

            &::before {
              content: "";
              width: 20px;
              height: 20px;
              background: url("/static/asset/images/common/icon_arr_down.svg") no-repeat;
              background-size: cover;
              position: absolute;
              top: 50%;
              right: 24px;
              transform: translate(0, -50%);
              transition: 0.6s;
            }
          }

          .gnb_depth2_list {
            width: 100%;
            box-sizing: border-box;
            padding: 12px 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            transition: 0.6s;
            transform: translate(0, -100%);

            .gnb_depth2 {
              width: 100%;
              font-size: 16px;
              line-height: 24px;
              color: #454545;
              cursor: pointer;
            }
          }
        }
      }
    }

    &.active {
      .top {
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
      }

      .right .btn_icon {
        .menu_btn {
          display: none;
        }

        .close_btn, .logout_btn {
          display: block;
        }
      }

      .gnb {
        transform: translate(0, 100%);
      }
    }

    .gnb .gnb_list .gnb_item {
      &.active {
        .gnb_depth1::before {
          transform: translate(0, -50%) rotate(180deg);
        }

        .gnb_depth2_list {
          transform: translate(0, 0);
        }
      }

      .gnb_depth2_list .gnb_depth2.current {
        color: #7e1785;
      }
    }
  }

  .t_content {
    width: 100%;
    min-height: calc((var(--vh, 1vh) * 100) - 70px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f5f5f5;
    box-sizing: border-box;
    padding: 16px 24px 24px;

    .t_con_head .search_box {
      padding: 24px;
      margin: 0;

      .input_wrap {
        width: 100%;

        .input_search {
          flex: 1;
        }
      }
    }

    .t_con_body {
      flex-grow: 1;
      width: 100%;
      box-sizing: border-box;
      padding: 24px;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    }

    .drawing_box {
      flex: 1;
      width: 100vw;
      height: calc((var(--vh, 1vh) * 100) - 86px);
      margin: 0 -24px -24px;

      .drawing_top {
        padding: 12px 24px;

        .btn_list {
          gap: 8px;

          &.type_txt {
            gap: 24px;
          }
        }

        .con_info {
          gap: 8px;

          .user_change {
            font-size: 12px;
            line-height: 18px;
          }

          .down_btn {
            font-size: 12px;
            line-height: 18px;

            &::before {
              height: 18px;
            }
          }

          .btn_list .btn_item {
            font-size: 12px;
            width: 72px;
            height: 34px;
          }
        }
      }

      .drawing_bot {
        display: flex;

        #drawing_container {
          height: auto !important;
        }
      }

      .drawing_top .drawing_controller {
        .type_btn .type_item {
          width: 40px;
          height: 40px;

          .dc_btn {
            background-size: 20px;
          }
        }

        .direction_btn .dc_btn {
          width: 24px;
          height: 24px;
        }
      }

      .drawing_bot .s_drawing_list {
        width: 100%;
        min-width: auto;
        max-height: initial;
        left: 0;
        top: auto;
        bottom: 0;
        padding: 20px 16px;

        .sd_close {
          width: 40px;
          height: 20px;
          transform: translate(0, -100%);
          border-radius: 4px 4px 0 0;

          &::before {
            background: url("/static/asset/images/common/icon_arrow_up.svg") no-repeat center;
            background-size: 8px 6px;
          }
        }

        .sd_top {
          padding-bottom: 12px;

          .title {
            font-size: 14px;
            line-height: 20px;
          }
        }

        .sd_box_wrap {
          overflow-y: hidden;
          margin: 0 -16px;
          box-sizing: border-box;
          width: auto;

          &::-webkit-scrollbar {
            width: 12px;
            height: 12px;
          }

          &::-webkit-scrollbar-thumb {
            background-color: #eaeaea;
            border-radius: 24px;
            background-clip: padding-box;
            border: 4px solid transparent;
          }

          .sd_box {
            flex-direction: row;
            display: inline-flex;
            width: auto;
            min-width: 100%;
            gap: 12px;
            padding: 0 16px;

            .sd_item {
              width: 145px;
              height: 112px;

              .sd_date {
                font-size: 12px;
                line-height: 18px;
                left: 10px;
                bottom: 8px;
              }
            }
          }
        }

        &.list_close {
          transform: translate(0, 100%);
        }
      }
    }

    .thumb_box .thumb_list {
      gap: 16px;

      .thumb_item {
        width: calc(25% - 12px);
        padding-bottom: calc(19.31% - 9px);
        width: calc(25% - 12px);
        padding-bottom: calc(19.31% - 9px);
      }
    }

    .user_info {
      .user_rating {
        min-width: 40px;
      }

      .user_name {
        font-size: 14px;
        font-family: 'notokr-bold';
        line-height: 20px;
        color: #222;
      }
    }
  }
}

.order_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  .order_btn {
    box-sizing: border-box;

    /*padding: 5px;*/
    border-radius: 30px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    /*gap: 6px;*/

    .order_btn_item {
      width: 18px;
      height: 14px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      margin: 0 !important;
      padding: 0;
      position: relative;

      &.order_up::after {
        position: absolute;
        content: '';
        left: 50%;
        top: 6px;
        width: 5px;
        height: 6px;
        background: url("/static/asset/images/common/icon_up_active.svg") no-repeat;
        transform: translateX(-50%);
      }

      &.order_down::after {
        position: absolute;
        content: '';
        left: 50%;
        top: 4px;
        width: 5px;
        height: 6px;
        background: url("/static/asset/images/common/icon_down_active.svg") no-repeat;
        transform: translateX(-50%);
      }

      &.order_up:hover::before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        width: 18px;
        height: 14px;
        background: #caa3d7;
        border-radius: 10px 10px 0px 0px;
      }

      &.order_down:hover::before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        width: 18px;
        height: 14px;
        background: #caa3d7;
        border-radius: 0px 0px 10px 10px;
      }

      &.disabled {
        cursor: default;
        pointer-events: none;
      }

      &.order_up.disabled::after {
        position: absolute;
        content: '';
        left: 50%;
        top: 6px;
        width: 5px;
        height: 6px;
        background: url("/static/asset/images/common/icon_up_first.svg") no-repeat;
        transform: translateX(-50%);
      }

      &.order_down.disabled::after {
        position: absolute;
        content: '';
        left: 50%;
        top: 3px;
        width: 5px;
        height: 6px;
        background: url("/static/asset/images/common/icon_down_last.svg") no-repeat;
        transform: translateX(-50%);
      }

      &.order_up.disabled:hover::before, &.order_down.disabled:hover::before {
        position: initial;
      }
    }
  }

  .order_num {
    font-size: 14px;
    line-height: 20px;
    color: #454545;
    min-width: 16px;
  }
}

.box_list_wrap {
  width: 100%;
  padding: 16px 0;

  .box_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    .box_item {
      width: 100%;
      cursor: pointer;
      box-sizing: border-box;
      padding: 12px;
      border: 1px solid #ccc;
      font-size: 14px;
      line-height: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 10px;

      .box_line_txt {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px 16px;

        .txt_item {
          font-size: 14px;
          line-height: 20px;
          position: relative;

          &::before {
            content: "";
            width: 1px;
            height: 16px;
            background-color: #777;
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translate(0, -50%);
          }

          &:first-child::before {
            display: none;
          }
        }
      }

      .group_box {
        min-width: 32px;
        box-sizing: border-box;
        padding: 2px 4px;
        border-radius: 30px;
        font-size: 10px;
        font-family: 'notokr-bold';
        line-height: 16px;
        color: #fff;
        text-align: center;
        background-color: #f16d7d;
      }

      .sub_box {
        width: 1px;
        flex: 1;

        .box_line_txt {
          padding-top: 10px;

          &:first-child {
            padding-top: 0;
          }
        }

        .txt_box .txt {
          font-size: 14px;
          line-height: 20px;
          color: #777;
        }
      }

      &.active {
        border-color: #a679b5;
      }
    }
  }
}

.dashboard_box {
  width: 100%;
  display: flex;
  gap: 24px;

  .db_item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
  }

  .schedule_section {
    flex: 1;
    width: 1px;
    padding: 32px;

    /*min-height: 844px;*/
    position: relative;
  }
}

.side_setting {
  width: 320px;
  height: calc(100% + 41px);
  background-color: #fff;
  box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.03);
  position: fixed;
  right: 0;
  top: -41px;
  z-index: 5;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  transform: translate(110%, 0);
  flex-direction: column;
  transition: 0.6s;

  .ss_head {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 24px;

    .title {
      font-size: 16px;
      line-height: 24px;
      font-family: 'notokr-bold';

      &.theme_title {
        padding-left: 28px;
        position: relative;

        &::before {
          content: "";
          width: 20px;
          height: 20px;
          background: url("/static/asset/images/common/icon_theme.svg") no-repeat;
          background-size: cover;
          position: absolute;
          left: 0;
          top: 2px;
        }
      }
    }

    .ss_close {
      width: 24px;
      height: 24px;
      margin-left: auto;
      background: url("/static/asset/images/common/icon_close.svg") no-repeat;
      background-size: cover;
    }
  }

  .ss_body {
    width: 100%;
    flex: 1;
    height: 1px;
    overflow-y: scroll;
    padding-bottom: 40px;

    &::-webkit-scrollbar {
      width: 12px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 4px solid transparent;
    }

    .ss_list {
      width: 100%;
      display: inline-flex;
      flex-direction: column;
      gap: 16px;

      .ss_item {
        width: 100%;
        padding-top: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 12px;

        &::before {
          content: "";
          width: 100%;
          height: 1px;
          background-color: #ccc;
          position: absolute;
          top: 0;
          left: 0;
        }

        &:first-child {
          padding-top: 0;

          &::before {
            display: none;
          }
        }

        .ss_item_top {
          width: 100%;
          display: flex;
          align-items: center;

          .title {
            font-size: 13px;
            line-height: 20px;
          }
        }

        .ss_item_bot {
          width: 100%;

          .ssi_item {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;

            &:first-child {
              margin-top: 0;
            }

            .title {
              font-size: 12px;
              line-height: 18px;
              color: #5a5a5a;
            }

            .color_select {
              box-sizing: border-box;
              padding: 7px;
              border: 1px solid #ccc;
              border-radius: 8px;
              position: relative;

              .current_box {
                display: flex;
                align-items: center;
                gap: 4px;

                .current_color {
                  width: 20px;
                  height: 20px;
                  border-radius: 100%;
                  border: 1px solid #EAEAEA;
                }

                .box_arr {
                  width: 12px;
                  height: 12px;
                  background: url("/static/asset/images/common/icon_arr_down.svg") no-repeat;
                  background-size: cover;
                }
              }

              .color_list {
                position: absolute;
                right: 0;
                top: calc(100% + 4px);
                display: none;
                align-items: center;
                flex-wrap: wrap;
                box-sizing: border-box;
                width: 132px;
                padding: 7px;
                background-color: #fff;
                border: 1px solid #ccc;
                border-radius: 8px;
                gap: 4px;
                z-index: 10;

                .color_item {
                  width: 20px;
                  height: 20px;
                  border-radius: 100%;
                  border: 1px solid #ccc;

                  &.select_color {
                    background: url("/static/asset/images/common/icon_select_color.svg") no-repeat;
                    background-size: cover;
                    position: relative;

                    .IroColorPicker {
                      position: absolute;
                      top: calc(100% + 18px);
                      right: 0;
                      display: none !important;
                      padding: 8px;
                      border-radius: 8px;
                      background-color: #fff;
                      border: 1px solid #f5f5f5;

                      &.current {
                        display: block !important;
                        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }

    .setting_save, .display_save {
      min-width: 100px;
      box-sizing: border-box;
      border: 1px solid #7e1785;
      border-radius: 8px;
      background-color: #7e1785;
      color: #fff;
      text-align: center;
      font-size: 12px;
      line-height: 18px;
      margin-left: auto;
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 7px;
    }
  }

  &.active {
    display: flex;
    transform: translate(0, 0);
  }
}

.preview_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 12px;
  gap: 8px;
  overflow: hidden;
  border-radius: 4px;

  .staff_status {
    white-space: nowrap;
    position: relative;
  }

  .staff_info {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 4px;
    overflow: hidden;
    height: 22px;

    .name {
      font-size: 14px;
      line-height: 22px;
      color: #222;
      white-space: nowrap;
      overflow: hidden;
    }

    .position {
      font-size: 12px;
      line-height: 18px;
      color: #222;
      overflow: hidden;
    }
  }

  .schedule_time {
    font-size: 12px;
    line-height: 18px;
    margin-top: auto;
    color: #5a5a5a;
    white-space: nowrap;
    overflow: hidden;
    height: 18px;
  }
}

.staff_status.fix_memo {
  position: relative;

  &::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("/static/asset/images/common/icon_info_red.svg") no-repeat;
    background-size: cover;
  }
}

.side_setting .ss_body .ss_list .ss_item .ss_item_bot .ssi_item .color_select .color_list.active {
  display: flex;
}

.dashboard_box .side_wrap {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  .db_item {
    padding: 16px;

    .db_menu_wrap {
      margin-top: 16px;
      position: relative;
    }

    .db_menu .db_menu_item {
      width: 100%;
      display: flex;
      align-content: center;
      padding: 18px 16px;
      border-top: 1px solid #ccc;

      &:first-child {
        border-top: none;
      }

      .arrow {
        width: 20px;
      }

      .icon {
        width: 24px;
        margin-left: 16px;
      }

      .title {
        font-size: 16px;
        line-height: 24px;
        margin-left: 12px;
      }
    }
  }
}

.con_tab_list {
  width: 100%;
  height: 44px;
  display: flex;
  align-content: center;

  .con_tab_item {
    flex: 1 1 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-family: 'notokr-bold';
    border-bottom: 1px solid #ccc;
    cursor: pointer;

    &.current {
      color: #7e1785;

      &::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: #7e1785;
        position: absolute;
        bottom: -1px;
        left: 0;
      }
    }
  }
}

.dashboard_box .side_wrap {
  .board_section {
    height: 368px;
    display: flex;
    flex-direction: column;
  }

  .bs_con {
    width: 100%;
    margin-top: 8px;
    flex: 1;
    height: 1px;
    display: flex;
    flex-direction: column;
  }
}

a {}

.dashboard_box {
  .side_wrap .bs_con {
    .bs_con_list {
      overflow-y: auto;
      flex: 1;
      height: 1px;

      &::-webkit-scrollbar {
        width: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }
    }

    .bs_con_item {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      padding: 12px 16px;
      border-top: 1px solid #eaeaea;

      &:first-child {
        border-top: none;
      }

      .title {
        width: calc(100% - 20px);
        font-size: 14px;
        line-height: 20px;
        color: #000;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        &:hover {
          display: block;
        }
      }

      .date {
        padding-top: 4px;
        font-size: 12px;
        line-height: 18px;
        color: #777;
      }
    }

    .input_item {
      label {
        width: 1px;
        flex: 1;
      }

      .memo_save {
        width: 60px;
        font-size: 14px;
        line-height: 20px;
        background-color: #454545;
        color: #fff;
      }
    }
  }

  .modal_box {
    box-sizing: border-box;
    position: absolute;
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    border: solid 1px #f5f5f5;
    min-width: 328px;
    flex-direction: column;
    display: none;
    z-index: 18;

    .mb_head {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;

      .mb_title {
        font-size: 14px;
        line-height: 20px;
        font-family: 'notokr-bold';
        color: #222;
      }

      .mb_head_right {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .mb_close {
        width: 20px;
        height: 20px;
        background: url("/static/asset/images/common/icon_close.svg") no-repeat;
        background-size: cover;
      }

      .mb_menu {
        position: relative;
        display: flex;

        .mb_menu_open {
          width: 20px;
          height: 20px;
          background: url("/static/asset/images/common/icon_kebab.svg") no-repeat;
          background-size: cover;
        }
      }
    }
  }
}

.schedule_card .tb_head .tb_menu_open {
  width: 20px;
  height: 20px;
  background: url("/static/asset/images/common/icon_kebab.svg") no-repeat;
  background-size: cover;
}

.dashboard_box .modal_box .mb_head {
  .mb_menu .mb_menu_list {
    width: 60px;
    box-sizing: border-box;
    padding: 4px 0;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 12px;
    position: absolute;
    left: 50%;
    top: calc(100% + 9px);
    transform: translate(-50%, 0);
    display: none;
    flex-direction: column;

    &.active {
      display: flex !important;
    }

    &::before {
      content: "";
      width: 0;
      height: 0;
      border-bottom: 4px solid #ccc;
      border-top: 4px solid transparent;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      position: absolute;
      left: 50%;
      top: 0;
      transform: translate(-50%, -100%);
    }

    &::after {
      content: "";
      width: 0;
      height: 0;
      border-bottom: 4px solid #fff;
      border-top: 4px solid transparent;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      position: absolute;
      left: 50%;
      top: 1px;
      transform: translate(-50%, -100%);
      z-index: 1;
    }

    .mb_menu_item {
      width: 100%;
      box-sizing: border-box;
      padding: 4px;
      text-align: center;
      font-size: 12px;
      line-height: 18px;
      color: #000;
    }
  }

  .mb_loading {
    width: 20px;
    height: 20px;
    background: url("/static/asset/images/common/pin_loading.gif") no-repeat;
    background-size: cover;
  }
}

.status_select {
  position: relative;
  display: flex;
  align-items: center;

  .staff_status {
    padding-right: 16px;

    &::after {
      content: "";
      width: 12px;
      height: 12px;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(0, -50%);
      background: url("/static/asset/images/common/icon_arr_down.svg") no-repeat;
      background-size: cover;
    }
  }

  .select_list {
    display: none;
    flex-direction: column;
    box-sizing: border-box;
    padding: 4px;
    min-width: 98px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 12px;
    position: absolute;
    bottom: -2px;
    right: 6px;
    transform: translate(50%, 100%);

    .select_item {
      font-size: 12px;
      width: 100%;
      height: 26px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    &.active {
      display: flex;
      z-index: 9;
    }
  }
}

.dashboard_box .modal_box .mb_body {
  width: 100%;
  max-height: 350px;
  margin-top: 12px;
  overflow-y: auto;

  &::-webkit-scrollbar {
    width: 12px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 4px solid transparent;
  }

  .mb_list {
    width: 100%;
    background-color: #fafafa;

    /*border-radius: 8px;*/

    .mb_item {
      width: 100%;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;

      .item_line {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
      }

      box-sizing: border-box;
      padding: 12px;
      border-top: 1px solid #eaeaea;

      &:first-child {
        border-top: none;
      }

      .rating {
        min-width: 32px;
        box-sizing: border-box;
        padding: 2px 4px;
        border-radius: 30px;
        color: #fff;
        background-color: #f16d7d;
        font-size: 10px;
        font-family: 'notokr-bold';
        line-height: 16px;
        text-align: center;
      }

      .customer_name {
        font-size: 14px;
        line-height: 20px;
        color: #222;
      }

      .type_02 .customer_name {
        font-size: 12px;
        line-height: 18px;
        color: #222;
      }

      .staff {
        font-size: 14px;
        line-height: 20px;
        color: #222;

        .position {
          font-size: 12px;
          line-height: 18px;
        }
      }

      .time, .txt {
        font-size: 12px;
        line-height: 18px;
        color: #5a5a5a;
      }
    }
  }
}

.staff_status {
  font-size: 12px;
  line-height: 18px;
  color: #777;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  .dot {
    width: 6px;
    height: 6px;
    background-color: #777;
    border-radius: 100%;
  }
}

.dashboard_box {
  .modal_box {
    .mb_body .mb_list .mb_item .txt_list {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;

      li {
        font-size: 12px;
        line-height: 18px;
        color: #5a5a5a;
        padding-left: 16px;
        position: relative;

        &::before {
          content: "";
          width: 1px;
          height: 12px;
          background-color: #777;
          position: absolute;
          left: 8px;
          top: 3px;
        }

        &:first-child {
          padding: 0;

          &::before {
            display: none;
          }
        }
      }
    }

    .mb_head .con_tab_list {
      height: 36px;
    }

    &.active {
      display: flex;
    }
  }

  .db_menu_wrap .modal_box {
    left: -8px;
    top: 0;
    transform: translate(-100%, 0);
  }

  .modal_box {
    &.medical_history {
      width: 440px;

      .mb_body .mb_list .mb_item {
        padding-left: 102px;
        position: relative;

        .mb_time {
          font-size: 12px;
          line-height: 18px;
          color: #5a5a5a;
          position: absolute;
          left: 12px;
          top: 13px;
        }
      }
    }

    &.schedule_modal {
      min-width: 260px;
      width: 260px;
      left: 0;
      top: 0;

      .mb_list {
        background-color: #fff;

        .mb_item {
          padding: 12px 0;

          &:first-child {
            padding-top: 0;
          }

          &:last-child {
            padding-bottom: 0;
          }
        }
      }
    }
  }

  .schedule_section .schedule_head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;

    .left {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .right {
      margin-left: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 20px;
    }

    .change_date {
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      padding: 8px 12px;
      background-color: #fafafa;
      border: 1px solid #eaeaea;
      border-radius: 18px;
      gap: 12px;

      .btn_today {
        padding: 0;
        font-size: 13px;
        line-height: 20px;
        color: #5a5a5a;
      }

      .btn_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        button {
          width: 20px;
          height: 20px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;

          &.btn_prev {
            background-image: url("/static/asset/images/common/chevron_back.svg");
          }

          &.btn_next {
            background-image: url("/static/asset/images/common/chevron_next.svg");
          }
        }
      }
    }

    .current_date {
      font-size: 20px;
      font-family: 'notokr-bold';
      line-height: 30px;
      color: #000;
    }

    .btn_refresh {
      padding-left: 30px;
      position: relative;
      font-size: 13px;
      line-height: 20px;
      color: #454545;
      white-space: nowrap;

      &::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("/static/asset/images/common/icon_change.svg") no-repeat;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
      }
    }

    .btn_theme {
      padding-left: 30px;
      position: relative;
      font-size: 13px;
      line-height: 20px;
      color: #454545;
      white-space: nowrap;

      &::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("/static/asset/images/common/icon_theme.svg") no-repeat;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
      }
    }
  }
}

.btn_icon_box {
  display: flex;
  align-items: center;
  gap: 12px;

  .bib_item {
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid #777;
    border-radius: 8px;
    white-space: nowrap;

    img {
      width: 20px;
      height: 20px;
    }

    .title {
      font-size: 14px;
      line-height: 20px;
      color: #454545;
    }

    &.btn_create {
      border-color: #fdb7bf;

      .title {
        color: #e7385e;
      }
    }

    &.btn_add {
      border-color: #7e1785;

      .title {
        color: #7e1785;
      }
    }

    &.btn_menu {
      padding: 8px;
    }

    &.color_blue {
      border-color: #4065c2;

      .title {
        color: #4065c2;
      }
    }
  }
}

.dashboard_box .schedule_section .schedule_box {
  margin-top: 20px;
}

.fc-header-toolbar.fc-toolbar {
  display: none;
}

.schedule_box {
  width: 100%;
  height: 92vh;
  position: relative;
  display: flex;
  flex-wrap: wrap;

  .right_box {
    width: 1px;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;

    /*overflow-x: scroll;*/
    /*overflow-y: hidden;*/
  }
}

.left_box {
  height: 100%;
  display: flex;
  flex-direction: column;

  .block {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      width: 24px;
    }
  }
}

.timeline_wrap {
  width: 80px;
  background: white;
  z-index: 10;
  height: 1px;
  flex: 1;
  overflow: hidden auto;
  -ms-overflow-style: none;

  /* IE and Edge */
  scrollbar-width: none;

  /* Firefox */

  &::-webkit-scrollbar {
    display: none;

    /* Chrome, Safari, Opera*/
  }
}

.timeline {
  width: 100%;
  position: relative;

  .time-slot {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 20px;
    color: #777;
  }

  .now-time-label {
    height: 1px;
    margin-top: 1px;
    font-size: 13px;
    line-height: 20px;
    color: #d05050;
    position: absolute;
    left: 23px;
    transform: translate(0, -50%);
    z-index: 9;
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;

    &::before {
      content: "";
      width: 7px;
      height: 7px;
      background-color: #d05050;
      border-radius: 100%;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(0, -50%);
    }

    &::after {
      content: "";
      width: 9px;
      height: 1px;
      background-color: #d05050;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(100%, -50%);
    }
  }
}

.fc .fc-timegrid-now-indicator-line {
  border-color: #d05050;
}

.room_wrap {
  width: 100%;
  overflow: auto hidden;
  -ms-overflow-style: none;

  /* IE and Edge */
  scrollbar-width: none;

  /* Firefox */
  box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;

  &::-webkit-scrollbar {
    display: none;

    /* Chrome, Safari, Opera*/
  }
}

.room {
  display: inline-flex;
  background: white;
  z-index: 10;
  box-sizing: border-box;
  height: 44px;
  min-width: 100%;
  border: 1px solid #eaeaea;
  border-right: none;
  border-left: none;

  .room-name {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    min-width: 180px;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;

    &:first-child {
      border-left: 1px solid #eaeaea;
    }

    &:last-child {
      border-right: 1px solid #eaeaea;
    }
  }
}

#schedule {
  min-width: 100%;
}

.fc-scrollgrid.fc-scrollgrid-liquid thead {
  visibility: hidden;
  height: 0;
}

.fc-timegrid-col.fc-day.fc-day-fri.fc-day-today.fc-resource {
  min-width: 180px;
}

.fc-view-harness.fc-view-harness-active {
  /*height: 100% !important;*/
}

.fc-timegrid-slot {
  &.fc-timegrid-slot-lane {
    height: 52px;
  }

  &.fc-timegrid-slot-label.fc-scrollgrid-shrink {
    display: none;
  }
}

.fc-timegrid-col.fc-timegrid-axis {
  display: none;
}

.fc-timegrid-cols colgroup col {
  width: auto !important;
}

.fc {
  .fc-timegrid-body {
    width: 100% !important;

    table {
      width: 100% !important;
    }
  }

  table td {
    box-sizing: border-box;
  }

  .fc-timegrid-col.fc-day-today {
    background-color: #FAFAFA;
  }

  td, th {
    border-color: #EAEAEA;
  }
}

.schedule_wrap {
  width: 100%;
  height: 1px;
  flex: 1;

  /*overflow-x: scroll;*/
  /*overflow-y: hidden;*/
  overflow: auto;

  /*-ms-overflow-style: none; !* IE and Edge *!*/
  /*scrollbar-width: none; !* Firefox *!*/
  margin-top: -0.5px;
  position: relative;

  &::-webkit-scrollbar {
    /*display: none; !* Chrome, Safari, Opera*!*/
  }
}

.fc-scroller {
  &.fc-scroller-liquid-absolute {
    overflow: initial !important;
  }

  overflow: initial !important;
}

.schedule_box:focus-visible {
  outline: none;
}

.fc-scrollgrid.fc-scrollgrid-liquid {
  border: none;
}

.fc-scrollgrid-section.fc-scrollgrid-section-header .fc-scroller {
  position: relative;

  &::after {
    content: "";
    width: calc(100% - 80px);
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    box-sizing: border-box;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.03);
    pointer-events: none;
  }

  .fc-col-header tr th {
    height: 0;

    .fc-scrollgrid-sync-inner {
      height: 0 !important;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;

      .fc-col-header-cell-cushion {
        padding: 0;
        margin: 0;
        font-size: 14px;
        line-height: 20px;
        color: #222;
      }
    }
  }
}

.fc-timegrid-slot-label-cushion.fc-scrollgrid-shrink-cushion {
  opacity: 0;
}

/* FullCalendar의 시간 레이블 숨기기 */

.fc-timegrid-axis-frame {
  display: none;
}

.fc-timegrid-event-harness.fc-timegrid-event-harness-inset {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 1px;
  padding: 0 4px;
  box-sizing: border-box;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event:has(.schedule_card) {
  box-shadow: none !important;
}

.fc-timegrid-col-frame {
  width: 100%;
  box-sizing: border-box;
  padding: 0 4px;
}

.fc .active .fc-timegrid-col-frame {
  width: 100%;
  box-sizing: border-box;
  padding: 0 4px;
  z-index: 5;
}

.fc-direction-ltr .fc-timegrid-col-events {
  margin: 0;
}

.current_time {
  position: absolute;
  left: 0;
  z-index: 10;

  /* FullCalendar 위에 표시 */
  background: red;

  /* 시각적으로 눈에 띄게 */
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 14px;
}

.fc {
  .fc-v-event {
    border: none !important;
    background-color: transparent !important;
  }

  .fc-timegrid-event .fc-event-main {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    position: relative;

    .modal_box.schedule_modal {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 9999;
    }
  }

  .fc-timegrid-col.fc-day-today.active .fc-timegrid-col-frame {
    position: relative;
    z-index: 5;
  }

  .fc-timegrid-body table tr td:last-child .modal_box.schedule_modal {
    left: auto;
    right: 50%;
  }

  .fc-timegrid-event .fc-event-main {
    .schedule_card {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      padding: 8px 12px;

      /*gap: 8px;*/
      border-radius: 4px;
    }

    .staff_status {
      white-space: nowrap;
      position: relative;
    }

    .staff_info {
      width: 100%;
      display: flex;
      align-items: baseline;
      gap: 4px;

      /*overflow: hidden;*/
      height: 22px;

      .name {
        font-size: 14px;
        line-height: 22px;
        color: #222;
        white-space: nowrap;
        overflow: hidden;
      }

      .position {
        font-size: 12px;
        line-height: 18px;
        color: #222;
        overflow: hidden;
      }
    }

    .schedule_time {
      font-size: 12px;
      line-height: 18px;
      color: #5a5a5a;
      white-space: nowrap;
      overflow: hidden;
      height: 18px;
    }
  }
}

.contents .con_top {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #222;
  padding-bottom: 12px;
  margin-bottom: 12px;

  .title {
    font-size: 14px;
    font-family: 'notokr-bold';
    line-height: 20px;
  }
}

.pmc_list {
  display: flex;
  gap: 12px;

  .pmc_item {
    width: 300px;
  }
}

.search_item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.pmc_list {
  .search_item {
    height: 96px;

    select {
      padding: 0 28px 0 12px;
    }
  }

  .pmc_item .search_item {
    input {
      /*height: 36px;*/
      /*font-size: 12px;*/
      /*line-height: 18px;*/
    }

    .input_group select {
      width: 100px;
    }

    .input_search_icon {
      flex: 1;

      .search_btn {
        top: 50%;
        transform: translate(0, -50%);
      }
    }
  }
}

.search_item.type_02 {
  padding-bottom: 12px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
}

.pmc_list {
  .pmc_item {
    .group_category {
      width: 100%;
      overflow-x: auto;
      padding-top: 12px;

      &::-webkit-scrollbar {
        height: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }

      .gc_list {
        display: inline-flex;
        gap: 4px;

        .gc_item {
          display: flex;
          align-items: center;
          box-sizing: border-box;
          padding: 4px 12px;
          border: 1px solid #ccc;
          border-radius: 30px;
          background-color: #fafafa;
          gap: 8px;

          .title {
            font-size: 12px;
            line-height: 18px;
            white-space: nowrap;
          }

          .gc_delete {
            width: 16px;
            height: 16px;
            background: url("/static/asset/images/common/icon_delete.svg") no-repeat;
            background-size: cover;
          }
        }
      }
    }

    .customer_box {
      width: 100%;
      box-sizing: border-box;
      padding: 20px 16px;
      border: 1px solid #eaeaea;

      &.g_box {
        background-color: #fafafa;
      }

      .cb_top {
        width: 100%;
        display: flex;
        align-items: center;
        padding-bottom: 16px;
      }

      .all_chk {
        padding: 0;
        font-size: 12px;
        line-height: 18px;
        color: #4065c2;
      }

      .cb_list {
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        height: 640px;

        &::-webkit-scrollbar {
          width: 12px;
        }

        &::-webkit-scrollbar-thumb {
          background-color: #eaeaea;
          border-radius: 24px;
          background-clip: padding-box;
          border: 4px solid transparent;
        }

        .chk_box {
          width: 100%;
          margin-top: 16px;

          &:first-child {
            margin-top: 0;
          }

          .chk_title {
            font-size: 14px;
            line-height: 20px;
            padding-left: 12px;
          }

          .chk_txt {
            font-size: 12px;
            line-height: 18px;
            color: #777;
            flex: 1;
            width: 1px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            padding-left: 8px;
          }
        }

        .cb_txt {
          font-size: 12px;
          line-height: 18px;
          color: #777;
        }
      }
    }
  }

  .pmc_btn_list {
    display: flex;
    gap: 12px;
    flex-direction: column;
    margin: auto 0;

    .pmc_btn_item {
      width: 32px;
      height: 32px;
      background-image: url("/static/asset/images/common/icon_c_prev.svg");
      background-repeat: no-repeat;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 0;

      &.btn_right {
        background-image: url("/static/asset/images/common/icon_c_next.svg");
      }
    }
  }
}

.input_basic .input_wrap {
  .input_item {
    .pm_f_color {
      font-family: 'notokr-bold';
      color: #7e1785;
    }

    .input_detail {
      .charge_btn {
        min-width: 74px;
        height: 34px;
        box-sizing: border-box;
        padding: 7px 8px;
        border: 1px solid #7e1785;
        color: #7e1785;
        font-size: 12px;
        line-height: 18px;
        margin: -7px 0 -7px auto;
        border-radius: 8px;
      }

      .txt {
        width: 1px;
        flex: 1;
      }
    }
  }

  .btn_prmt_send {
    box-sizing: border-box;
    padding: 12px;
    font-size: 12px;
    line-height: 18px;
    margin: 12px 0 0 auto;
  }
}

.type_w100 {
  width: 100%;
}

.promotion_send, .message_send {
  width: 340px;

  .input_search_icon {
    width: 100%;
  }
}

.preview_section {
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid #ccc;
  background-color: #f8f4fb;
  padding: 24px 20px 40px;

  .pv_txt {
    font-size: 12px;
    font-family: 'notokr-bold';
    line-height: 18px;
    color: #7e1785;
    margin-bottom: 12px;
  }

  .pv_title {
    font-size: 16px;
    font-family: 'notokr-bold';
    line-height: 24px;
    margin-bottom: 12px;
  }

  .pv_box {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid #debff0;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 20px;

    .txt {
      font-size: 12px;
      line-height: 18px;
      color: #000;
    }

    .img_box {
      width: 100%;
      border-radius: 12px;
    }
  }
}

.reception_registration {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;

  .rr_head {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 10px;

    .user_info {
      display: flex;
      align-items: center;
      gap: 8px;

      .user_rating {
        min-width: 32px;
        height: 20px;
        border-radius: 30px;
        background-color: #f16d7d;
        color: #fff;
        font-size: 10px;
        line-height: 16px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .user_name {
        font-size: 14px;
        line-height: 20px;
      }

      .user_birthday, .user_phone {
        font-size: 12px;
        line-height: 18px;
        color: #5a5a5a;
      }
    }

    .popup_btn {
      box-sizing: border-box;
      padding: 3px 6px;
      border: 1px solid #7e1785;
      font-size: 12px;
      line-height: 18px;
      color: #7e1785;
      border-radius: 8px;
      margin-left: auto;
    }
  }

  .rr_body {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #fafafa;

    .title {
      width: 100%;
      font-size: 12px;
      line-height: 18px;
      color: #222;
      padding-bottom: 10px;
    }

    .rr_list {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;

      .rr_item {
        width: 100%;

        .rr_date {
          font-size: 13px;
          line-height: 20px;
          color: #777;
        }

        .rr_title {
          font-size: 14px;
          line-height: 20px;
          color: #222;
        }
      }
    }
  }
}

.white_box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  padding: 20px;

  .wb_item {
    width: 100%;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;

    .btn_icon_box {
      margin: 0 0 auto auto;
    }

    &:first-child {
      padding-top: 0;
      margin-top: 0;
      border-top: none;
    }
  }

  .txt_box_btn {
    border: 1px solid #7e1785;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 3px 12px;
    font-size: 12px;
    line-height: 18px;
    color: #7e1785;
  }

  .user_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .user_info_line {
    display: flex;
    align-items: center;

    .txt_box_btn {
      margin-left: 12px;
    }

    .ui_item {
      display: flex;
      align-items: center;
      margin-left: 16px;

      &:first-child {
        margin-left: 0;
      }

      .ui_title {
        font-size: 12px;
        line-height: 18px;
        color: #777;
        margin-right: 16px;
      }

      .ui_con {
        display: flex;
        align-items: center;
      }

      .ui_txt {
        font-size: 13px;
        line-height: 20px;
      }

      .ui_b_txt {
        font-size: 16px;
        line-height: 24px;
        font-family: 'notokr-bold';
      }
    }

    &.type_line .ui_item {
      padding-left: 33px;
      position: relative;
      margin: 0;

      &::before {
        content: "";
        width: 1px;
        height: 16px;
        background-color: #ccc;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translate(0, -50%);
      }

      &:first-child {
        padding-left: 0;

        &::before {
          display: none;
        }
      }
    }

    .staff_box {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .staff_info {
      font-size: 14px;
      line-height: 22px;
      color: #222;
    }

    .period {
      font-size: 14px;
      line-height: 20px;
      margin-left: 16px;
    }

    .send_box {
      display: inline-flex;
      position: relative;
      align-items: center;
      margin-left: 16px;

      .send_title {
        display: inline-flex;
        align-items: center;
        padding: 0;
        gap: 4px;
        font-size: 12px;
        line-height: 18px;
        color: #7e1785;

        img {
          width: 12px;
          height: 12px;
        }
      }

      .send_list {
        box-sizing: border-box;
        padding: 4px;
        border: 1px solid #ccc;
        border-radius: 12px;
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        top: calc(100% + 4px);
        opacity: 0;
        pointer-events: none;
        transition: 0.4s;

        &.active {
          opacity: 1;
          pointer-events: auto;
        }

        .send_item {
          font-size: 12px;
          line-height: 18px;
          min-width: 54px;
          box-sizing: border-box;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 26px;
        }
      }
    }
  }

  .user_info {
    .user_rating {
      min-width: 32px;
      height: 20px;
      border-radius: 30px;
      background-color: #f16d7d;
      color: #fff;
      font-size: 10px;
      line-height: 16px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
    }

    .user_name {
      font-size: 16px;
      line-height: 24px;
      font-weight: 700;
    }

    .user_birthday, .user_sex {
      font-size: 14px;
      line-height: 20px;
      font-weight: 500;
      margin-left: 16px;
    }

    .user_id {
      font-size: 14px;
      line-height: 20px;
      font-weight: 500;
      margin-left: 16px;
      display: flex;
      align-items: center;

      .dots:after {
        content: "●●●●●●";
        font-size: 9px;
        line-height: 20px;
        letter-spacing: 1px;
      }
    }

    .user_phone {
      font-size: 14px;
      line-height: 20px;
      font-weight: 500;
      margin-left: 16px;
    }
  }

  .wb_head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;

    .title {
      font-size: 14px;
      line-height: 20px;
      font-family: 'notokr-bold';
    }

    .wb_cancel_rate {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #000;

      .wbc_item_text {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
      }

      .wbc_item_value {
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
      }
    }

    .wb_category {
      display: flex;
      align-items: center;
      margin-left: auto;
      gap: 8px;

      .wbc_item {
        font-size: 12px;
        line-height: 18px;
        padding: 4px 10px;
        min-width: 60px;
        text-align: center;
        color: #777;
        border-radius: 14px;
        background-color: #eaeaea;

        &.current {
          background-color: #5a5a5a;
          color: #fff;
        }
      }
    }
  }

  .table_wrap .table_box table {
    .t_head th {
      font-size: 12px;
      line-height: 18px;
      background-color: #f5f5f5;
    }

    .t_body td {
      font-size: 13px;
      line-height: 20px;
    }
  }

  &.c_history_section, &.p_history_section {
    height: 1px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .table_wrap {
    overflow-y: auto;
    flex: 1;
    height: 1px;

    .t_head {
      position: sticky;
      z-index: 2;
      top: 0;
    }

    &::-webkit-scrollbar {
      width: 16px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 5px solid transparent;
    }
  }

  &.records_and_payment {
    width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;

    .wb_item {
      height: calc(50% - 8px);
      display: flex;
      flex-direction: column;

      .memo_box, .payment_history {
        height: 1px;
        flex: 1;
      }
    }
  }
}

.memo_box {
  width: 100%;
  overflow: hidden auto;

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 5px solid transparent;
  }

  .memo_list {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;

    .memo_item {
      position: relative;
      width: 100%;

      .title {
        display: inline-table;
        font-size: 13px;
        line-height: 20px;
        color: #222;
        word-break: keep-all;
      }

      textarea.title {
        min-height: auto;
        padding: 0 40px 0 0;
        border: none;
      }

      .date {
        font-size: 12px;
        line-height: 18px;
        color: #777;
        margin-top: 4px;
      }
    }
  }
}

.memo_input {
  margin-top: auto;
  padding-top: 16px;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 8px;

  .memo_txt {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    margin-bottom: 46px;
    border: none;
  }

  .memo_add {
    min-width: 80px;
    box-sizing: border-box;
    padding: 7px 15px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    background-color: #7e1785;
    border-color: #7e1785;
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 8px;
  }

  .memo_fixed {
    min-width: 80px;
    box-sizing: border-box;
    padding: 6px 5px;
    font-size: 12px;
    line-height: 18px;
    color: #7e1785;
    background-color: #ffffff;
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 8px;
    border: 1px solid #7e1785;
  }
}

.memo_item_fixed_box {
  display: flex;
}

.memo_item {
  .iconPin {
    display: none;
  }

  &.fixed {
    .iconPin {
      display: inline-table;
      width: 20px;
      height: 20px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url("/static/asset/images/common/icon_pin.svg");
      margin-right: 10px;

      &:hover {
        background-image: url("/static/asset/images/common/icon_pin_purple.svg");
      }
    }

    &.active .iconPin {
      background-image: url("/static/asset/images/common/icon_pin_purple.svg");
    }
  }

  .statusLabel {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
  }
}

.payment_history {
  width: 100%;
  overflow: hidden auto;

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 5px solid transparent;
  }

  .ph_list {
    display: inline-flex;
    flex-direction: column;
    width: 100%;

    .ph_item {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      box-sizing: border-box;
      padding: 12px 0;
      border-top: 1px solid #eaeaea;

      &:first-child {
        padding-top: 0;
        border-top: none;
      }

      .title {
        flex: 1;
        width: 1px;
        font-size: 13px;
        line-height: 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
      }

      .price {
        font-size: 13px;
        line-height: 20px;
        margin-left: auto;
      }

      .status_box {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
      }

      .status_txt {
        font-size: 12px;
        line-height: 18px;

        &.type_01 {
          color: #65a95f;
        }

        &.type_02 {
          color: #d05050;
        }
      }

      .date {
        font-size: 12px;
        line-height: 18px;
        color: #777;
      }

      .line_txt {
        display: flex;
        align-items: center;
        margin-left: auto;

        .txt {
          font-size: 12px;
          line-height: 18px;
          color: #777;
          padding-left: 17px;
          position: relative;

          &:before {
            content: "";
            width: 1px;
            height: 12px;
            background-color: #777;
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translate(0, -50%);
          }

          &:first-child {
            padding-left: 0;

            &:before {
              display: none;
            }
          }
        }
      }
    }
  }
}

.contents .con_body > .flex_box {
  &.fixed_flex {
    height: calc((var(--vh, 1vh) * 100) - 139px);
  }

  &.min_1560 {
    min-width: 1560px;
  }
}

.membership_con {
  display: flex;
  align-items: center;
  gap: 24px;

  .title {
    font-size: 14px;
    line-height: 20px;
    color: #222;
  }
}

.white_box.customer_list {
  width: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wb_tab {
  width: calc(100% + 40px);
  margin: 0 -20px;
  overflow: auto hidden;
  -ms-overflow-style: none;

  /* IE and Edge */
  scrollbar-width: none;

  /* Firefox */

  .tab_list {
    display: inline-flex;
    box-sizing: border-box;
    padding: 0 20px;
    min-width: 100%;

    .tab_item {
      min-width: 60px;
      box-sizing: border-box;
      padding: 8px 10px;
      text-align: center;
      position: relative;
      font-size: 13px;
      line-height: 20px;
      color: #a9a9a9;
      white-space: nowrap;

      &::before {
        content: "";
        width: 100%;
        height: 1px;
        background-color: #ccc;
        position: absolute;
        left: 0;
        bottom: 0;
      }

      &.current {
        color: #7e1785;

        &::before {
          height: 2px;
          background-color: #7e1785;
        }
      }
    }
  }
}

/*.wb_tab::-webkit-scrollbar {*/
/*    height: 16px;*/
/*}*/
/*.wb_tab::-webkit-scrollbar-thumb {*/
/*    background-color: #eaeaea;*/
/*    border-radius: 24px;*/
/*    background-clip: padding-box;*/
/*    border: 5px solid transparent;*/
/*}*/

.user_section .wb_item {
  gap: 16px;
}

.custom_status {
  width: 100%;
  overflow: hidden auto;

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 5px solid transparent;
  }

  .cs_list {
    width: 100%;

    .cs_item {
      width: 100%;
      box-sizing: border-box;
      padding: 12px 0;
      border-bottom: 1px solid #EAEAEA;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;

      .line {
        width: 100%;
        display: flex;
        align-items: center;

        .name {
          font-size: 13px;
          line-height: 20px;
          color: #222;
        }

        .date {
          font-size: 12px;
          line-height: 18px;
          color: #777;
          margin-left: auto;
        }
      }
    }
  }
}

.customer_list .custom_status {
  flex: 1;
  height: 1px;

  /*scrollbar-gutter: stable;*/
  /*width: calc(100% + 16px);*/
}

.btn_section {
  width: 100%;
  display: flex;
  gap: 12px;
  padding: 0;
  background-color: transparent;
  box-shadow: none;

  .page_btn {
    flex: 1 1 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    font-size: 14px;
    line-height: 20px;
  }
}

.memo_section {
  display: flex;
  flex-direction: column;

  .mc_wrap {
    width: 100%;
    height: 208px;
    flex: 1;
    overflow: hidden auto;
    background-color: #f5f5f5;
    box-sizing: border-box;
    padding: 16px;

    &::-webkit-scrollbar {
      width: 16px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #eaeaea;
      border-radius: 24px;
      background-clip: padding-box;
      border: 5px solid transparent;
    }

    .mc_box {
      width: 100%;
      display: inline-flex;
      flex-direction: column;
      gap: 16px;

      .mc_item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;

        .txt {
          flex: 1;
          width: 1px;
          font-size: 13px;
          line-height: 20px;
          color: #222;
        }

        .date {
          font-size: 12px;
          line-height: 20px;
          color: #777;
          margin-left: auto;
        }
      }
    }
  }
}

.mc_item {
  .iconDel {
    display: none;
    width: 16px;
    height: 16px;
    background: url("/static/asset/images/common/icon_delete.svg") no-repeat;
    background-size: cover;
    margin-left: -10px;
  }

  &:hover .iconDel {
    display: block;
  }
}

.memo_section .mc_input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;

  input {
    flex: 1;
    width: 1px;
    height: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 20px;
  }

  .mc_send {
    min-width: 80px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7e1785;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    box-sizing: border-box;
    padding: 8px;
  }
}

.various_info_section {
  width: 100%;
  height: 100%;
  overflow: hidden auto;

  .input_wrap {
    display: flex;
    gap: 8px;
    width: 100%;

    .select {
      width: 102px;
    }

    .input_item {
      &.type_icon {
        width: 1px;
        flex: 1;
      }

      input {
        width: 100%;
      }
    }
  }

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 5px solid transparent;
  }
}

.surgical_products {
  .product_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    .product_item {
      width: 100%;
      box-sizing: border-box;
      padding: 8px 12px;
      border: 1px solid #eaeaea;
      border-radius: 8px;
      background-color: #fff;
      width: 100%;
      box-sizing: border-box;
      padding: 8px 12px;
      border: 1px solid #eaeaea;
      border-radius: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;

      .line {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 4px;
      }

      p {
        font-size: 12px;
        line-height: 18px;
        color: #454545;
      }

      .p_num {
        font-size: 11px;
        line-height: 18px;
        color: #777;
      }

      .p_title {
        width: 1px;
        flex: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
      }

      .p_price {
        text-align: right;
      }

      .p_txt {
        font-size: 12px;
        line-height: 18px;
        color: #5a5a5a;
      }

      .p_detail {
        width: 100%;
        box-sizing: border-box;
        padding: 12px;
        border-radius: 12px;
        background-color: #f5f5f5;

        .p_detail_item {
          padding: 8px 0;
          display: flex;
          flex-wrap: wrap;
          gap: 6px;
          border-top: 1px solid #ccc;

          &:first-child {
            padding-top: 0;
            border-top: none;
          }

          &:last-child {
            padding-bottom: 0;
          }

          .p_detail_title {
            font-size: 12px;
            line-height: 18px;
            color: #454545;
            width: 100%;
          }

          .p_txt {
            font-size: 11px;
            line-height: 14px;
            color: #5a5a5a;
            width: 100%;
          }

          .p_count {
            font-size: 12px;
            line-height: 18px;
            color: #454545;
            width: 1px;
            flex: 1;
          }

          .p_detail_price {
            font-size: 12px;
            line-height: 18px;
            text-align: right;
          }
        }
      }

      &.active {
        border-color: #7e1785;
      }
    }
  }

  width: 100%;
  box-sizing: border-box;
  padding: 16px 12px;
  background-color: #f5f5f5;
  margin-top: 12px;
}

.various_info_section .table_wrap {
  flex: initial;
  height: auto;
}

.wb_item {
  &.requested_product .result_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    gap: 12px;

    .title {
      font-size: 12px;
      line-height: 18px;
      color: #777;
    }

    .price {
      font-size: 16px;
      line-height: 24px;
      font-family: 'notokr-bold';
    }
  }

  .table_wrap table .t_body {
    td {
      padding: 4px 12px;
    }

    .product .product_table {
      width: 100%;
      text-align: left;
      display: flex;
      flex-wrap: wrap;
      gap: 2px;

      .pt_num {
        font-size: 12px;
        line-height: 18px;
        color: #777;
        width: 100%;
      }

      .pt_title {
        width: 100%;
        font-size: 13px;
        line-height: 20px;
        color: #454545;
      }
    }

    .t_delete {
      padding: 0;
      width: auto;
      font-size: 12px;
      line-height: 18px;
      color: #d05050;
      white-space: nowrap;
    }
  }
}

.payment_btn {
  min-width: 100px;
  box-sizing: border-box;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin-top: 24px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7e1785;
  border-radius: 8px;
}

.payment_wrap {
  width: 100%;

  .payment_top {
    width: 100%;

    .pt_item {
      padding: 16px 0;
      border-top: 1px solid #ccc;

      &:first-child {
        padding-top: 0;
        border-top: none;
      }
    }
  }

  .pi_head {
    width: 100%;
    display: flex;
    padding-bottom: 12px;
    align-items: center;

    .title {
      font-size: 14px;
      line-height: 20px;
    }

    .txt {
      font-size: 12px;
      line-height: 18px;
      margin-left: 6px;
    }

    .reset {
      font-size: 13px;
      line-height: 20px;
      padding-left: 24px;
      position: relative;
      margin-left: auto;

      &::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("/static/asset/images/common/refresh.svg") no-repeat;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
      }
    }
  }

  .amount_item {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;

    .ai_title {
      font-size: 13px;
      line-height: 20px;
      color: #222;
    }

    .ai_num {
      font-size: 14px;
      line-height: 20px;
      color: #222;
    }
  }

  .payment_bot {
    display: flex;
    gap: 12px;
    margin-top: 12px;
  }
}

.p_input_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;

  .p_input_item {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    .input_item {
      display: inline-flex;
      gap: 8px;

      input {
        width: 106px;
      }

      button {
        box-sizing: border-box;
        padding: 7px 11px;
        border: 1px solid #7e1785;
        font-size: 12px;
        line-height: 18px;
        color: #7e1785;
        white-space: nowrap;

        &:disabled {
          border-color: #ccc;
          background-color: #ccc;
          color: #fff;
        }
      }
    }
  }
}

.pb_sub_box {
  width: 100%;

  .pb_sub_item {
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid #ccc;

    &:first-child {
      border-top: 0;
      padding-top: 0;
    }

    &:last-child {
      padding-bottom: 0;
    }

    .pb_sub_head {
      width: 100%;
      display: flex;
      align-items: center;
      padding-bottom: 12px;

      .sub_title {
        font-size: 13px;
        line-height: 20px;
      }
    }
  }

  .pb_sub_body {
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 12px 16px;
    background-color: #f5f5f5;
    border-radius: 8px;

    .pb_txt_list {
      display: inline-flex;
      align-items: center;
      gap: 24px;

      .pb_txt_item {
        display: inline-flex;
        align-items: center;
        gap: 16px;

        .pb_txt_title {
          font-size: 12px;
          line-height: 18px;
          color: #454545;
        }

        .pb_txt_content {
          font-size: 13px;
          line-height: 20px;
          color: #454545;
        }

        .amount_used {
          width: 106px;
          padding: 7px 11px;
          box-sizing: border-box;
          border: 1px solid #ccc;
          background-color: #fff;
          color: #454545;
          border-radius: 8px;
          font-size: 12px;
          line-height: 18px;
          text-align: right;
        }
      }
    }

    .pb_btn {
      display: inline-flex;
      gap: 8px;
      margin-left: auto;

      .pb_btn_item {
        box-sizing: border-box;
        padding: 3px 11px;
        min-width: 73px;
        border: 1px solid #222;
        color: #222;
        border-radius: 8px;
        font-size: 12px;
        line-height: 18px;
        background-color: #fff;

        &.color_red {
          color: #D05050;
          border-color: #D05050;
        }
      }
    }
  }
}

.payment_wrap {
  .payment_bot {
    .left {
      flex: 1;
      width: 1px;
    }

    .right {
      display: flex;
      flex-direction: column;
    }

    .final_payment {
      width: 332px;
      box-sizing: border-box;
      padding: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;

      .fp_head {
        width: 100%;
        display: flex;
        align-items: center;
        padding-bottom: 24px;

        .title {
          font-size: 14px;
          line-height: 20px;
          color: #000;
        }
      }

      .fp_body {
        width: 100%;

        .fp_list {
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 8px;
          padding-bottom: 16px;
          border-bottom: 1px solid #ccc;

          .fp_item {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .fp_title {
              font-size: 13px;
              color: #222;
              line-height: 20px;
            }

            .fp_amount {
              font-size: 13px;
              color: #454545;
              line-height: 20px;
            }
          }
        }

        .fp_last_item {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding-top: 16px;

          .fp_last_title {
            font-size: 13px;
            line-height: 20px;
            color: #7e1785;
          }

          .fp_last_amount {
            font-size: 14px;
            line-height: 20px;
            color: #7e1785;
            font-family: 'notokr-bold';
          }
        }
      }
    }

    .fp_btn {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;

      .fp_btn_item {
        flex: 1 1 0;
        box-sizing: border-box;
        padding: 9px 15px;
        border: 1px solid #454545;
        background-color: #454545;
        border-radius: 8px;
        font-size: 14px;
        line-height: 20px;
        color: #fff;

        &.color_red {
          border-color: #D05050;
          background-color: #fff;
          color: #D05050;
        }

        &.color_pr {
          border-color: #7E1785;
          background-color: #7E1785;
          color: #fff;
        }
      }
    }
  }

  .pb_item {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 12px;

    &:first-child {
      margin-top: 0;
    }
  }
}

.popup {
  .table_wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;

    .table_box {
      width: 100%;

      table {
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%;

        .t_head th {
          background-color: #F5F5F5;

          &:first-child {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
          }

          &:last-child {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
          }
        }

        .t_body {
          cursor: pointer;

          &:hover {
            .title {
              text-decoration: underline;
            }

            .user_name_box .user_chart {
              display: block;
            }
          }

          .t_btn_txt {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;

            .tbt_time {
              font-size: 14px;
              line-height: 20px;
              color: #454545;
            }

            .tbt_btn {
              width: 60px;
              height: 26px;
              box-sizing: border-box;
              padding: 0;
              border: 1px solid #454545;
              font-size: 12px;
              line-height: 18px;
              margin: 0;
              border-radius: 8px;

              &:disabled {
                opacity: 0.5;
                color: #222;
              }
            }
          }

          .favorite_title {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;

            .title {
              width: auto;
            }

            .item_favorite {
              width: 20px;
              height: 20px;
              background-image: url("/static/asset/images/common/icon_bookmark.svg");
              background-size: cover;
              background-position: center;
              background-repeat: no-repeat;
              padding: 0;
              margin: 0;

              &.active {
                background-image: url("/static/asset/images/common/icon_bookmark_active.svg");
              }
            }
          }
        }

        th, td {
          font-size: 14px;
          line-height: 20px;
          box-sizing: border-box;
          padding: 12px 8px;
          text-align: center;
        }

        th {
          color: #222;
          font-weight: 300;
        }

        td {
          color: #454545;
          border-bottom: 1px solid #eaeaea;
        }

        .pw_reset {
          box-sizing: border-box;
          padding: 8px;
          border: 1px solid #dd3434;
          border-radius: 8px;
          font-size: 14px;
          line-height: 20px;
          cursor: pointer;
          color: #e7385e;
        }

        td {
          button {
            margin: -9px auto -9px;
          }

          &.title {
            width: 356px;
            max-width: 356px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;

            span {
              font-size: 13px;
              line-height: 20px;
              color: #454545;
            }
          }
        }

        .chk_box {
          display: flex;
          width: 24px;
          margin: -2px auto;
        }
      }

      .t_input {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;

        span {
          font-size: 12px;
          line-height: 18px;
          color: #454545;
        }

        input {
          border: 1px solid #ccc;
          border-radius: 8px;
          height: 36px;
          font-size: 12px;
          color: #454545;
          padding: 8px 12px;
        }

        select {
          border: 1px solid #ccc;
          border-radius: 8px;
          height: 36px;
          font-size: 12px;
          color: #454545;
          padding: 0 8px;
        }

        .apply_btn {
          box-sizing: border-box;
          height: 36px;
          padding: 0 11px;
          border: 1px solid #7e1785;
          border-radius: 8px;
          font-size: 12px;
          line-height: 18px;
          color: #7e1785;
          margin-left: 14px;
          margin-right: 0;
          white-space: nowrap;
        }
      }
    }
  }

  .img_content {
    width: 100%;
    display: flex;
    gap: 12px;

    .img_detail {
      width: 508px;

      .img_head {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 12px;

        .title {
          font-size: 14px;
          line-height: 20px;
          color: #222;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
        }

        .date {
          font-size: 12px;
          line-height: 18px;
          color: #777;
          margin-left: auto;
        }
      }

      .img_detail_box {
        width: 100%;
        padding-bottom: 560px;
        background-color: #454545;
        border-radius: 8px;
        position: relative;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
        }
      }
    }

    .img_wrap {
      width: 180px;
      height: 592px;
      overflow: hidden auto;

      &::-webkit-scrollbar {
        width: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }

      .img_list {
        width: 100%;
        display: inline-flex;
        flex-direction: column;
        gap: 12px;

        .img_item {
          width: 100%;

          .img_thumbnail {
            width: 100%;
            padding-bottom: 66.66%;
            border-radius: 8px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            overflow: hidden;
          }

          .title {
            font-size: 12px;
            line-height: 18px;
            color: #222;
            margin-top: 4px;
          }
        }
      }
    }
  }
}

.toggle_item {
  .toggle_btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: space-between;

    .title {
      font-size: 14px;
      line-height: 20px;
    }

    img {
      width: 20px;
      height: 20px;
      transition: 0.6s;
    }
  }

  &.active .toggle_btn img {
    transform: rotate(180deg);
  }
}

.scroll_content {
  overflow: hidden auto;

  &::-webkit-scrollbar {
    width: 12px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 4px solid transparent;
  }
}

.error_box {
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  flex-direction: column;

  img {
    width: 288px;
    margin-bottom: 30px;
  }

  .error_title {
    font-size: 40px;
    line-height: 1.5;
    color: #000;
    text-align: center;
    font-family: 'notokr-bold';
    margin-bottom: 24px;
  }

  .error_txt {
    font-size: 16px;
    line-height: 1.5;
    color: #454545;
    text-align: center;
  }
}

.small_input {
  width: 60px;
}

.receptionist_info {
  display: flex;
  align-items: center;
}

.user_select_info {
  display: flex;
  align-items: center;
  gap: 5px;

  > span {
    &.name {
      font-size: 14px;
      color: #000000;
    }

    font-size: 12px;
    color: #5a5a5a;
  }

  .rating {
    min-width: 50px;
    box-sizing: border-box;
    padding: 2px 8px;
    font-size: 12px;
    font-family: 'notokr-bold';
    line-height: 18px;
    color: #fff;
    border-radius: 25px;
    text-align: center;
    background-color: #f16d7d;
  }
}

.receptionist_info .ticket_btn {
  margin-left: auto;
  padding: 3px 5px;
  font-size: 12px;
  font-weight: 500;
}

.recent_medical_history_box {
  width: 100%;
  border: 1px solid #eaeaea;
  height: 230px;
  overflow: hidden;
  overflow-y: auto;
  padding: 12px;
  background-color: #fafafa;
  border-radius: 8px;

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 5px solid transparent;
  }

  .title {
    font-size: 12px;
    color: #222222;
  }

  .mh_list {
    margin-top: 15px;

    .mh_item {
      margin-bottom: 10px;

      .date {
        font-size: 13px;
        color: #777777;
      }

      .product_name {
        font-size: 14px;
        color: #222222;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

.popup {
  .sub_popup2 {
    width: 400px;
    max-height: 700px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: 400px;
    padding: 20px;
    flex-direction: column;
    z-index: 1;
    display: none;
  }

  .popup_box .sub_popup2 {
    z-index: 1;
    position: absolute;
    right: -20px;
    top: 0;
    transform: translate(100%, 0);
  }

  .sub_popup2 {
    &.sub_active {
      display: flex;
    }

    .sp_con {
      width: 100%;
      flex: 1;
      overflow-y: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      padding-top: 16px;
      box-sizing: border-box;

      &::-webkit-scrollbar {
        width: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }
    }

    .sp_top {
      width: 100%;
      display: flex;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid #454545;

      .sp_title {
        font-size: 18px;
        font-family: 'notokr-bold';
        line-height: 28px;
      }

      .sp_close {
        width: 24px;
        height: 24px;
        background: url("/static/asset/images/common/icon_close.svg") no-repeat;
        background-size: cover;
        cursor: pointer;
        margin-left: auto;
      }
    }

    .sp_bot {
      padding-top: 20px;

      .btn_list .btn_item {
        height: 44px;
      }
    }

    &.type_02 {
      .sp_top {
        border-bottom: none;
      }

      .sp_con {
        padding-top: 0;
      }
    }
  }

  .popup_selectDate {
    width: 400px;
    max-height: 700px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: 400px;
    padding: 20px;
    flex-direction: column;
    z-index: 1;
    display: none;
  }

  .popup_box .popup_selectDate {
    z-index: 1;
    position: absolute;
    right: -20px;
    top: 0;
    transform: translate(100%, 0);
  }

  .popup_selectDate {
    &.sub_active {
      display: flex;
    }

    .sp_con {
      width: 100%;
      flex: 1;
      overflow-y: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      padding-top: 16px;
      box-sizing: border-box;

      &::-webkit-scrollbar {
        width: 12px;
      }

      &::-webkit-scrollbar-thumb {
        background-color: #eaeaea;
        border-radius: 24px;
        background-clip: padding-box;
        border: 4px solid transparent;
      }
    }

    .sp_top {
      width: 100%;
      display: flex;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid #454545;

      .sp_title {
        font-size: 18px;
        font-family: 'notokr-bold';
        line-height: 28px;
      }

      .sp_close {
        width: 24px;
        height: 24px;
        background: url("/static/asset/images/common/icon_close.svg") no-repeat;
        background-size: cover;
        cursor: pointer;
        margin-left: auto;
      }
    }

    .sp_bot {
      padding-top: 20px;

      .btn_list .btn_item {
        height: 44px;
      }
    }

    &.type_02 {
      .sp_top {
        border-bottom: none;
      }

      .sp_con {
        padding-top: 0;
      }
    }
  }

  .selected_items_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    width: 100%;

    .product_item {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      gap: 4px;
      justify-content: space-between;
      align-items: center;

      /*cursor: pointer;*/

      &.active {
        border-color: #a679b5;
      }

      .p_title {
        font-size: 14px;
        font-family: 'notokr-bold';
        line-height: 20px;
        color: #454545;
        width: 100%;

        &.type_02 {
          width: calc(100% - 100px);
        }

        .p_company {
          padding-right: 9px;
          position: relative;

          &::before {
            content: "";
            width: 1px;
            height: 14px;
            background-color: #ccc;
            position: absolute;
            right: 3px;
            top: 3px;
          }
        }
      }

      .p_price {
        font-size: 14px;
        line-height: 20px;
        color: #454545;
      }

      .p_num {
        font-size: 12px;
        line-height: 18px;
        color: #777;
      }

      .p_txt {
        width: 100%;
        font-size: 12px;
        line-height: 18px;
        color: #5a5a5a;
      }

      .p_count {
        font-size: 12px;
        line-height: 18px;
        color: #454545;
      }

      .p_detail {
        width: 100%;
        background-color: #f5f5f5;
        box-sizing: border-box;
        padding: 12px;
        border-radius: 12px;
        margin-top: 4px;

        .p_detail_item {
          display: flex;
          flex-wrap: wrap;
          box-sizing: border-box;
          width: 100%;
          border-top: 1px solid #ccc;
          gap: 4px;
          justify-content: space-between;
          padding: 8px 0;

          &:first-child {
            border-top: none;
            padding-top: 0;
          }

          &:last-child {
            padding-bottom: 0;
          }

          .p_detail_title, .p_detail_price {
            font-size: 14px;
            line-height: 20px;
            color: #454545;
          }
        }
      }
    }
  }
}

.product_item_controls {
  display: flex;
  width: 100%;

  > p {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;

    &:last-child {
      margin-left: auto;
    }

    &.controls {
      gap: 10px;

      .controls_icon {
        border: 1px solid #666;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 23px;
        border-radius: 5px;
      }

      .quantity {
        font-size: 14px;
        align-items: center;
        display: flex;
      }
    }
  }
}

.delete_item {
  border-color: #e7385e;
  background-color: transparent;
  color: #e7385e;
  font-size: 14px;
  margin-left: auto;
  padding: 0;
}

.total_price_container {
  margin-top: 20px;
  display: none;
  font-size: 13px;
}

.sub_popup2_close, .sub_popup3_close {
  width: 24px;
  height: 24px;
  background: url("/static/asset/images/common/icon_close.svg") no-repeat;
  background-size: cover;
  cursor: pointer;
  margin-left: auto;
}

/* 휴무 라이브러리 커마 */

.calendar_box {
  .calendar {
    .months-container {
      gap: 20px 32px;

      .month-container.month-3 {
        width: calc(25% - 24px);
      }
    }

    table {
      &.month {
        th {
          &.month-title {
            height: 48px;
            text-align: left;
            box-sizing: border-box;
            padding: 0 8px;
            font-size: 20px;
            line-height: 30px;
            font-family: 'notokr-bold';
            border-bottom: 1px solid #5a5a5a;
          }

          &.day-header {
            height: 48px;
            font-size: 14px;
            color: #454545;
          }
        }

        tr td {
          height: 40px;
          box-sizing: border-box;
          padding: 2px 4px;
        }

        th.day-header:first-child, td.day:first-child .day-content {
          color: #d05050;
        }

        th.day-header:last-child {
          color: #17a1fa;
        }

        td.day {
          &:last-child .day-content {
            color: #17a1fa;
          }

          .day-content {
            width: 100%;
            height: 100%;
            font-size: 14px;
            line-height: 20px;
            color: #454545;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;

            &.operating_time {
              background-color: #adc3fd;
              color: #1a53e6;
              border-radius: 6px;
            }

            &.event_day {
              background-color: #fdb7bf;
              color: #f55165;
              border-radius: 6px;
            }
          }
        }
      }

      width: 100%;
    }
  }

  .month-container .day {
    box-shadow: none !important;
  }

  .calendar .calendar-header {
    display: none !important;
  }

  .custom_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 24px;
  }

  .calendar .current_month {
    font-size: 18px;
    line-height: 28px;
    color: #000;
  }

  .custom_header .calendar_btn {
    width: 24px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    padding: 0;

    &.prev_btn {
      background-image: url("/static/asset/images/common/icon_back_m.svg");
    }

    &.next_btn {
      background-image: url("/static/asset/images/common/icon_next_m.svg");
    }

    &:disabled {
      background-color: transparent !important;
      border: none !important;
      opacity: 0.3;
    }
  }

  &.type_02 .calendar {
    .month-container {
      display: none;
      width: 100%;
    }

    table {
      table-layout: fixed;
      border-collapse: collapse;

      &.month tr {
        th, td {
          border: none;
        }

        th:first-child, td:first-child {
          border-left: none;
        }

        th:last-child, td:last-child {
          border-right: none;
        }

        th {
          height: 32px;
        }

        td {
          height: 40px;
          padding: 10px;
          text-align: center;
          vertical-align: top;
          cursor: pointer;
          border-radius: 8px;

          &.passes, &.disabled {
            opacity: 0.3;
            color: #454545 !important;
          }

          &.today {
            background-color: #f5f5f5;
          }

          &.active {
            background-color: #7e1785;

            .day-content {
              color: #fff;
            }
          }
        }
      }
    }

    .month-container.active {
      display: block;
    }

    table.month {
      th.month-title {
        display: none;
      }

      td.day {
        .day-content {
          height: auto;
          justify-content: center;
        }

        .day_list {
          display: flex;
          flex-direction: column;
          gap: 4px;
          margin-top: 16px;

          p {
            font-size: 12px;
            line-height: 20px;
          }
        }
      }
    }
  }
}

.bs_content .calendar_box {
  padding-bottom: 20px;
}

.time_list {
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 16px;

  .time_item {
    width: 100%;

    .title {
      font-size: 13px;
      line-height: 20px;
      color: #454545;
      margin-bottom: 6px;
    }

    .time_box {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;

      .chk_box {
        width: calc(25% - 6px);
        box-sizing: border-box;
        flex: initial;
      }
    }
  }
}

#calendar {
  flex-grow: 1;
  height: 100%;
}

#roomContainer {
  width: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid #ddd;
  overflow-y: auto;
}

.date_sheet {
  .btn_list {
    width: calc(100% + 40px);
    margin: 0 -20px;
    box-sizing: border-box;
    padding: 12px 20px;
    border-top: 1px solid #eaeaea;
    display: none;
  }

  .bs_content .btn_list {
    width: 100%;
    margin: 0;
    border: none;
    padding: 20px 0 0;
    display: flex;
  }

  .bs_box {
    max-height: 70%;
    height: auto;

    /*max-height: inherit;*/
    /*height: 70%;*/
  }
}

.bs_content_list {
  width: 100%;
  flex: 1;
  height: 1px;
  overflow-y: auto;

  /*margin: 0 0 -20px;*/
  padding-bottom: 20px;

  &::-webkit-scrollbar {
    width: 12px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 4px solid transparent;
  }
}

.box_list {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;

  &:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .box_item {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 8px;
    cursor: pointer;
    gap: 0 8px;

    &:first-child {
      margin-top: 0;
    }

    .title {
      font-size: 16px;
      font-family: 'notokr-bold';
      line-height: 24px;
      color: #454545;
      flex: 1;
      width: 1px;
      word-break: keep-all;
    }

    .price {
      font-size: 16px;
      line-height: 24px;
      color: #454545;
    }

    .txt {
      font-size: 14px;
      line-height: 20px;
      color: #a9a9a9;
      padding-top: 4px;
      width: 100%;
    }

    &.active {
      border-color: #7e1785;
    }
  }

  .disabled {
    opacity: 0.5 !important;

    .disabled {
      opacity: 1 !important;
    }
  }

  &.pro_list {
    .box_top {
      width: 100%;
      margin-bottom: 12px;
      display: flex;
      align-items: center;

      .title {
        font-size: 16px;
        line-height: 24px;
        font-family: 'notokr-bold';
        color: #000;
      }

      .all_chk {
        padding: 0;
        font-size: 13px;
        line-height: 20px;
        color: #454545;
        margin-left: auto;
      }
    }

    .box_item {
      cursor: initial;

      .chk_box {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        .chk_txt {
          color: #000;

          span {
            color: #777;
            font-size: 12px;
            line-height: 18px;
            color: #777;
            font-size: 12px;
            line-height: 18px;
          }
        }
      }

      .sub_box {
        width: 100%;
        margin-top: 10px;
        background-color: #fafafa;
        border: 1px solid #f5f5f5;
        border-radius: 8px;
        box-sizing: border-box;
        padding: 16px 12px;

        .sb_item {
          width: 100%;
          box-sizing: border-box;
          padding: 12px 0;
          border-top: 1px solid #ccc;

          &:first-child {
            padding-top: 0;
            border-top: none;
          }

          &:last-child {
            padding-bottom: 0;
          }
        }
      }

      .type_chk .chk_txt {
        font-size: 13px;
        line-height: 20px;
      }

      .sb_count {
        font-size: 13px;
        line-height: 20px;
        color: #454545;
        margin-left: auto;

        span {
          font-size: 14px;
          color: #222;
        }
      }

      .sb_txt {
        font-size: 12px;
        line-height: 18px;
        color: #a9a9a9;
        width: 100%;
        box-sizing: border-box;
        padding-left: 28px;
      }
    }
  }
}

.popup_selectPromotion {
  .popup_box {
    height: calc(var(--vh, 1vh) * 100);

    &.size_400 {
      padding-bottom: 0;

      .popup_bot {
        width: calc(100% + 40px);
        margin: 0 -20px;
        box-sizing: border-box;
        padding: 12px 0px;
        border-top: 1px solid #eaeaea;
      }
    }
  }

  .btn_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: calc(100% - 40px);
    text-align: center;
    margin-left: 20px;
  }

  .chk_box input:checked ~ .chk_icon {
    background: url(/static/asset/images/common/icon_check_active_color.svg) no-repeat;
    background-size: cover;
  }
}

/* 예약신청 11/12 추가*/

.apply_hospital {
  width: 100%;
  padding-bottom: 16px;

  .title {
    font-size: 16px;
    line-height: 24px;
    color: #7e1785;
    font-family: 'notokr-bold';
  }

  .input_item {
    margin-top: 16px;
  }
}

.apply_detail {
  padding-top: 16px;
  border-top: 1px solid #eaeaea;

  .input_item {
    margin-top: 12px;
  }

  .select_product {
    margin-top: 20px;

    .sp_head {
      display: flex;
      align-items: center;
      padding-bottom: 16px;

      .title {
        font-size: 14px;
        line-height: 20px;
        color: #454545;

        .count {
          box-sizing: border-box;
          padding: 2px 4px;
          border-radius: 16px;
          background-color: #f8f4fb;
          text-align: center;
          min-width: 32px;
          font-size: 11px;
          line-height: 16px;
          color: #7e1785;
          display: inline-flex;
          justify-content: center;
          margin-left: 4px;
        }
      }
    }

    .sp_body {
      width: 100%;
    }
  }
}

.sct_list {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 16px;
  background-color: #fafafa;
  border: 1px solid #f5f5f5;
  border-radius: 12px;

  .sct_item {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;

    &:first-child {
      padding-top: 0;
      border-top: none;
    }

    &:last-child {
      padding-bottom: 0;
    }

    .category {
      font-size: 12px;
      line-height: 18px;
      color: #777;
      width: 70%;
    }

    .title {
      display: flex;
      align-items: center;
      width: 100%;

      .title_txt {
        font-size: 14px;
        line-height: 20px;
        font-family: 'notokr-bold';
        color: #454545;
        width: 1px;
        flex: 1;
      }

      label {
        flex: initial;
        padding-right: 8px;
        display: none;
      }
    }

    .sct_delete {
      font-size: 12px;
      line-height: 18px;
      color: #d05050;
      margin-left: auto;
      padding: 0;
    }

    .pp_list {
      padding-top: 4px;

      .pp_item {
        display: inline-flex;
        align-items: center;
        width: 100%;
      }
    }

    .price {
      font-size: 14px;
      line-height: 20px;
      color: #454545;
      margin-left: auto;
    }

    .pp_list .pp_item .chk_box {
      .chk_icon {
        display: none;
        margin-right: 8px;
      }

      .chk_txt {
        padding-left: 0;
      }
    }

    &.active {
      .pp_list .pp_item .chk_box .chk_icon {
        display: block;
      }

      .title label {
        display: inline-flex;
      }
    }
  }
}

.apply_detail .select_product .sp_body .flex_txt {
  padding-top: 20px;

  .gt_list {
    padding-top: 8px;
  }
}

/* 플랙스 텍스트 */

.flex_txt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  .title {
    font-size: 16px;
    line-height: 24px;
    font-family: 'notokr-bold';
    color: #454545;
  }

  .price {
    font-size: 16px;
    line-height: 24px;
    color: #454545;
    font-family: 'notokr-bold';
    margin-left: auto;
  }
}

/* 가이드 텍스트 */

.gt_list {
  width: 100%;

  li {
    font-size: 13px;
    line-height: 20px;
    color: #929292;
    width: 100%;
  }
}

.popup .bs_search {
  padding-bottom: 20px;
}

.select_product {
  margin-top: 20px;
}

.popup.selectUserPopup_add .popup_box .popup_con {
  display: none;

  &.active {
    display: block;
  }
}

.selectUser_check {
  border: none;
  padding: 0;
  margin-left: 15px;
}

.board_btn_list .btn_depth1 {
  display: inline-flex;
  gap: 8px;
  cursor: pointer;

  img {
    width: 20px;
  }

  .title {
    font-size: 14px;
    line-height: 20px;
    color: #222;
  }
}

.dashboard_bs_item {
  position: relative;

  .delete_btn {
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
}

/*대시보드 동시간 같은 진료실 내용 많아질때 넘치지 않게*/

.fc-timegrid-event-harness .schedule_card {
  overflow: hidden;
}

@media screen and (max-width: 1850px) {
  .dashboard_box .schedule_section .schedule_head {
    display: block;

    > div {
      justify-content: normal !important;
      margin-bottom: 10px;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

@media screen and (max-width: 1500px) {
  .dashboard_box .schedule_section .schedule_head .right {
    display: block;
  }
}

.current_week, .current_month {
  font-size: 20px;
  font-family: 'notokr-bold';
  line-height: 30px;
  color: #000;
}

.schedule_time {
  color: #737373;
}

.db_item schedule_section {
  max-height: 90vh;
  overflow-y: scroll;
}

button.btn_prev, .btn_prev {
  background-image: url("/static/asset/images/common/chevron_back.svg");
  width: 20px;
  height: 20px;
}

button.btn_next, .btn_next {
  background-image: url("/static/asset/images/common/chevron_next.svg");
  width: 20px;
  height: 20px;
}

.current_month {
  width: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fc .fc-daygrid-day-frame {
  /* max-height: 20px; Giới hạn chiều cao tối đa của 1 ô ngày */
  overflow: hidden;
}

.fc-timegrid-slot {
  height: 100px !important;
  min-height: 100px !important;
}

.fc-event, .fc-event-dot {
  border: none !important;
  background-color: transparent;
}

.d_con_item .input_add_box .reservation_sms_list {
  max-height: 400px;
  padding-right: 35px;
  overflow-x: hidden;
  overflow-y: auto;
}

.close_side_left {
  width: 20px;
  height: 120px;
  background-color: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 8px 0px 14px 0 rgba(0, 0, 0, 0.04);
  position: absolute;
  top: 100px;
  left: -20px;
  transform: rotate(180deg);
  cursor: pointer;
}

.close_side_right {
  width: 20px;
  height: 120px;
  background-color: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 8px 0px 14px 0 rgba(0, 0, 0, 0.04);
  position: absolute;
  top: 100px;
  right: 0px;
  transform: translate(100%, 0);
  cursor: pointer;
}

.lunch-break-lane {
  background-color: #C7C7C7;
  opacity: 0.2;
}

/****TANPV**************************/

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.flex-column {
  flex-direction: column;
}

.w-100 {
  width: 100%;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

.gap-4 {
  gap: 24px;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.open-popup-search-temp-btn {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.search_side .user-pagination {
  padding-top: 24px;
  padding-bottom: 24px;

  .p_num .num_item {
    min-width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

/*.search_side .user-pagination .p_btn{display: none}*/

/****END**************************/

/****Khoa**************************/

.status_list_popup {
  position: absolute;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
  width: 150px;
  border: 1px solid #eee;

  > div:first-child {
    position: absolute;
    top: -5px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid white;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.05));
  }

  .status_list_item {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
  }
}

input.quantityRemainReason {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

.check_btn {
  min-width: 74px;
  height: 34px;
  box-sizing: border-box;
  padding: 7px 8px;
  border: 1px solid #888;
  color: #555;
  font-size: 12px;
  line-height: 18px;
  margin: -5px 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.product_btn, .group_btn, .condition_btn {
  min-width: 74px;
  height: 34px;
  box-sizing: border-box;
  padding: 7px 8px;
  border: 1px solid #7e1785;
  color: #7e1785;
  font-size: 12px;
  line-height: 18px;
  margin: 5px 0 0 auto;
  border-radius: 8px;
}

.check_btn {
  &.pm_color {
    margin-left: auto;
  }

  &.charge_color {
    border: 1px solid #7e1785;
    color: #7e1785;
  }
}

.add_condition {
  width: 100%;
}

.week_list.type_04 {
  padding-bottom: 0;
}

.radio_wrap.type_01 {
  padding: 0 0;
}

.input_item.main_item {
  padding-top: 15px;
}

.input_box.type_icon.datepicker_w {
  width: 215px;
}

.group_category {
  .gc_list {
    display: grid;
    grid-template-columns: repeat(6, 120px);

    /* 6 ô mỗi hàng */
    gap: 10px;
  }

  .gc_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 20px;
    height: 34px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;

    /* cho tooltip nhô ra khi hover */
    overflow: visible !important;

    .title {
      flex: 1;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
  }

  .gc_delete {
    margin-left: 6px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: url("/static/asset/images/common/icon_delete.svg") no-repeat center;
    background-size: cover;
  }

  .gc_item:hover::after {
    content: attr(data-fulltext);
    position: absolute;
    top: -32px;
    left: 0;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 9999;
  }
}

/* Chip */

/* Text bên trái */

/* Icon delete */

/* Tooltip — GIỮ style cũ, chỉ cần đảm bảo xuất hiện */

.popup .product_list .product_item.chk_box {
  justify-content: flex-start;

  .chk_icon {
    margin-right: 10px;
  }
}

.condition_text {
  max-width: 800px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* OUTER WRAPPER (viền ngoài) */

.msg-block {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  background: white;
  overflow: hidden;
}

/* TITLE - WHITE AREA */

.msg-block_title {
  position: relative;
  background: #fff;
  padding: 18px 20px 20px 15px;
  font-size: 17px;
  font-weight: 450;
}

/* Title + Icon (dùng wrap) */

.msg-block_title_wrap {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px 20px 20px 15px;

  .msg-block_title {
    font-size: 17px;
    font-weight: 450;
    padding: 0;

    /* không cần padding riêng vì wrap đã có */
    background: none;
  }
}

/* Dùng title style trong wrap */

/* Icon bên phải */

.icon_edit {
  width: 20px;
  height: 20px;
  background: url("/static/asset/images/common/icon_edit.svg") no-repeat center;
  background-size: contain;
  margin-left: 10px;
  cursor: pointer;
}

/* GRAY BODY = CONTENT LAYER */

.msg-block_body {
  background: #f6f6f6;
  padding: 5px 20px 20px 20px;
  margin: 0 20px 0 20px;
}

/* ROW = label trên, value dưới */

.msg-row {
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;

  &:last-child {
    border-bottom: none;
  }

  .label {
    font-size: 14px;
    font-weight: 450;
    color: #222;
    margin-bottom: 4px;
  }

  .value {
    padding-left: 3px;
    font-size: 14px;
    color: #444;
  }
}

/* WHITE FOOTER (toggle nằm ở đây) */

.msg-footer {
  background: #fff;
  padding: 12px 20px;
  text-align: right;
}

/* toggle button */

.msg-toggle-down {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #4b57db;
  cursor: pointer;
  font-size: 13px;
  padding: 4px 8px;

  &.icon_down::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("/static/asset/images/common/toggle_up.svg") no-repeat center;
    background-size: contain;
  }
}

.msg-toggle-up {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #4b57db;
  cursor: pointer;
  font-size: 13px;
  padding: 4px 25px 0 0;

  &::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("/static/asset/images/common/toggle_down.svg") no-repeat center;
    background-size: contain;
  }
}

/* COLLAPSED MODE (1 dòng duy nhất) */

.msg-collapsed {
  display: none;

  /* mặc định ẩn */
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.con_mid .mc_wrap {
  width: 100%;
  min-height: 500px;
  flex: 1;
  overflow: hidden auto;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 16px;

  &::-webkit-scrollbar {
    width: 16px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 24px;
    background-clip: padding-box;
    border: 5px solid transparent;
  }

  .mc_box {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
  }
}

.btn_type {
  text-align: right;
}

.week_list .chk_box input {
  &:checked:disabled ~ .chk_icon {
    background: url("/static/asset/images/common/icon_chk_active.svg") no-repeat !important;
    background-size: cover !important;
    filter: grayscale(100%) brightness(0.94) !important;
    cursor: not-allowed !important;
  }

  &:disabled:not(:checked) ~ .chk_icon {
    background-size: cover !important;
    filter: grayscale(100%) brightness(0.94) !important;
    cursor: not-allowed !important;
  }
}

/* NOT CHECKED + DISABLED */

/* Select disabled chung */

.slt_type:disabled, .type_w100:disabled {
  background-color: #f5f5f5 !important;
  border-color: #ccc !important;
  color: #777 !important;
  cursor: not-allowed !important;
}

.icon_group {
  width: 20px;
  height: 20px;
  background: url("/static/asset/images/common/icon_group.svg") no-repeat center;
  background-size: contain;
  margin-left: 10px;
  cursor: pointer;
}

.btn_type_01 {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.textarea_basic {
  width: 100%;
  min-height: 400px !important;
  padding: 14px;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  resize: vertical;
  box-sizing: border-box;
  overflow-y: auto;

  &::-webkit-scrollbar {
    width: 8px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 8px;
  }

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

/* Scrollbar nhỏ đẹp */

/* Khi radio bị disabled + checked → icon xám */

.radio_box input {
  &:checked:disabled ~ .radio_icon {
    background: url("/static/asset/images/common/icon_radio_active.svg") no-repeat center !important;
    background-size: cover !important;
    filter: grayscale(100%) brightness(0.7) !important;
    opacity: 0.6;
    cursor: not-allowed;
  }

  &:disabled:not(:checked) ~ .radio_icon {
    background-size: cover !important;
    opacity: 0.6;
    cursor: not-allowed;
  }
}

/* Khi radio bị disabled nhưng không checked -> icon xám nhạt */

.mc_preview {
  padding: 10px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

/* Khối hướng dẫn trong white_box */

.white_box .p_guide_box {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
  background-color: #fafafa;
  border-radius: 8px;
  display: flex;
  flex-direction: column;

  /* Mặc định: không có ảnh → xếp dọc */
  gap: 8px;

  &.has-image {
    flex-direction: row;

    /* Ảnh trái, note phải */
    align-items: flex-start;
    gap: 16px;
  }

  .dots_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;

    /* Chiếm hết phần còn lại nếu có ảnh */

    li {
      width: 100%;
      box-sizing: border-box;
      padding-left: 7px;
      position: relative;
      font-size: 12px;
      color: #777;
      line-height: 14px;

      &::before {
        content: "";
        width: 3px;
        height: 3px;
        border-radius: 100%;
        background-color: #777;
        position: absolute;
        left: 0;
        top: 6px;
      }
    }
  }

  .img_preview {
    display: none;

    /* Mặc định: không có ảnh → ẩn */
    flex-direction: column;
    gap: 4px;
  }

  &.has-image .img_preview {
    display: flex;
    width: 180px;

    /* Khung ảnh bên trái */
    flex-shrink: 0;
  }

  .img_preview {
    .txt {
      font-size: 12px;
      line-height: 14px;
      color: #777;
      margin-left: auto;
    }

    img {
      width: 100%;
      height: auto;
      max-height: 200px;

      /* Giới hạn chiều cao để không phá popup */
      object-fit: contain;
      border-radius: 6px;
    }
  }
}

/* Khi có ảnh -> chuyển layout qua ngang */

/* Danh sách note */

/* ============= HÌNH PREVIEW ============= */

/* Bao ngoài preview */

/* Khi có ảnh */

/* Caption “미리보기” (nếu dùng) */

/* Ảnh preview */

.btn_delete_condition {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 13px;

  &::before {
    content: "";
    height: 20px;
    background-size: contain;
  }
}

/****END**************************/
