@import url(./color.css);
@import url(./font.css);
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
/*공통영역*/

* {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans KR", sans-serif;
}

.wrap {
  width: 100%;
  position: relative;
}

.inner {
  width: calc(100% - 480px);
  max-width: 1440px;
  position: relative;
  margin: auto;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: var(--black);
}

.kakao_button {
  position: absolute;
  top: 8px;
  right: 40px;
  padding-right: 24px;
  height: 32px;
  font-size: 14px;
  display: flex;
  box-shadow: 0px 5px 5px rgba(25, 31, 40, 0.25);
  align-items: center;
  background-color: var(--white);
  border-radius: 100px;
}

.kakao_button img {
  border-radius: 100px;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  object-fit: cover;
}

.login_title {
  color: var(--point);
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.hidden {
  width: 0px;
  height: 0px;
  border: none;
  outline: none;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}
.admin_line .table_item {
  border: none !important;
}

/*header*/
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  background-color: var(--white);
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_link {
  width: 122px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
.header_right {
  display: flex;
  height: 80px;
  align-items: center;
}
.header_logo {
  height: 50px;
}
.header_open {
  width: 100%;
  max-width: 1920px;
  height: 0px;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  display: flex;
  z-index: 9999;
  background-color: var(--white);
}
.left_textArea {
  padding-left: 240px;
  display: flex;
  width: calc(100% - 610px - 480px);
  justify-content: left;
  background: rgb(82, 175, 221);
  background: linear-gradient(
    90deg,
    rgba(82, 175, 221, 1) 0%,
    var(--point) 100%
  );
  align-items: center;
}
.header_open_left_title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--white);
}
.header_open_left_text {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
}
.line_menu_link {
  width: 122px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  font-weight: 500;
  transition: all 0.1s ease-in-out;

  text-align: center;
}
.line_menu_link:hover {
  background-color: var(--point);
  color: var(--white);
}
.menu_line {
  width: 122px;
}
.right_menuarea {
  display: flex;
}

/*footer*/
.footer {
  background: rgb(82, 175, 221);
  background: linear-gradient(
    90deg,
    rgba(82, 175, 221, 1) 0%,
    var(--point) 100%
  );
  width: 100%;
  height: 120px;
  position: relative;
  z-index: 9999;
}

.footer .inner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_p {
  font-size: 14px;
  color: var(--white);
}
.buttonList_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*admin login page*/
#login_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.item_add_form {
  display: block;
}
.item_add_form > .table_item {
  width: calc(100% - 24px) !important;
  padding: 12px;
  text-align: left;
  margin-top: 12px;
  border-radius: 10px;
}

.item_add_form button {
  margin-top: 12px !important;
}

.item_add_form textarea {
  resize: none;
}

#login_form > a {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 24px;
  color: var(--point);
}

#login_form > img {
  margin: auto;
  margin-bottom: 40px;
  display: block;
}

.login_form_input {
  width: 460px;
  height: 55px;
  box-shadow: 0px 5px 5px rgba(25, 31, 40, 0.25);
  border: none;
  font-weight: 500;
  border-radius: 15px;
  padding-left: 16px;
  display: block;
  outline: none;
  margin: auto;
  margin-bottom: 20px;
}

.login_button {
  display: block;
  margin: auto;
  margin-top: 32px;
  font-size: 16px;
  color: var(--white);
  font-weight: bold;
  width: 220px;
  height: 55px;
  text-align: center;
  align-items: center;
  background-color: var(--dark);
  border-radius: 100px;
  border: none;
  outline: none;
  cursor: pointer;
}
.mobile_header {
  display: none;
}
.mobile_sidebar {
  display: none;
}

@media (max-width: 420px) {
  .login_form_input {
    width: calc(100% - 24px);
    padding-left: 12px;
    padding-right: 12px;
  }
  .inner {
    width: calc(100% - 40px);
  }
}

.page_subtitle {
  font-size: 16px;
  display: block;
  font-weight: bold;
  margin-right: 12px;
  padding: 4px 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  cursor: pointer;
}

#user_depth_radio_1:checked ~ #table_box_1 {
  display: block;
}
#user_depth_radio_1:checked ~ .table_title > #user_depth_label_1 {
  background-color: var(--point);
  color: var(--white);
}
#user_depth_radio_2:checked ~ .table_title > #user_depth_label_2 {
  background-color: var(--point);
  color: var(--white);
}

#user_depth_radio_2:checked ~ #table_box_2 {
  display: block;
}
.table_title {
  display: flex;
  align-items: center;
}
.table_item > input[type="checkbox"] {
  display: block;
  margin: auto;
}

.table_item textarea {
  border: 1px solid var(--black);
  box-sizing: border-box;
  outline: none;
}

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

.control_bar p {
  margin-left: 24px;
  font-weight: bold;
  font-size: 18px;
}
.flex {
  display: flex;
  align-items: center;
}

.flex > button {
  margin-left: 12px;
  margin-right: 0px;
}

.apply_line {
  display: flex;
  width: calc(100% - 64px);
  margin: auto;
  height: 30px;
  border: 1px solid var(--black);
  align-items: center;
  justify-content: space-between;
}
.apply_ceil {
  font-size: 14px;
  width: calc(100% / 7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_grp_bg > div {
  padding: 24px;
}
.grpArea {
  height: 100%;
  display: flex;
  width: 100%;
  overflow-x: scroll;
  overflow-y: visible;
  align-items: end;
  position: relative;
  justify-content: space-between;
}
.grpItem {
  height: 300px;
  position: relative;
  width: 80px;
}
.grp_date {
  font-size: 12px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
}
.grp_dot {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  background-color: var(--point);
  color: var(--white);
  justify-content: center;
  font-size: 10px;
  margin: auto;
  position: absolute;
  left: 50%;
  margin-bottom: 24px;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}

.modal_content > p {
  position: absolute;
  color: var(--white);
  top: -32px;
  cursor: pointer;
  left: 0px;
}

.search_input {
  width: 240px;
  border: 1px solid #f5f5f5;
  outline: none;
  padding: 12px;
  border-radius: 10px;
}

.search_input ~ button {
  background-color: var(--point);
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  padding: 12px;
}
.modal-table-area {
  width: 100%;
}
.reverse-area {
  display: flex;
  width: 100%;
  flex-wrap: wrap-reverse;
}
.tableItem {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  justify-content: left;
  border-bottom: 1px solid var(--black);

  font-size: 14px;
  padding: 8px 0px;
}

.table-top {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
  border-bottom: 1px solid var(--black);
  padding: 8px 0px;
  font-weight: bold;
}

.table-top > div:first-child {
  width: 150px;
  font-size: 14px;
}
.table-top > div:nth-child(2),
.table-valye {
  width: 100px;
  font-size: 14px;
}

.table-date {
  width: 150px;
  font-size: 14px;
}

.down {
  color: red;
}

.up {
  color: blue;
}
