@charset "UTF-8";
/* setting */
:root {
  --primary: #00486C;
  --sub_primary: #00A5DB;
  --middle_primary: #006EA6;
  --light_primary: #B0DFEF;
  --active_color: #FFE02F;
  --light_active_color: #FFF5B3;
  --gray_color: #4D585E;
  --trans_color: #666666;
  --scrollbar_color: #55555533;
  --arrow_color: #BECBFF;
  --main_bg_color: #D7E3E7;
  --middle_primary-filter: invert(29%) sepia(99%) saturate(898%) hue-rotate(169deg) brightness(95%) contrast(102%);
  --btn_page_move-filter: invert(13%) sepia(89%) saturate(1468%) hue-rotate(218deg) brightness(92%) contrast(92%);
}

/* 폰트 */
@font-face {
  font-family: "PretendardMedium";
  src: url("../../../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "PretendardBold";
  src: url("../../../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "PretendardExtraBold";
  src: url("../../../fonts/Pretendard-ExtraBold.woff") format("woff");
}
html,
body {
  width: 1920px;
  height: 1280px;
  overflow: hidden;
  background-color: #FFF;
}

body * {
  font-family: "PretendardMedium", "MalgunGothic", sans-serif;
  box-sizing: border-box;
}

.dataRoom {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow: hidden;
  z-index: 99;
}

._dis_n {
  display: none !important;
}

/********************************************************************
  STYLE
********************************************************************/
/* header 영역 */
.data_room_head {
  padding: 0 96px 0 24px;
  width: 1920px;
  height: 72px;
  background-color: var(--light_primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.data_room_head .title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-family: "PretendardBold", "MalgunGothic", sans-serif;
  color: #111111;
}
.data_room_head .title::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  background-image: url("./images/ico_title_data.png");
  background-repeat: no-repeat;
  background-size: contain;
  filter: var(--middle_primary-filter);
}

/************************************************/
/* 이하 content 영역 */
.data_room_content {
  position: relative;
  width: 100%;
  height: calc(100% - 72px);
}

/************************************************/
/* 상단 nav 영역 */
header {
  display: flex;
  height: 72px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  background-color: var(--sub_primary);
}
header > button {
  height: 52px;
  padding: 0 24px;
  font-family: "PretendardMedium", "MalgunGothic", sans-serif;
  font-size: 24px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  background-color: var(--middle_primary);
  box-shadow: 0px 2.4px 0px 0px rgba(0, 0, 0, 0.1490196078), 0px -2.4px 0px 0px rgba(0, 0, 0, 0.1490196078) inset;
}
header > button:not(:last-child) {
  margin-right: 8px;
}
header > button.on {
  background-color: var(--primary);
  color: var(--active_color);
}

/************************************************/
/* table 영역 설정 */
.data_table_wrap {
  width: 100%;
  height: calc(100% - 72px);
  padding: 20px 24px;
  background-color: var(--main_bg_color);
}

/* table 기본 스타일 설정 */
table {
  width: 100%;
}
table th, table td {
  height: 64px;
  text-align: center;
  vertical-align: middle;
}
table th > div, table td > div {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
}

/* table header 영역 */
.table_header {
  font-family: "PretendardBold", "MalgunGothic", sans-serif;
  font-size: 24px;
  color: #fff;
  word-break: break-word;
  border-radius: 12px;
  background-color: var(--gray_color);
}
.table_header th {
  padding: 0 20px;
}
.table_header th:nth-child(1) {
  font-size: 26px;
}
.table_header th:nth-child(2) {
  font-size: 26px;
  text-align: left;
}

/* table body 영역 */
.table_content {
  margin-top: 12px;
  height: calc(100% - 66px);
  overflow-x: hidden;
  overflow-y: auto;
}
.table_content tr.mt_12 th, .table_content tr.mt_12 td {
  height: 76px;
}
.table_content tr.mt_12 th > div, .table_content tr.mt_12 td > div {
  margin-top: 12px;
}
.table_content tr.mt_12 th > div {
  height: calc(100% - 12px);
}
.table_content tr.mt_12 td > div {
  height: 64px;
}
.table_content tr.mt_12 td:last-child > div {
  border-radius: 0 12px 0 0;
}
.table_content tr.last_row td:last-child > div {
  border-radius: 0 0 12px 0;
}
.table_content tr.mt_12.last_row td:last-child > div {
  border-radius: 0 12px 12px 0;
}
.table_content tr th > div {
  font-family: "PretendardBold", "MalgunGothic", sans-serif;
  font-size: 28px;
  border-radius: 12px 0 0 12px;
}
.table_content tr td:first-of-type > div {
  justify-content: flex-start;
  font-family: "PretendardMedium", "MalgunGothic", sans-serif;
  font-size: 26px;
}
.table_content tr th, .table_content tr td:not(:last-of-type) {
  border-right: 2px solid var(--main_bg_color);
}
.table_content tr th > div,
.table_content tr td > div {
  border-bottom: 2px solid var(--main_bg_color);
  background-color: #fff;
}
.table_content tr th.on > div {
  background-color: var(--light_active_color);
}

/************************************************/
/* scroll */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--scrollbar_color);
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* 파일 다운로드 버튼 */
.btn_download {
  position: relative;
  display: flex;
  width: 120px;
  height: 44px;
  padding: 0 16px;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0px 2.4px 0px 0px rgba(0, 0, 0, 0.1490196078), 0px -2.4px 0px 0px rgba(0, 0, 0, 0.1490196078) inset;
}
.btn_download::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background-image: url("./images/ico_pdf.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.btn_download::after {
  content: "PDF";
  display: block;
  font-family: "PretendardExtraBold", "MalgunGothic", sans-serif;
  font-size: 18px;
  line-height: 44px;
  color: #fff;
}
.btn_download._pdf {
  background-color: #FF2F2F;
}
.btn_download._pdf::before {
  background-image: url("./images/ico_pdf.png");
}
.btn_download._pdf::after {
  content: "PDF";
}
.btn_download._hwp {
  background-color: #59ACFB;
}
.btn_download._hwp::before {
  background-image: url("./images/ico_hwp.png");
}
.btn_download._hwp::after {
  content: "HWP";
}
.btn_download._ppt {
  background-color: #FF771D;
}
.btn_download._ppt::before {
  background-image: url("./images/ico_ppt.png");
}
.btn_download._ppt::after {
  content: "PPT";
}
.btn_download._word {
  background-color: #207AD9;
}
.btn_download._word::before {
  background-image: url("./images/ico_word.png");
}
.btn_download._word::after {
  content: "DOCX";
}
.btn_download._xls {
  background-color: #448654;
}
.btn_download._xls::before {
  background-image: url("./images/ico_xls.png");
}
.btn_download._xls::after {
  content: "XLSX";
}
.btn_download._zip {
  background-color: #979DA0;
}
.btn_download._zip::before {
  background-image: url("./images/ico_zip.png");
}
.btn_download._zip::after {
  content: "ZIP";
}

/************************************************/
/* 컨펌창 */
.popupLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup_confirm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  border: 10px solid #e1e5ea;
  border-top-width: 0;
  background-color: #e1e5ea;
  border-radius: 30px;
  overflow: hidden;
}

.popup_confirm--header {
  position: relative;
  padding-left: 20px;
  height: 74px;
  line-height: 74px;
}
.popup_confirm--header span {
  font-size: 28px;
  color: #111;
}
.popup_confirm--header .btn_close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.popup_confirm--header .btn_close::before, .popup_confirm--header .btn_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
}
.popup_confirm--header .btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup_confirm--header .btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup_confirm--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0;
  min-height: 300px;
  font-size: 30px;
  text-align: center;
  line-height: 1.6;
  background-color: #fff;
}
.popup_confirm--content .popup_confirm_btn_wrap {
  margin-top: 40px;
  text-align: center;
}
.popup_confirm--content .popup_confirm_btn_wrap button {
  width: 180px;
  height: 64px;
  border-radius: 32px;
  vertical-align: middle;
  color: #fff;
  font-size: 24px;
  background-color: #539c17;
  cursor: pointer;
}
.popup_confirm--content .popup_confirm_btn_wrap button + button {
  margin-left: 20px;
}
.popup_confirm--content .popup_confirm_btn_wrap button.btn_cancel {
  background-color: #d8d8d8;
}
/* 학습창 */
.studyLayer_open {
  --primary: #00486C;
  --sub_primary: #00A5DB;
  --middle_primary: #006EA6;
  --light_primary: #B0DFEF;
  --active_color: #FFE02F;
  --light_active_color: #FFF5B3;
  --gray_color: #4D585E;
  --scrollbar_color: #55555533;
  --arrow_color: #BECBFF;
}

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