@charset "utf-8";

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard/Pretendard/Pretendard-Thin.woff') format('woff');
  font-weight: 100;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard/Pretendard-Medium.woff') format('woff');
  font-weight: 500;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard/Pretendard-Bold.woff') format('woff');
  font-weight: 700;
}
@font-face {
  font-family: 'GmarketSans';
  font-weight: 300;
  font-style: normal;
  src: url('../fonts/GmarketSans/GmarketSansLight.woff');
  src: url('../fonts/GmarketSans/GmarketSansLight.ttf') format('truetype');
}
@font-face {
  font-family: 'GmarketSans';
  font-weight: 500;
  font-style: normal;
  src: url('../fonts/GmarketSans/GmarketSansMedium.woff');
  src: url('../fonts/GmarketSans/GmarketSansMedium.ttf') format('truetype');
}
@font-face {
  font-family: 'GmarketSans';
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/GmarketSans/GmarketSansBold.woff');
  src: url('../fonts/GmarketSans/GmarketSansBold.ttf') format('truetype');
}

:root {
  /* color */
  --grey-100: #f9fafb;
  --grey-200: #f4f6f8;
  --grey-300: #dfe3e8;
  --grey-400: #c4cdd5;
  --grey-500: #919eab;
  --grey-600: #637381;
  --grey-700: #454f5b;
  --grey-800: #212b36;

  --data-color-red: #f88382;
  --data-color-orange: #f7a96a;
  --data-color-yellow: #f3d469;
  --data-color-olive: #a9d48c;
  --data-color-green: #7fcba1;
  --data-color-teal: #7cd4dd;
  --data-color-sky: #78bbe9;
  --data-color-blue: #8aabee;
  --data-color-pink: #eda1d2;
  --data-color-brown: #a48874;

  --common-transparent: transparent;
  --text-primary: #212b36;
  --common-white: #fff;
  --teal-main: #0ac9bd;
  --bule-main: #1188f7;
  --orange-main: #ff9c07;
  --red-main: #fc3232;
  --green-main: #53c11d;
  --primary-1-main-500: #5b4ad3;
  --primary-2-main-500: #2c53c7;
  --primary-110: #f9f8fe;
  --primary-210: #f6f9fe;
  --primary-150: #eeeafe;
  --primary-1100: #e1dbfc;
  --primary-1300: #a193f1;
  --primary-1400: #8475e4;
  --primary-1600: #4436b5;
  --primary-1700: #302597;
  --primary-1800: #20177a;
  --primary-1900: #140e65;
  --primary-2800: #0e1f73;

  /* font */
  --font-Pretendard: 'Pretendard';
  --font-GmarketSans: 'GmarketSans';

  /* font size */
  --text-xxs: 10px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xlg: 20px;

  /* font icon size */
  --fi--xs: 18px;
  --fi--sm: 20px;
  --fi--md: 24px;
  --fi--slg: 28px;
  --fi--lg: 30px;

  /* font weight */
  --fw-thin: 100;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-mid: 500;
  --fw-bold: 700;

  /* line-height */
  --lh-default: 1.5;
  --lh-sm: 1.4;
  --lh-basic: 1;

  /* shadow */
  --shadow-default: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
  --shadow-select: 12px 13px 15px 0px rgba(0, 0, 0, 0.2);
  --shadow-card: 10px 18px 30px 0px rgba(0, 0, 0, 0.1);

  /* radius */
  --radius-box: 10px;
  --radius-sm: 5px;
  --radius-circle: 50%;

  /* padding set */
  --padding-box: 20px;
  --padding-box-2: 15px 20px;
}

h1, .h1 {font-family: var(--font-Pretendard);}
h2, .h2 {font-family: var(--font-Pretendard);}

/* common */
/* space */
.pd0 {padding: 0 !important;}
.pd20 {padding: 20px !important;}

.mt0 {margin-top: 0 !important;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}

/* grid */
.grid_area {display: grid;gap: 5px;}
.grid_area.column3 {grid-template-columns: repeat(3, 1fr);}

/* form */
input::-webkit-input-placeholder {color: var(--grey-500);font-weight: var(--fw-normal) !important;}
.input_text {
  height: 48px;
  padding: 0 10px;
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: var(--common-white);
  color: var(--grey-700);
  font-family: var(--font-Pretendard);
}
.input_text.sm {
  height: 28px;
  font-size: var(--text-xs);
}
.input_text.smd {
  height: 32px;
  font-size: var(--text-xs);
}
.datepicker_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
.datepicker_wrap .date_inp {
  position: relative;
  flex: 1 1 auto;
}
.datepicker_wrap .date_inp .input_text {
  width: 100%;
}
.datepicker_wrap .input_text_sm {
  padding-right: 38px;
}
.datepicker_wrap .btn_datepicker {
  position: absolute;
  right: 10px;
  top: calc(50% - 9px);
  font-size: 0;
}
.datepicker_wrap [class*='ri-'] {
  font-size: 18px;
  color: var(--grey-700);
}
.form_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form_wrap .label {
  display: block;
  margin-bottom: 5px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.form_control {
  display: flex;
  gap: 5px;
}
.form_control .form_select {
  height: 46px;
  padding: 0 40px 0 10px;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  font-family: var(--font-Pretendard);
  border: 1px solid var(--primary-1-main-500);/* 24-11-11 : 셀렉트박스 라인 컬러 수정 */
  border-radius: var(--radius-sm);
  background: var(--common-white) url(../images/icon_arrow_down_20x20.svg) no-repeat right 10px center;
}
.form_control .form_select.smd {
  height: 32px;
}
.form_control.srch_box {
  position: relative;
}
.form_control.srch_box .input_text {
  width: 100%;
  padding-right: 45px;
}
.form_control.srch_box button {
  position: absolute;
}
.form_control.srch_box .btn_srch {
  right: 10px;
  top: calc(50% - 12px);
}
.form_control.srch_box .btn_srch i {
  font-size: 24px;
  color: var(--primary-1-main-500);
}
.checkbox_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.check_box {
  display: flex;
  align-items: center;
}
.check_box input[type=checkbox] {
  position: relative;
  appearance: none;
  width: 20px;
  height: 20px;
}
.check_box input[type=checkbox]:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  box-sizing: border-box;
}
.check_box input[type=checkbox]:before {
  border: 1px solid var(--grey-400);
  border-radius: 4px;
  background: var(--common-white);
}
.check_box input[type=checkbox]:checked:before {
  border-color: var(--primary-1-main-500);
  background: var(--primary-1-main-500) url(../images/icon_checked_20x20.svg) no-repeat center center/100%;
}
.check_box input[type=checkbox]:disabled {
  border-color: var(--grey-300);
  background: var(--grey-100);
}
.check_box input + label {
  margin-left: 10px;
}
.radio_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio_box {
  display: flex;
  align-items: center;
}
.radio_box input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
}
.radio_box input[type=radio]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid var(--grey-500);
  background: var(--common-white);
  box-sizing: border-box;
}
.radio_box input[type=radio]:checked:before {
  border: 0;
  background: url(../images/icon_radio_20x20.svg) no-repeat center center/100%;
}
/* radio disabled css */
.radio_box input[type=radio]:disabled{background:none;}
.radio_box input[type=radio]:disabled:before {border: 1px solid var(--grey-500);background: var(--grey-400);}

.radio_box label {
  display: block;
  margin-left: 5px;
  color: var(--grey-600);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.radio_box input:checked + label {
  color: var(--text-primary);
}

/* font */
i[class*='ri-'] {
  display: inline-block;
  vertical-align: top;
  line-height: var(--lh-basic);
  font-weight: var(--fw-normal);
  font-size: var(--fi--md);
}
.font_pretendard {
  font-family: var(--font-Pretendard) !important;
}
.font_gmarketSans {
  font-family: var(--font-GmarketSans) !important;
}
.fw_bold {
  font-weight: var(--fw-bold) !important;
}
.fw_mid {
  font-weight: var(--fw-mid) !important;
}

/* text align */
.text_start {
  text-align: left !important;
}
.text_center {
  text-align: center !important;
}
.text_end {
  text-align: right !important;
}

/* title */
.title_md_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.title_md {
  display: block;
  margin-bottom: 10px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
}
.title_md_box .title_md {
  margin-bottom: 0;
}
.title_md_box .desc {
  margin-left: 5px;
  color: var(--grey-500);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.title_md_box .desc.sm {
  margin-left: 10px;
  font-size: var(--text-xs);
  font-weight: var(--fw-mid);
  color: var(--grey-600);
}
.title_sm {
  display: block;
  margin-bottom: 10px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--text-primary);
}

/* 정책이슈 - 타이틀 css 추가 */
.title_smd_box {display: flex;margin-bottom: 2px;flex-direction: column;}
.title_smd_box .title_md {display: block;margin-bottom: 10px;font-size: var(--text-lg);font-weight: var(--fw-bold);line-height: var(--lh-sm);color: var(--text-primary);}
.title_smd_box .title_smd {display: block;font-size: var(--text-sm);font-weight: var(--fw-bold);line-height: 21px;color: var(--primary-1-main-500);margin: 10px 0 0;}
 
 /* 정책과 이슈 자세히 보기 */
 .title_polIssue_box {display: flex; flex-direction: row; justify-content: space-between; margin-bottom: 10px; margin-right:20px;}
 .title_polIssue_box .title_md {font-size: var(--text-lg);font-weight: var(--fw-bold);line-height: var(--lh-sm);color: var(--text-primary);}
 .title_polIssue_box button{border:none; background: transparent;}
 .title_polIssue_box button.moreArea{height:26px; margin-right:-22px;color: var(--primary-1-main-500);font-size:12px; font-weight: 700;}
 .title_polIssue_box button.moreArea i.ri-arrow-right-s-line{font-size:16px;}
 
/* conts defalut */
.cont_basic {
  color: var(--grey-600);
  font-size: var(--text-md);
  line-height: var(--lh-default);
}
.cont_normal {
  color: var(--text-primary);
  font-size: var(--text-md);
  line-height: var(--lh-default);
}

.text_caution {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: var(--grey-600);
  font-size: var(--text-xs);
  line-height: var(--lh-default);
}
.text_caution.bttm {
  margin-bottom: 0;
  margin-top: 10px;
}
.text_caution.lg {
  font-size: var(--text-sm);
}
.text_caution i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fi--xs);
}
.text_caution.lg i {
  font-size: var(--fi--sm);
}

/* color */
.color_primary {
  color: var(--primary-1-main-500) !important;
}
.color_normal {
  color: var(--text-primary) !important;
}
.color_blue {
  color: var(--bule-main) !important;
}
.color_orange {
  color: var(--orange-main) !important;
}
.color_teal {
  color: var(--teal-main) !important;
}
.color_green {
  color: var(--green-main) !important;
}
.color_red {
  color: var(--red-main) !important;
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  padding: 0 8px;
  border-width: 1px;
  border-style: solid;
  border-radius: 6px;
  font-size: var(--text-sm);
}
.badge.badge_orange {
  color: var(--orange-main);
  border-color: var(--orange-main);
}
.badge.badge_red {
  color: var(--red-main);
  border-color: var(--red-main);
}
.badge.badge_blue {
  color: var(--bule-main);
  border-color: var(--bule-main);
}
.badge.badge_teal {
  color: var(--teal-main);
  border-color: var(--teal-main);
}
.badge.badge_green {
  color: var(--green-main);
  border-color: var(--green-main);
}

.badge.data_badge {
  height: 20px;
  padding: 0 10px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  border-radius: 20px;
}
.badge.data_badge_sky {
  color: var(--data-color-sky);
  border-color: var(--data-color-sky);
}
.badge.data_badge_grey {
  color: var(--grey-500);
  border-color: var(--grey-500);
}
.badge.data_badge_red {
  color: var(--data-color-red);
  border-color: var(--data-color-red);
}

/* button */
.btns_area {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
button.btn_default {
  padding: 0;
  font-family: var(--font-Pretendard);
  border: 0;
  background: none;
}
.btn_basic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 0 16px;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-Pretendard);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
}
.btn_basic.btn_primary {
  color: var(--common-white);
  border: 1px solid var(--primary-1-main-500);
  background: var(--primary-1-main-500);
}
.btn_basic.btn_primary.btn_shadow {
  box-shadow: 0px 8px 16px 0px rgba(91, 74, 211, 0.24);
}
.btn_basic.btn_primary_light {
  color: var(--primary-1-main-500);
  border: 1px solid var(--primary-1100);
  background: var(--primary-1100);
}
.btn_basic.btn_primary_line {
  color: var(--primary-1-main-500);
  border: 1px solid var(--primary-1-main-500);
  background: var(--primary-110);
}
.btn_basic.btn_white {
  color: var(--primary-1-main-500);
  border: 1px solid var(--primary-1-main-500);
  background: var(--common-white);
}
.btn_basic.btn_gray {
  color: var(--grey-600);
  border: 1px solid var(--grey-500);
  background: var(--grey-100);
}
.btn_basic.btn_transparent {
  color: var(--primary-1-main-500);
  border: 1px solid var(--primary-1-main-500);
  background: var(--common-transparent);
}
.btn_basic.btn_lg {
  height: 46px;
  padding: 0 22px;
  font-size: var(--text-md);
}
.btn_basic.btn_sm {
  height: 26px;
  padding: 0 10px;
  font-size: var(--text-xs);
}
.btn_basic i[class*='ri-'] {
  margin-left: 5px;
  font-size: 22px;
}
.btn_basic.btn_sm i[class*='ri-'] {
  font-size: var(--fi--xs);
}
.btn_basic.selected {
  background: var(--primary-1-main-500);
  color: var(--common-white);
}

.btn_default.btn_more {
  text-align: center;
  color: var(--grey-600);
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.btn_default.btn_more [class*='ri'] {
  margin: 0 5px;
  font-size: 22px;
  transition: transform 0.3s ease;
}
[data-event='accordion'].open .btn_default.btn_more [class*='ri'] {
  transform: rotate(-180deg);
}

.btns_sort {
  display: flex;
}
.btns_sort .btn_default {
  display: inline-block;
  position: relative;
  color: var(--grey-500);
  font-size: var(--text-sm);
  line-height: var(--lh-default);
}
.btns_sort .btn_default.on {
  color: var(--primary-1-main-500);
  font-weight: var(--fw-bold);
}
.btns_sort .btn_default:not(:first-of-type) {
  margin-left: 14px;
}
.btns_sort .btn_default:not(:first-of-type):before {
  content: "|";
  display: inline-block;
  position: absolute;
  left: -9px;
  width: 4px;
  text-align: center;
  color: var(--grey-300);
  font-size: var(--text-xs);
  line-height: var(--lh-default);
}

/* bg */
.bg_gray_100 {
  background: var(--grey-100) !important;
}
.bg_gray_200 {
  background: var(--grey-200) !important;
}
.bg_white {
  background: var(--common-white) !important;
}
.bg_transparent {
  background: var(--common-transparent) !important;
}

/* flex */
.d_flex {
  display: flex;
}
.d_flex_column {
  display: flex;
  flex-direction: column;
}
.flex_root {
  flex: 1 1 auto !important;
}
.flex_none {
  flex: none !important;
}
.align_start {
  align-items: flex-start;
}
.align_center {
  align-items: center;
}
.align_end {
  align-items: flex-end;
}
.justify_between {
  justify-content: space-between;
}

.scroll_box {
  overflow-y: auto !important;
}

/* tab */
.tab_wrap .tab_items {
  display: flex;
}
.tab_wrap .tab_items li {
  flex: 1;
  border-bottom: 2px solid var(--grey-400);
}
.tab_wrap .tab_items li.on {
  border-bottom-color: var(--primary-1-main-500);
}
.tab_wrap .tab_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--grey-400);
}
.tab_wrap .tab_items .on a {
  font-weight: var(--fw-bold);
  color: var(--primary-1-main-500);
}
.tab_wrap .tabView {
  margin-top: 15px;
}
.tab_wrap.tab_type2 {
  border-radius: 0 0 var(--radius-box) var(--radius-box);
  background: var(--common-white);
  box-shadow: var(--shadow-default);
}
.tab_wrap.tab_type2 .tab_items li {
  padding-top: 1px;
  border: 1px solid var(--grey-300);
  background: var(--grey-200);
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
}
.tab_wrap.tab_type2 .tab_items li:not(:last-child):first-child {
  border-right: 0;
}
.tab_wrap.tab_type2 .tab_items a {
  height: 45px;
}
.tab_wrap.tab_type2 .tab_items .on {
  padding-top: 0;
  border-top: 2px solid var(--primary-1-main-500);
  border-bottom: 1px solid var(--common-white);
  background: var(--common-white);
}
.tab_wrap.tab_type2 .tab_items .on a {
  font-weight: var(--fw-bold);
}
.tab_wrap.tab_type2 .tabView {
  margin: 0;
  padding: 10px 20px 20px;
}
.tab_wrap.tab_con_full {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}
.tab_wrap.tab_con_full .tab_con {
  flex: 1 1 auto;
  border: 1px solid var(--grey-300);
  border-top: 0;
  border-radius: 0 0 var(--radius-box) var(--radius-box);
  overflow-y: auto;
}
.tab_wrap.text_type .tab_items {
  justify-content: center;
}
.tab_wrap.text_type .tab_items li {
  position: relative;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 0;
}
.tab_wrap.text_type .tab_items li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  width: 1px;
  height: 14px;
  background: var(--grey-400);
}
.tab_wrap.text_type .tab_items a {
  font-size: var(--text-xlg);
  color: var(--grey-600);
  font-weight: var(--fw-mid);
  line-height: var(--lh-sm);
}
.tab_wrap.text_type .tab_items .on a {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}
.tab_wrap .chart_tab_items {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: var(--grey-200);
}
.tab_wrap .chart_tab_items a,
.tab_wrap .chart_tab_items button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 37px;
  width: 37px;
  height: 30px;
  border: 1px solid var(--common-transparent);
  border-radius: var(--radius-sm);
}
.tab_wrap .chart_tab_items i {
  color: var(--grey-500);
}
.tab_wrap .chart_tab_items .on a,
.tab_wrap .chart_tab_items .on button {
  border-color: var(--primary-1-main-500);
  background-color: var(--common-white);
}
.tab_wrap .chart_tab_items .on i {
  color: var(--primary-1-main-500);
}
.tab_wrap.chart_tab_wrap .tabView {
  margin-top: 20px;
}
.seltab_contents {
  display: none;
}
.seltab_contents .tab_cont {
  display: none;
}
.seltab_contents .tab_cont.is_open {
  display: block;
}

/* table */
.table_responsive {
  margin: 20px -20px 0;
  padding: 0 20px;
  overflow-x: auto;
}
.table_responsive table {
  table-layout: auto;
  width: max-content;
  min-width: 100%;
}

.table_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.table_top .keyword_badge_box {
  margin: 0;
}
.table_top .total {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.table_top .total em {
  font-weight: var(--fw-bold);
}
.table_column {
  width: 100%;
  table-layout: fixed;
  border-radius: var(--radius-box);
  font-family: var(--font-Pretendard);
  box-shadow: var(--shadow-default);
}
.table_column thead th {
  padding: 4px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--common-white);
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
  background: var(--grey-600);
  border-bottom: 1px solid var(--grey-200);
}
.table_column thead tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
.table_column thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
.table_column tbody td {
  padding: 4px;
  text-align: center;
  font-size: var(--text-md);
  color: var(--text-primary);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
  background: var(--common-white);
}
.table_column tbody tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.table_column tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

/* 연관어분석 - table 클래스 추가 */
.table_wrap .mentionsBox{overflow-x:hidden;margin-top:10px;}

.data_table {
  table-layout: fixed;
}
.data_table thead th {
  padding: 3px;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  line-height: var(--lh-default);
  text-align: center;
  background: var(--grey-200);
}
.data_table thead tr:first-child th:first-child {
  border-top-left-radius: var(--radius-sm);
  font-size: var(--text-xs);
}
.data_table thead tr:last-child th:first-child {
  border-bottom-left-radius: var(--radius-sm);
}
.data_table thead tr:first-child th:last-child {
  border-top-right-radius: var(--radius-sm);
}
.data_table thead tr:last-child th:last-child {
  border-bottom-right-radius: var(--radius-sm);
}
.data_table tbody th,
.data_table tbody td {
  padding: 4px 5px;
  color: var(--grey-600);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  text-align: center;
  border-bottom: 1px solid var(--grey-300);
}
.data_table tbody th {
  font-size: var(--text-sm);
  color: var(--grey-700);
  font-weight: var(--fw-bold);
}
.data_table.type2 {
  box-shadow: var(--shadow-default);
}
.data_table.type2 thead th {
  font-weight: var(--fw-mid);
  background: var(--grey-100);
}
.data_table.type2 tbody td {
  color: var(--grey-700);
  font-size: var(--text-sm);
  border-bottom: 0;
  background: var(--common-white);
}
.data_table.type2 tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-sm);
}
.data_table.type2 tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-sm);
}

/* chart area */
.chart_area {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.chart_area .chart_inner {
  flex: 1 1 auto;
}

/* no-data */
.no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 150px;
  color: var(--grey-600);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.no-data:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 10px;
  background: url(../images/icon_caution_24x24.svg) no-repeat center center/100%;
}

/* icon */
[class*='icon--'] {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
}
.icon--message {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_message_24x24.svg);
}
.icon--message-dark {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_message_dark_24x24.svg);
}
.icon--areaChartOutlined {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_areaChartOutlined.svg);
}
.on .icon--areaChartOutlined {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_areaChartOutlined_primary.svg);
}
.icon--areaChartOutlined_percent {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_areaChartOutlined_percent.svg);
}
.on .icon--areaChartOutlined_percent {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_areaChartOutlined_percent_primary.svg);
}
.icon--barChart_percent {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_barChart_percent.svg);
}
.on .icon--barChart_percent {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_barChart_percent_primary.svg);
}

/* swiper basic */
.swiper-pagination.swiper-pagination-default {
  position: static;
  margin-top: 10px;
  font-size: 0;
}
.swiper-pagination.swiper-pagination-default .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 3px;
  opacity: 1;
  background: var(--grey-400);
}
.swiper-pagination.swiper-pagination-default .swiper-pagination-bullet-active {
  background: var(--primary-1-main-500);
}

/* accordion */
.accordion_cont {
  display: none;
}
.open .accordion_cont {
  display: block;
}

/******* layout ******/
body.fixed {
  height: 100%;
  overflow: hidden;
}
/* header */
.main_header {
  height: 60px;
  border-bottom: 1px solid var(--grey-300);
  font-family: 'Pretendard';
}
.main_header .main_header_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.main_header .main_header_title a {
  display: inline-flex;
  align-items: center;
  height: 40px;
}

/* 11-13 : 상단 AI Lab : AI서치 */
.main_header .btn_ai_srch .txt {
  position: relative;
  right: 16px;
  top: -13px;
  width: 46px;
  height: 22px;
  padding: 5px 5px 0;
  border-radius: 50px;
  border:2px solid var(--common-white);
  background: var(--primary-1-main-500);
  font-size: var(--text-xxs);
  font-weight: var(--fw-normal);
  color: var(--common-white);
  line-height: 15px;
}
.main_header .btn_ai_srch .txt > sup{
	position: absolute;
	right: 4px;
	top: -1px;
	width:100%;
	font-size: 7px;
	font-weight: var(--fw-light);
	line-height: var(--lh-default);
	color: var(--common-white);
	line-height: 10.5px;
}

.main_header .main_header_title .ri-arrow-left-line {
  font-size: var(--fi--lg);
  color: var(--text-primary);
}
.main_header .main_logo {
  margin: 0;
}
.main_header .main_header_title_label {
  height: auto;
  margin: 0 0 0 15px;
  font-size: var(--text-xlg);
  color: var(--text-primary);
  font-weight: var(--fw-mid);
  line-height: var(--lh-sm);
}

/* AI서치 상단 버튼 */
.main_header_btns {display: flex;}
.main_header .btn_ai_srch {position: relative;width: 30px;height: 30px;margin-right: 36px;font-family: var(--font-Pretendard);} /* 간격 수정 */
.main_header .btn_ai_srch i {color: var(--grey-700);font-size: var(--fi--lg);}

.main_header .menu_open {
  width: 30px;
  height: 30px;
  margin: 0 0 0 5px;
  padding: 0;
  float: none;
  color: var(--grey-700);
  background: transparent;
}
.main_header .menu_open i {
  margin: 0;
  padding: 0;
  background: none;
  font-size: var(--fi--lg);
}

/* menu slide */
.main_menu .menu_slide {
  display: flex;
  flex-direction: column;
  font-family: var(--font-Pretendard);
}
.main_menu .menu_lists {
  flex: 1 1 auto;
  overflow-y: auto;
  margin: 0;
  padding: 0 20px;
}
.main_menu .menu_slide a {
  font-family: var(--font-Pretendard);
  font-weight: var(--fw-mid); /*  */
}
.main_menu .menu_setting_div {
  position: relative;
  width: 100%;
}
.main_menu .menu_setting {
  color: var(--text-primary);
  font-family: var(--font-Pretendard);
}

/* main body */
.main_body {
  min-height: calc(100% - 113px);
  padding-top: 60px;
  font-family: var(--font-Pretendard);
  letter-spacing: 0.5px;
}
.menubar_nav + .contentsWrap {
  padding-top: 45px;
}
.menubar_nav.bg_white + .contentsWrap {
  padding-top: 95px;
}
.datepicker_bar + .contentsWrap {
  padding-top: 50px;
}

/* footer - 위치고정 */
footer {/* position: fixed;bottom: 0;width: 100%;z-index:100;  */
  height: auto;
  padding: var(--padding-box-2);
  padding-bottom: 20px;
  /* padding-bottom: calc(env(safe-area-inset-bottom) + 20px); */ /* iphone X 경우 env(safe-area-inset-bottom) 가능  */
  color: var(--grey-600);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  font-family: var(--font-Pretendard);
  background: var(--grey-800);
}
.footer_logo {
  display: block;
  width: 66px;
  height: 29px;
  margin: 0 auto 10px;
  background: url(/resources/static/images/logo.svg) no-repeat center center/auto 100%;
}
footer .text_em {
  color: var(--grey-400);
}
footer .copyright {
  font-size: var(--text-xs);
}

.btn_to_top {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 0;
  color: var(--grey-700);
  font-size: var(--fi--lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-select);
  border: 0;
  border-radius: var(--radius-circle);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 101;
}
.btn_to_top.visible {
  opacity: 1;
  visibility: visible;
}

/* loading */
.loading_wrap {
  display: none;
}
.loading_in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.sec_cont_area .loading_in {
  position: absolute;
  left: 20px;
  right: 20px;
  border-radius: var(--radius-box);
  z-index: 10;
}
.shadow_box .loading_in {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: var(--radius-box);
  z-index: 10;
}
.sw_law_issue .loading_in {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: var(--radius-box);
  z-index: 10;
}
.loading_wrap .loading_bars {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 40px;
}
.loading_wrap .bar {
  width: 7px;
  animation: 0.8s ease-in-out infinite backwards;
}

.loading_wrap .bar1 {
  animation-name: loading1;
  height: 40px;
  background: #341cb5;
}
.loading_wrap .bar2 {
  animation-name: loading2;
  height: 34px;
  background: #28148a;
}
.loading_wrap .bar3 {
  animation-name: loading3;
  height: 24px;
  background: #180c52;
}
.loading_text {
  margin-top: 10px;
  font-size: var(--text-md);
  color: var(--common-white);
  font-weight: var(--fw-mid);
  line-height: 1.5;
}

@keyframes loading1 {
  0% {
    height: 40px;
    background: #341cb5;
  }
  25% {
    height: 34px;
    background: #28148a;
  }
  50% {
    height: 24px;
    background: #180c52;
  }
  75% {
    height: 34px;
    background: #28148a;
  }
  100% {
    height: 40px;
    background: #341cb5;
  }
}
@keyframes loading2 {
  0% {
    height: 34px;
    background: #28148a;
  }
  25% {
    height: 24px;
    background: #180c52;
  }
  50% {
    height: 34px;
    background: #28148a;
  }
  75% {
    height: 40px;
    background: #341cb5;
  }
  100% {
    height: 34px;
    background: #28148a;
  }
}
@keyframes loading3 {
  0% {
    height: 24px;
    background: #180c52;
  }
  25% {
    height: 34px;
    background: #28148a;
  }
  50% {
    height: 40px;
    background: #341cb5;
  }
  75% {
    height: 34px;
    background: #28148a;
  }
  100% {
    height: 24px;
    background: #180c52;
  }
}

/* pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}
.pagination button {
  padding: 0;
  border: 0;
  font-family: var(--font-Pretendard);
  color: var(--text-primary);
  background: var(--common-transparent);
}
.pagination .btn_prev i,
.pagination .btn_next i {
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.pagination .btn_prev:disabled,
.pagination .btn_next:disabled {
  color: var(--grey-400);
}
.pagination .num {
  width: 32px;
  height: 32px;
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  border-radius: 8px;
}
.pagination .num.current {
  pointer-events: none;
  background: rgba(145, 158, 171, 0.16);
}
.pagination .dot {
  align-self: flex-end;
}

/* modal */
.modal_container {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}
.modal_container.is_show {
  opacity: 1;
  visibility: visible;
}
.modal_container.modal_full {
  bottom: 0;
  top: 0;
  width: 100%;
}
.modal_wrap .modal_header {
  display: flex;
  flex: none;
  align-items: center;
  padding: 10px 20px;
  background: var(--primary-1-main-500);
}
.modal_wrap .modal_header .modal_title {
  flex: 1 1 auto;
  margin-right: 10px;
  font-size: 18px;
  color: var(--common-white);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
}
.modal_wrap .modal_body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100vh - 109px);
}
.modal_wrap .modal_container.modal_full .modal_body {
  max-height: none;
}
.modal_wrap .modal_conts {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow-y: scroll;
  padding: 0 20px 25px;
  background: var(--common-white);
}
.modal_container.modal_full .modal_conts {
  background: var(--grey-200);
}
.modal_wrap .modal_body .shadow_primary_box {
  flex: 1 1 auto;
}
.modal_wrap .btn_closeModal {
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--common-white);
  background: var(--common-transparent);
  border: 0;
}
.modal_wrap .btn_closeModal i {
  font-size: 30px;
}
.modal_wrap .dimmed {
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  transition: visible 0.3s ease, opacity 0.3s ease;
  z-index: 998;
}
.modal_wrap .dimmed.is_show {
  display: block;
  opacity: 1;
  visibility: visible;
}

/***** contents *****/
/* content box */
.sec_cont_area {
  padding: 0 20px;
  word-break: break-all;
}
.sec_cont_area:last-child {
  padding-bottom: 30px;
}
.shadow_box {
  position: relative;
  padding: var(--padding-box);
  border-radius: var(--radius-box);
  background-color: var(--common-white);
  box-shadow: var(--shadow-default);
}
.shadow_box.has_section {
  padding: 0;
}
.shadow_primary_box {
  padding: 10px 20px 20px;
  border-radius: var(--radius-box);
  background-color: var(--common-white);
  border: 2px solid var(--primary-1-main-500);
  box-shadow: var(--shadow-card);
}
.shadow_box > .box_section {
  position: relative;
  padding: 20px;
}
.shadow_box > .box_section:first-child {
  border-radius: 10px 10px 0 0;
}
.shadow_box > .box_section:last-child {
  padding-bottom: 30px;
  border-radius: 0 0 10px 10px;
}
/* datepicker bar */
.datepicker_bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: 50px;
  padding: 0 20px;
  background: var(--primary-1-main-500);
  box-sizing: border-box;
  z-index: 101;
}
.datepicker_bar .datepicker_bar_inner {
  display: flex;
  align-items: center;
}
.datepicker_bar .selectbox {
  justify-self: flex-end;
}
.datepicker_bar .btn_datepicker_nav {
  margin: 0 5px;
  color: var(--common-white);
}
.datepicker_bar .input_box {
  position: relative;
  width: 132px;
}
.datepicker_bar .btn_datepicker {
  position: absolute;
  right: 0;
  top: 3px;
}
.datepicker_bar .btn_datepicker i {
  font-size: var(--fi--xs);
  color: var(--common-white);
}
.datepicker_bar .input_datepicker {
  width: 100%;
  height: 24px;
  padding-right: 18px;
  color: var(--common-white);
  background-color: var(--common-transparent);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  text-align: center;
  border: 0;
}
.datepicker_bar .dropbox {
  position: absolute;
  right: 20px;
  top: 12px;
}
.datepicker_bar .dropbox .btn_selected {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  padding: 0 5px 0 10px;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--primary-1-main-500);
  font-family: var(--font-Pretendard);
  border: 0;
  border-radius: 15px;
  background: var(--common-white);
}
.datepicker_bar .dropbox .btn_selected i {
  color: var(--primary-1-main-500);
  font-size: var(--fi--sm);
  transition: transform 0.3s ease;
}
.datepicker_bar .dropbox .dropbox_cont {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  padding: 15px 24px;
  border: 1px solid var(--primary-1-main-500);
  background: var(--common-white);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-select);
}
.datepicker_bar .dropbox .dropbox_cont button {
  width: 100%;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  white-space: nowrap;
  text-align: center;
}
.datepicker_bar .dropbox .dropbox_cont button + button {
  margin-top: 5px;
}
.datepicker_bar .dropbox.open .btn_selected i {
  transform: rotate(-180deg);
}
.datepicker_bar .dropbox.open .dropbox_cont {
  display: block;
}
.datepicker_bar .update_time {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 10px;
}
.datepicker_bar .update_time .tit {
  height:  15px;
  padding: 0 5px;
  font-size: var(--text-xxs);
  line-height: var(--lh-default);
  color: var(--primary-1-main-500);
  font-weight: var(--fw-bold);
  border-radius: 8px;
  background: var(--common-white);
}
.datepicker_bar .update_time .time {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--common-white);
  line-height: var(--lh-default);
}

/* menubar */
.menubar_nav {
  /* position: sticky; */
  position: fixed;
  top: 60px;
  top: auto;
  left: 0;
  right: 0;
  background: var(--primary-1-main-500);
  z-index: 100;
}
.datepicker_bar + .menubar_nav {
  top: 110px;
}
.menubar_nav:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 64px;
  background-image: linear-gradient(270deg, #5b4ad3 72.5%, rgba(91, 74, 211, 0) 95%);
  z-index: 1;
}
.menubar_nav ul {
  display: flex;
  overflow-x: auto;
  padding: 10px 45px 10px 8px;
}
.menubar_nav ul::-webkit-scrollbar {
  height: 1px;
  background-color: transparent;
}
.menubar_nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 12px;
  white-space: nowrap;
}
.menubar_nav li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 1px;
  height: 16px;
  background-color: var(--primary-1300);
}
.menubar_nav li:first-child:before {
  display: none;
}
.menubar_nav li a {
  display: block;
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
  color: var(--common-white);
  font-size: var(--text-md);
}
.menubar_nav .btn_menubar_open {
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px;
  font-size: var(--fi--md);
  color: var(--common-white);
  z-index: 2;
}
.menubar_nav .btn_menubar_closed {
  display: none;
}
.menubar_nav.open {
  padding: var(--padding-box-2);
}
.menubar_nav.open:after {
  display: none;
}
.menubar_nav.open ul {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  row-gap: 10px;
}
.menubar_nav.open li:nth-child(3n + 1):before {
  display: none;
}
.menubar_nav.open .btn_menubar_open {
  display: none;
}
.menubar_nav.open .btn_menubar_closed {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin-top: 20px;
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
  color: var(--primary-1-main-500);
  font-size: var(--text-md);
  background-color: var(--common-white);
  border-radius: var(--radius-sm);
  width: 100%;
}

.menubar_nav.selected_type {
  position: sticky;
  background: var(--common-white);
}
.menubar_nav.selected_type.open {
  position: fixed;
}
.menubar_nav.selected_type:after {
  background: linear-gradient(270deg, #fff 72.5%, rgba(255, 255, 255, 0) 95%);
}
.menubar_nav.selected_type .top_bar {
  display: flex;
  padding: 10px 45px 10px 8px;
}
.menubar_nav.selected_type .top_bar > * {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  font-size: var(--text-md);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
  color: var(--grey-500);
}
.menubar_nav.selected_type .top_bar > * span {
  display: inline-block;
}
.menubar_nav.selected_type .top_bar .all {
  color: var(--primary-1-main-500);
}
.menubar_nav.selected_type .top_bar > .all span {
  border-bottom: 2px solid var(--primary-1-main-500);
}
.menubar_nav.selected_type .top_bar > *:not(:first-child):before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 1px;
  height: 16px;
  background-color: var(--grey-300);
}
.menubar_nav.selected_type .btn_menubar_open {
  color: var(--primary-1-main-500);
}
.menubar_nav.selected_type nav {
  display: none;
}
.menubar_nav.selected_type.open .top_bar {
  display: none;
}
.menubar_nav.selected_type.open nav {
  display: block;
}
.menubar_nav.selected_type nav li:before {
  background-color: var(--grey-300);
}
.menubar_nav.selected_type nav li a {
  color: var(--grey-500);
}
.menubar_nav.selected_type.open .btn_menubar_closed {
  color: var(--common-white);
  background-color: var(--primary-1-main-500);
}
.menubar_nav.selected_type nav a.all {
  color: var(--primary-1-main-500);
  border-bottom: 2px solid var(--primary-1-main-500);
}

/* contents */
/* 뉴스카드 */
.news_card_item.box {
  border-radius: var(--radius-box);
  border: 2px solid var(--primary-1-main-500);
  background: var(--primary-110);
  box-shadow: var(--shadow-select);
}
.shadow_none .news_card_item.box {
  box-shadow: none;
}
.news_card_item .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.news_card_item .item:last-child {
  padding-bottom: 0;
}
.news_card_item .card_date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--primary-1-main-500);
  border-bottom: 1px solid var(--grey-300);
}
.news_card_item .card_body {
  padding: 10px;
}
.news_card_item .card_body .title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 50px;
  margin-bottom: 10px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: var(--lh-sm);
}
.news_card_item .card_body .title em {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: var(--primary-1-main-500, #5b4ad3);
  background-color: rgba(91, 74, 211, 0.2);
}
.news_card_item .card_body .cont {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_card_item .media_area {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--text-primary);
}
.news_card_item .media_area .reply {
  display: flex;
  align-items: center;
}
.news_card_item .media_area .reply i {
  margin-right: 5px;
  font-size: var(--fi--xs);
}
.news_card_item .card_bottom {
  border-radius: 0 0 10px 10px;
}
.news_card_item .card_bottom .news_more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  line-height: var(--lh-default);
  font-size: var(--text-xs);
  font-weight: var(--fw-mid);
  color: var(--primary-110);
  background: var(--primary-1-main-500);
}
.news_card_item .card_bottom .news_more .num {
  margin-left: 4px;
  font-size: var(--text-md);
  color: var(--common-white);
  font-weight: var(--fw-bold);
}
.news_card_item .card_bottom .news_more .text_more {
  margin-left: 4px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
}
.news_card_item .card_bottom .news_more i {
  margin-left: 4px;
  font-weight: var(--fw-normal);
  font-size: var(--fi--xs);
  color: var(--primary-110);
}
.news_card_item.bg_white.box {
  background: var(--common-white);
}
.news_card_item.bg_white.box .card_date {
  color: var(--text-primary);
}

/* 뉴스 리스트 */
.news_list_wrap {
  margin-top: -10px;
}
.news_list_wrap li {
  border-bottom: 1px solid var(--grey-300);
}
.news_list_wrap .news_card_item .card_body {
  padding: 10px 0 15px;
}
.news_list_wrap .news_card_item .card_body .card_title_box {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}
.news_list_wrap .news_card_item .card_body .card_title_box .title {
  margin: 0 0 5px ;
}
.news_list_wrap .btn_default.btn_more {
  align-self: flex-end;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--primary-1-main-500);
}
.news_list_wrap .btn_default.btn_more [class*='ri'] {
  margin: 1px 0 0;
  font-size: var(--fi--xs);
}
.news_list_wrap .news_card_item .card_body .cont {
  color: var(--grey-600);
  font-weight: var(--fw-mid);
}
.news_list_wrap [data-event='accordion'].open .cont {
  display: block;
}
.news_list_wrap .news_card_item .media_area {
  margin-top: 15px;
  font-size: var(--text-sm);
}
.news_list_wrap .news_card_item .media_area .date {
  margin-left: 10px;
  font-size: var(--text-xs);
  font-weight: var(--fw-mid);
  color: var(--grey-500);
}
.news_list_wrap .news_card_item .media_area .reply {
  color: var(--grey-600);
}
.news_list_wrap.summary_type li {
  margin-top: 10px;
  border: 1px solid var(--grey-300);
  background: var(--grey-100);
  border-radius: var(--radius-box);
}
.news_list_wrap.summary_type .news_card_item .card_body {
  padding: var(--padding-box);
}
.news_list_wrap.summary_type .news_card_item .card_body .card_title_box {
  margin-bottom: 15px;
}
.news_list_wrap.summary_type .news_card_item .card_body .cont {
  display: block;
}

/* 카드리스트 스와이퍼 */
.sw_news_card_items {
  position: relative;
  margin: 0 -20px;
}
.sw_news_card_items .swiper-container {
  overflow: hidden;
  padding: 0 20px 30px;
}
.sw_news_card_items.shadow_none .swiper-container {
  padding: 0 20px;
}
.sw_news_card_items .swiper-button-next,
.sw_news_card_items .swiper-button-prev {
  width: 24px;
  height: 24px;
  margin: 0;
  top: 10px;
}
.sw_news_card_items .swiper-button-next.swiper-button-disabled,
.sw_news_card_items .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.sw_news_card_items .swiper-button-next:after,
.sw_news_card_items .swiper-button-prev:after {
  display: none;
}
.sw_news_card_items .swiper-button-next i,
.sw_news_card_items .swiper-button-prev i {
  font-size: 24px;
  color: var(--primary-1-main-500);
}
.sw_news_card_items .swiper-button-next.swiper-button-disabled i,
.sw_news_card_items .swiper-button-prev.swiper-button-disabled i {
  color: var(--grey-400);
}
.sw_news_card_items .swiper-button-next {
  right: 30px;
}
.sw_news_card_items .swiper-button-prev {
  left: 30px;
}
.sw_news_card_items .swiper-container + .btns_area {
  margin: -30px 0 0;
  padding: 15px 20px 20px;
}

/* 리스트 타입 */
.basic_list_wrap > .form_control {
  margin-bottom: 10px;
}

/* 정책이슈 키워드 정보 */
.basic_list_wrap > .cont_info{margin-top:20px;}
.basic_list_wrap > .cont_info .polIssue_go{display: flex;flex-direction: column;width:100%;padding:0;background: var(--common-white);border:none;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle{display: flex;align-items: flex-start;justify-content: flex-start;width:100%;flex-direction: column;}

/* 주제 */
.basic_list_wrap > .cont_info .polIssue_go .subTitle .subjectArea{width: 100%;display: flex;justify-content: flex-start;align-items: center; padding: 5px 0 5px 10px; background:var(--grey-200);}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .subjectArea > em{width:56px; height:18px; margin: 0 8px 0 0;padding: 0 4px;background:var(--grey-300);color: var(--grey-700);font-size:var(--text-xs);font-weight: var(--fw-mid);line-height:21px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .subjectArea > span:nth-child(2){font-size:var(--text-sm);font-weight:var(--fw-bold);color: var(--text-primary);line-height:18px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .subjectArea > span:nth-child(3){margin:-2px 6px 0 8px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .subjectArea > span:nth-child(4){font-size:var(--text-sm);font-weight:var(--fw-bold);color: var(--text-primary); line-height:18px;}

/* 주관부처 */
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea{width:100%;display:flex;justify-content: flex-start;align-items: center;margin-top: 5px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > .stit{width:56px; height:18px;margin: 0 8px 0 10px;padding:0 4px;font-size:var(--text-xs);font-weight:var(--fw-mid);color:var(--grey-700);background: var(--grey-300);border-radius:2px;line-height:21px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(2).scont{margin-top:4px;font-size:var(--text-sm); font-weight: var(--fw-bold); line-height:21px;text-align: left;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(3){margin: 10px 0 0 10px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(3) em{height:18px;margin-right:8px;padding: 2px 10px;background:var(--grey-300);color: var(--grey-700);font-size:var(--text-xs);font-weight: var(--fw-mid);line-height:18px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(3) .scont{font-size:var(--text-sm);font-weight:var(--fw-bold);color: var(--text-primary);line-height:21px;}

/* 
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > .stit{padding:0 4px; font-size:var(--text-sm);font-weight:var(--fw-mid);color:var(--common-white);background: var(--grey-700); border-radius:2px;line-height:21px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(2).scont{margin-top:4px;font-size:var(--text-md); font-weight: var(--fw-bold); line-height:21px;text-align: left;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(3){margin: 10px 0 0 10px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(3) em{height:18px; margin-right:8px;padding: 2px 10px;background:var(--grey-300);color: var(--grey-700);font-size:var(--text-xs);font-weight: var(--fw-mid);line-height:18px;}
.basic_list_wrap > .cont_info .polIssue_go .subTitle .bucheoArea > span:nth-child(3) .scont{font-size:var(--text-sm);font-weight:var(--fw-bold);color: var(--text-primary);line-height:21px;}
.basic_list_wrap > .cont_info span.line{display:block;width:100%; height:1px; margin: 20px 0; background:var(--grey-300); }
 */
/* 정책이슈 차트 */
.basic_list_items .polIssue_chartArea {width:100%;height: 295px;}

.basic_list_items.shadow_box {
  padding: 0 20px;
}
.basic_list_items .list_item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-300);
}
.basic_list_items.shadow_box .list_item:last-child {
  border-bottom: 0;
}
.basic_list_items .list_item .count {
  /* flex: 0 0 35px; */
  flex: none;
  min-width: 35px;
  margin-right: 10px;
  text-align: center;
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
}
.basic_list_items .list_item .count:after {
  content: ".";
  display: inline-block;
}
.basic_list_items .list_item .info {
  flex: 1 1 auto;
  overflow: hidden;
}
.basic_list_items .list_item .title {
  display: block;
}
.basic_list_items .list_item .title em {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: var(--primary-1-main-500, #5b4ad3);
  background-color: rgba(91, 74, 211, 0.2);
}
.basic_list_items .list_item .title a {
  display: block;
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.basic_list_items .list_item .title.d_flex {
  display: inline-flex;
  overflow: hidden;
  max-width: 100%;
  gap: 5px;
}
.basic_list_items .list_item .title.d_flex .ellipsis {
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  text-overflow: ellipsis;
  white-space: nowrap;

}
.basic_list_items .list_item .title.d_flex .link {
  flex: none;
  color: var(--primary-1-main-500);
}
.basic_list_items .list_item .title.no_ellipsis a {
  white-space: normal;
}
.basic_list_items .list_item .desc {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: 5px;
  color: var(--grey-500);
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
}
.basic_list_items .media_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  line-height: var(--lh-default);
  font-size: var(--text-xs);
}
.basic_list_items .media_info {
  display: flex;
  align-items: center;
}
.basic_list_items .media {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}
.basic_list_items .date {
  color: var(--grey-600);
}
.basic_list_items .media_info > *:not(:first-child):before {
  content: "|";
  display: inline-block;
  margin: 0 5px;
  color: var(--grey-300);
  vertical-align: text-bottom;
}
.basic_list_items .reply {
  color: var(--text-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
}
.basic_list_items .reply i[class*=ri-] {
  margin-right: 5px;
  font-size: var(--fi--xs);
  color: var(--text-primary);
}

.basic_list_items.sm .list_item {
  padding: 10px 0;
}
.basic_list_items.sm .list_item:last-child {
  border-bottom: 0;
}
.basic_list_items.sm .list_item .count {
  flex: 0 0 25px;
  margin-right: 5px;
  font-size: var(--text-md);
}
.basic_list_items.sm .list_item .title a  {
  font-size: var(--text-md);
}

/* 미디어 리스트 */
.media_list_wrap > .form_control {
  margin-bottom: 10px;
}
.media_list_items .list_item {
  overflow: hidden;
  border-radius: var(--radius-box); 
  border: 1px solid var(--grey-300);
}
.media_list_items .list_item + .list_item  {
  margin-top: 20px;
}
.media_list_items .thumb {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 63%;
}
.media_list_items .thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media_list_items .detail {
  padding: 20px 15px;
  background: var(--grey-100);
}
.media_list_items .detail .title {
  display: block;
  margin-bottom: 10px;
}
.media_list_items .detail .title .ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
  text-overflow: ellipsis;
}
.media_list_items .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.media_list_items .info .user {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--text-primary);
} 
.media_list_items .info .user i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  font-size: 14px;
  color: var(--common-white);
  border-radius: var(--radius-circle);
}
.media_list_items .info .user i.youtube {
  background: var(--red-main);
}
.media_list_items .info .user i.instagram {
  background: var(--data-color-pink);
}
.media_list_items .info .user i.twitter {
  background: var(--data-color-sky);
}
.media_list_items .info .user i.community {
  background: var(--data-color-yellow);
}
.media_list_items .info .user i.blog {
  background: var(--data-color-green);
}
.media_list_items .info .date {
  font-size: var(--text-xs);
  line-height: var(--lh-default);
  color: var(--grey-500);
}
.media_list_items .comm {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 10px;
}
.media_list_items .comm .like,
.media_list_items .comm .reply {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.media_list_items .comm .like i,
.media_list_items .comm .reply i {
  font-size: var(--fi--xs);
  margin-right: 5px;
}
.media_list_items .comm .btn_more {
  position: relative;
  padding-right: 18px;
  font-size: 0;
}
.media_list_items .comm .btn_more .text {
  display: inline-block;
  color: var(--primary-1-main-500);
  line-height: var(--lh-default);
  font-size: var(--text-xs);
}
.media_list_items .comm .btn_more:after {
  content: "\ea13";
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  font-family: 'remixicon' !important;
  font-size: var(--fi--xs);
}
.media_list_items .cont.ellipsis11 a {
  -webkit-line-clamp: 11;
}
.media_list_items .cont a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.media_list_items .cont a em {
  font-weight: var(--fw-mid);
  color: var(--primary-1-main-500);
  background: rgba(44, 83, 199, 0.08);
}
.media_list_items .open .comm .btn_more:after {
  content: "\f1af";
}
.media_list_items .open .cont a {
  display: block;
}


/* 타임라인 */
.timeline_slide {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 20px;
  border-bottom: 1px solid var(--primary-1-main-500);
}
.timeline_slide .btn_prev,
.timeline_slide .btn_next {
  font-size: 0;
}
.timeline_slide .btn_prev i,
.timeline_slide .btn_next i {
  font-size: var(--fi--md);
  color: var(--grey-600);
}
.timeline_slide .btn_prev.disabled i,
.timeline_slide .btn_next.disabled i,
.timeline_slide .btn_prev:disabled i,
.timeline_slide .btn_next:disabled i {
  color: var(--grey-400);
}
.timeline_slide .slide_cont {
  display: flex;
  flex: 1 1 auto;
  overflow: hidden;
  /* margin: 0 6px; */
  padding: 10px 6px;
}
.timeline_slide .slide_cont::-webkit-scrollbar {
  height: 1px;
}
.timeline_slide .slide_cont button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  /* width: 65px; */
  width: calc(33.3333% - 12px);
  min-width: 65px;
  height: 38px;
  margin: 0 6px;
  padding: 0 12px;
  font-size: var(--text-md);
  color: var(--grey-400);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  border-radius: var(--radius-box);
}
.timeline_slide .slide_cont button.selected {
  color: var(--common-white);
  background: var(--primary-1-main-500);
  box-shadow: 0px 8px 16px 0px rgba(91, 74, 211, 0.24);
}
.timeline_slide .slide_cont button.selected:after {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 2px);
  bottom: 5px;
  width: 4px;
  height: 4px;
  background: var(--common-white);
  border-radius: var(--radius-circle);
}
.timeline_items_wrap {
  position: relative;
  padding: 30px 20px 10px;
}
.timeline_items_wrap:not([data-event='accordion']) {
  padding-bottom: 30px;
}
.timeline_items_wrap .timeline_items {
  position: relative;
}
.timeline_items_wrap .timeline_items:after {
  content: '';
  display: block;
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 1px;
  height: auto;
  background-image: linear-gradient(to bottom, var(--primary-1-main-500) 2px, var(--common-transparent) 2px);
  background-size: 1px 4px;

  box-sizing: border-box;
  z-index: 1;
}
.timeline_items_wrap[data-event='accordion'] .timeline_items {
  overflow: hidden;
  max-height: 380px;
}
.timeline_items_wrap[data-event='accordion'].open .timeline_items {
  max-height: max-content;
}
.timeline_items_wrap dl {
  position: relative;
  padding-left: 22px;
}
.timeline_items_wrap dl + dl {
  margin-top: 20px;
}
.timeline_items_wrap dl:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--primary-1-main-500);
  background: var(--common-white);
  border-radius: var(--radius-circle);
  box-sizing: border-box;
  z-index: 2;
}
.timeline_items_wrap .law_items dl:before {
  background: var(--primary-1-main-500);
}
.timeline_items_wrap dl dt {
  margin-bottom: 5px;
  font-size: var(--text-md);
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}
.timeline_items_wrap dl dd {
  padding: 10px;
  border-radius: var(--radius-box);
  background: var(--grey-100);
}
.timeline_items_wrap dl dd li {
  color: var(--grey-700);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  font-size: var(--text-md);
}
.timeline_items_wrap dl dd li a {
  display: block;
  color: inherit;
}
.timeline_items_wrap dl dd li + li {
  margin-top: 5px;
}
.timeline_items_wrap .btn_more {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 30px 0 10px;
  border-radius: 0 0 var(--radius-box) var(--radius-box);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -17.59%, var(--common-white) 50%);
  z-index: 3;
}
/* .timeline_items_wrap .btn_link i {
  font-size: var(--fi--sm);
  color: var(--primary-1-main-500);
  vertical-align: text-bottom;
} */
.timeline_items_wrap .law_items dl dd {
  padding: 0;
  background: var(--common-transparent);
  border-radius: 0;
}
.timeline_items_wrap.open .btn_more {
  position: static;
  margin-top: 10px;
  padding: 10px;
  background: var(--common-transparent);
}
.timeline_items_wrap .law_items dd li {
  display: flex;
  overflow: hidden;
}
.timeline_items_wrap .law_items dd li .cate {
  flex: 0 0 57px;
  font-size: var(--text-md);
  font-weight: 700;
}
.timeline_items_wrap .law_items dd li .cate.cate1 {
  color: #B07D92;
}
.timeline_items_wrap .law_items dd li .cate.cate2 {
  color: #53CA88;
}
.timeline_items_wrap .law_items dd li .cate.cate3 {
  color: var(--data-color-blue);
}
.timeline_items_wrap .law_items dd li .cate.cate4 {
  color: var(--data-color-red);
}
.timeline_items_wrap .law_items dd li .cate.cate5 {
  color: var(--data-color-orange);
}
.timeline_items_wrap .law_items dd li .cate.cate6 {
  color: #A4B153;
}
.timeline_items_wrap .law_items dd li .cont strong {
  flex: 1 1 auto;
  font-size: var(--text-md);
  line-height: var(--lh-default);
  color: var(--grey-600);
  font-weight: var(--fw-mid);
  word-break: keep-all;
}
.timeline_items_wrap .law_items dd li .cont .anchor {
  color: var(--primary-1-main-500);
  font-weight: 700;
}
.timeline_items_wrap .law_items dd li .cont .anchor i {
  font-weight: 400;
  font-size: 20px;
}
.timeline_items_wrap .law_items dd li .cont .anchor em {
  text-decoration: underline;
}
.timeline_items_wrap .law_items dd li .cate:before {
  content: "#";
  display: inline-block;
}


/* 키워드 배지 */
.shadow_box_cont .keyword_badge_box {
  display: none;
}
.keyword_badge_box {
  display: flex;
  margin-bottom: 20px;
}
.keyword_badge_box dt {
  display: inline-flex;
  align-items: center;
  flex: none;
  height: 36px;
  margin-right: 5px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--primary-1-main-500);
}
.keyword_badge_box dd {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1 1 auto;
}
.keyword_badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 10px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  border: 1px solid var(--grey-300);
  border-radius: 20px;
  background: var(--grey-100);
}
.keyword_badge.sm {
  height: 31px;
  font-size: var(--text-sm);
}


/***** main *****/
.main_section {
  position: relative;
}
.main_section + .main_section {
  margin-top: 20px;
}
.main_section.section_ai_srch {
  margin-top: 5px;
  margin-bottom: -10px;
  padding-bottom: 60px;
}
.main_title_box {
  display: flex;
  align-items: center;
  padding: var(--padding-box-2);
}
.main_title_box i[class*='ri-'] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-1-main-500);
}
.main_title_box > i[class*='ri-'] {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin-right: 10px;
  background: var(--common-white);
  box-shadow: var(--shadow-default);
  border-radius: var(--radius-circle);
}
.main_title_box .link {
  flex: none;
}

/***** 정책이슈 case 추가 *****/
.main_title_box2 {
  display: flex;
  align-items: center;
  padding: var(--padding-box-2);
}
.main_title_box2 i[class*='ri-'] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-1-main-500);
}
.main_title_box2 > i[class*='ri-'] {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin-right: 10px;
  background: var(--common-white);
  box-shadow: var(--shadow-default);
  border-radius: var(--radius-circle);
}
.main_title_box2 .link {
  flex: none;
}
/***** //정책이슈 case 추가 *****/

.main_title {
  flex: 1 1 auto;
  color: var(--text-primary);
  font-family: var(--font-GmarketSans);
  font-size: var(--text-xlg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
}
.main_title .fw_light {
  font-weight: 500;
}
.main_title_box .link i[class*='ri-'] {
  flex: 0 0 24px;
}
.main_title_box .desc {
  font-size: var(--text-xs);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
  color: var(--grey-500);
}
/* 메인 > 이슈분석 */
.issue_keyword_items li {
  display: flex;
  align-items: start;
  padding: 0 5px;
  font-family: var(--font-GmarketSans);
}
.issue_keyword_items li + li {
  margin-top: 10px;
}
.issue_keyword_items > * {
  flex: 0 0 auto;
}
.issue_keyword_items .rank {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  font-size: var(--text-sm);
  line-height: 1.3;
  color: var(--common-white);
  background: var(--grey-600);
}
.issue_keyword_items .title {
  display: block;
  flex: 1 1 auto;
  margin: 3px 5px 0 0;
  line-height: var(--lh-sm);
}
.issue_keyword_items .btn_message {
  font-size: 0;
  line-height: 1;
}
.issue_keyword_items .btn_link {
  margin-left: 20px;
  font-size: 24px;
  color: var(--grey-600);
  line-height: var(--lh-basic);
}
.issue_keyword_items .selected .rank {
  background: var(--primary-1-main-500);
}

/* 메인 > 이시각브리핑 */
.sw_briefing_container {
  overflow: hidden;
}
.briefing_card .cate {
  margin-bottom: 5px;
  padding: 7px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--primary-1-main-500);
  text-align: center;
}
.briefing_card .news_box {
  padding-bottom: 10px;
}
.briefing_card .news_box .title {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  height: 50px;
  margin-bottom: 5px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.briefing_card .news_box .article {
  display: -webkit-box;
  overflow: hidden;
  height: 120px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.briefing_card .news_box .news_links {
  display: none;
  margin-top: 5px;
}
.briefing_card .news_box .news_links li {
  position: relative;
  margin-top: 5px;
  padding-left: 17px;
}
.briefing_card .news_box .news_links li:before {
  content: '┗';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: var(--fw-mid);
  font-size: var(--text-xs);
  color: var(--text-primary);
}
.briefing_card .news_box .news_links a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--primary-2-main-500);
}
.briefing_card .btn_more {
  display: block;
  width: 100%;
  margin-top: 10px;
}
.briefing_card .news_box .open .article {
  height:auto;
  display: block;
}
.briefing_card .news_box .open .news_links {
  display: block;
}

/****************************************************************************************************/
/* 메인 > 정책이슈 */
.section_pol_issue .main_title {position: relative;}
.section_pol_issue .main_title .balloon_box {
  position: absolute;
  left: calc(100% - 4px);
  top: -12px;
  height: 18px;
  padding: 0 12px;
  font-size: var(--text-xs);
  line-height: var(--lh-default);
  color: var(--common-white);
  font-weight: var(--fw-bold);
  font-family: var(--font-Pretendard);
  background: var(--primary-1-main-500);
  border-radius: 10px;
}
.section_pol_issue .main_title .balloon_box:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 14px;
  width: 9px;
  height: 9px;
  background: url(../images/piece_balloon.svg) no-repeat center center/100%;
}
.sw_pol_issue {position: relative;overflow: hidden;}
.sw_pol_issue .swiper_slide {overflow: hidden;}
.sw_polIssue_container {overflow: hidden;}
.polIssue_card .cate {
  margin-bottom: 5px;
  padding: 7px 10px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--primary-1-main-500);
  text-align: center;
}
.polIssue_card .cate .polIssue_go{display: flex;flex-direction: column;}
.polIssue_card .cate .polIssue_go .mainTitle{font-weight: 700; font-size:18px; color:var(--main-color); line-height:25px;word-break: keep-all;}
.polIssue_card .cate .polIssue_go .subTitle{display: flex;flex-direction: column;align-items: center;justify-content: flex-start; margin:5px 0; border-radius:5px;}
.polIssue_card .cate .polIssue_go .subTitle .stit{height:18px;padding: 0 8px;font-size:12px;font-weight:700;color:var(--common-white);background: var(--primary-1300);border-radius:50px;line-height:1.5;}
.polIssue_card .cate .polIssue_go .subTitle span:nth-child(3) {margin-top: 5px;background: #7EA0EE;}
.polIssue_card .cate .polIssue_go .subTitle .scont{font-size:14px;font-weight:500;color: var(--grey-700);line-height:21px;margin-top: 5px;}

.polIssue_card .news_box {height:300px;padding: 20px;}
.polIssue_card .news_box .polIssue_chartArea{height:265px;}

/****************************************************************************************************/


/* 메인 > 법률과 이슈 */
.section_law_issue{
  background: var(--grey-200);
}

.section_law_issue .main_title {
  position: relative;
}
.section_law_issue .main_title .balloon_box {
  position: absolute;
  left: calc(100% - 4px);
  top: -12px;
  height: 18px;
  padding: 0 12px;
  font-size: var(--text-xs);
  line-height: var(--lh-default);
  color: var(--common-white);
  font-weight: var(--fw-bold);
  font-family: var(--font-Pretendard);
  background: var(--primary-1-main-500);
  border-radius: 10px;
}
.section_law_issue .main_title .balloon_box:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 14px;
  width: 9px;
  height: 9px;
  background: url(../images/piece_balloon.svg) no-repeat center center/100%;
}
.sw_law_issue {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}
.sw_law_issue .swiper_slide {
  overflow: hidden;
}
.sw_law_issue .shadow_box.title_box {
  margin-bottom: 5px;
  padding: 0;
}
.sw_law_issue .shadow_box.title_box .acco_title_box {
  position: relative;
  margin-bottom: 5px;
  padding: 10px 70px;
  text-align: center;
}
.sw_law_issue .shadow_box.title_box .acco_title_box .title {
  display: block;
  font-size: var(--text-lg);
  line-height: var(--lh-sm);
  font-weight: var(--fw-bold);
  color: var(--primary-1-main-500);
}
.sw_law_issue .shadow_box.title_box .acco_title_box .icons {
  display: flex;
  gap: 5px;
  position: absolute;
  right: 20px;
  top: calc(50% - 12px);
}
.sw_law_issue .shadow_box.title_box .acco_title_box [class*='ri-'] {
  font-size: 24px;
  color: var(--grey-600);
  transition: transform 0.3s ease;
}
.sw_law_issue .shadow_box.title_box.open .acco_title_box i.ri-arrow-down-s-line {
  transform: rotate(-180deg);
}
.sw_law_issue .title_box .cont {
  padding: 10px 20px 20px;
  border-top: 1px solid var(--grey-300);
}
.sw_law_issue .title_box .cont .article {
  margin-bottom: 10px;
  font-size: var(--text-md);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: var(--fw-mid);
}
.sw_law_issue .title_box .cont .text_caution {
  margin-bottom: 10px;
}
.sw_law_issue .title_box .cont .text_caution i {
  font-size: var(--fi--xs);
}
.sw_law_issue .title_box .relative_laws dt {
  margin-bottom: 5px;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
  color: var(--grey-600);
}
.sw_law_issue .title_box .relative_laws dd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 관련 법률 + 관련통계보기 Btn */
.sw_law_issue .title_box .relate_law{display:block;}
.sw_law_issue .title_box .relate_law {display: flex;align-items: flex-start;gap: 5px;margin-top: 20px;flex-direction: column;}
.sw_law_issue .title_box .relate_law .title {font-size: 14px;font-weight:bold;}
.sw_law_issue .title_box .relate_law .title:after {content: ' : ';display: inline-block;vertical-align: top;margin-left:5px;}
.sw_law_issue .title_box .relate_law .links {min-width:300px;overflow: hidden;text-overflow: ellipsis;word-break: normal;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;line-height: 20px;}
.sw_law_issue .title_box .relate_law .links > a{margin-right:5px;text-decoration:underline;}
.sw_law_issue .title_box .relate_law .links > a.no-deco{cursor:default;text-decoration:none;}
.sw_law_issue .lawViewBtn{ margin-top:10px; border-radius: 5px;background: var(--orange-main);}
.sw_law_issue .lawViewBtn button{width:100%;height:34px;border:none; color:var(--common-white); font-size:14px; font-weight:bold; background: transparent;}
.sw_law_issue .lawViewBtn i.ri-slideshow-line{margin-right:0.5px;color:var(--common-white); font-size:22px;}

/* 관련통계보기 Popup */
.modalLawView .modal_conts{overflow-y:hidden; display:block; height: 100vh;}
.modalLawView .modal_conts .form_wrap{display: flex;flex-direction: column;gap: 10px;width: 100%;}
.modalLawView .modal_conts .form_wrap .form_group{display: flex;flex-direction: row;align-items: center;justify-content: space-between;width:100%; margin:20px 0;}
.modalLawView .modal_conts .form_wrap .form_group .label {display: flex;justify-content: flex-start;width:20%;margin: 0 auto;font-size: var(--text-sm);font-weight: var(--fw-bold);color: var(--primary-1-main-500); line-height: 21px;}
.modalLawView .modal_conts .form_wrap .form_group .form_control {display: flex;}
.modalLawView .modal_conts .form_wrap .form_group .form_control .form_select {
  width:80%; min-width:80%;
  height: 55px;
  padding: 10px 40px 10px 15px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  border: 1px solid var(--primary-1-main-500);
  border-radius: 6px;
  background: var(--common-white) url(../images/icon_arrow_down_20x20.svg) no-repeat right 10px center;
  overflow:hidden; 
  text-overflow: ellipsis;
  word-wrap: normal;
  white-space: nowrap;
}

.modalLawView .modal_conts .lawStatView{display:flex;flex-direction: row;justify-content: space-between;}
.modalLawView .modal_conts .lawStatView > div{display:flex;flex-direction: column;width: 100%;}
.modalLawView .modal_conts .lawStatView .statCase{display:block;width:100%;margin-bottom:15px;}
.modalLawView .modal_conts .lawStatView .statCase .title_box .btn_accordion{display: flex;justify-content: space-between;height:30px; color:var(--grey-700); font-weight:900; border-bottom:1px solid var(--grey-700);}

/*---------- 관련통계 list_type ----------*/
.modalLawView .modal_conts .lawStatView .list_type {margin-top:10px;}
.modalLawView .modal_conts .lawStatView .list_type.scroll_box{max-height:220px;overflow-x: hidden;background-color: var(--common-white);}
.modalLawView .modal_conts .lawStatView .list_type li.list_item {display: block;}
.modalLawView .modal_conts .lawStatView .list_type .list_item + .list_item {margin-top: 5px;}
.modalLawView .modal_conts .lawStatView .list_type .list_item .space-between_box{display: flex;justify-content: space-between; width:100%;height:40px;margin-bottom:5px; padding: 8px 10px 8px 15px;background-color: var(--grey-100);border-radius: 5px;}
.modalLawView .modal_conts .lawStatView .list_type .list_item .title {
	display:block;
	overflow: hidden; 
	width:270px;
	font-size: var(--text-md);
	font-weight: var(--fw-mid);
	color: var(--grey-700); 
	line-height:24px;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: nowrap;
}
.modalLawView .modal_conts .lawStatView .list_type li .btn_external_link {flex: none;margin-left: 10px;font-size: 22px;color: var(--grey-600);}
.modalLawView .modal_conts .lawStatView .list_type li > .nodata{display: flex;flex-direction: column; align-items: center;justify-content: center; min-height: 220px;}
.modalLawView .modal_conts .lawStatView .list_type li > .nodata > .ri-error-warning-line{display: block; font-size: 20px;color: var(--grey-600);}
.modalLawView .modal_conts .lawStatView .list_type li > .nodata > span{font-size: 16px;font-weight: 500;color: var(--grey-600);text-align:center;line-height: 1.5;}
.modalLawView .modal_conts .lawStatView .list_type + .list_type{margin-top:65px;}

/* 메인 > 국회 분석 */
.main_section.section_analysis {
  margin-top:0;
  padding: 15px 0 30px;
  background: var(--primary-150);
}
.sw_assemb_analysis {
  overflow: hidden;
  padding: 0 20px;
}
.sw_assemb_analysis li {
  overflow: hidden;
  background: var(--common-white);
  border-radius: var(--radius-box);
}
.sw_assemb_analysis .fig {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--grey-100);
}
.sw_assemb_analysis .fig .thumb {
  flex: 0 0 75px;
  width: 75px;
  height: 103px;
  overflow: hidden;
}
.sw_assemb_analysis .fig .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sw_assemb_analysis .fig .caption .assign {
  display: block;
  color: var(--grey-600);
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.sw_assemb_analysis .fig .caption .name {
  display: block;
  color: var(--text-primary);
  font-size: var(--text-xlg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
}
.sw_assemb_analysis .chart_wrap {
  padding: 10px 15px;
}
.sw_assemb_analysis .chart_wrap .title {
  display: block;
  margin-bottom: 10px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--text-primary);
}
.sw_assemb_analysis .chart_wrap .chart_area {
  min-height: 120px;
}

/* 메인 > 소셜 리포트 */
.main_section.section_social_report {
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 30px;
}
.sw_social_report {
  overflow: hidden;
}
.sw_social_report .swiper-container {
  padding: 0 20px;
}
.sw_social_report .swiper-slide {
  width: 88.06%;
}
.fig_social_report {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-box);
}
.fig_social_report .thumb {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.fig_social_report .thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fig_social_report .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 20px;
  line-height: var(--lh-default);
  background: rgba(0, 0, 0, 0.8);
}
.fig_social_report .caption .title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--common-white);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
}
.fig_social_report .caption .date {
  display: block;
  margin-top: 13px;
  font-size: var(--text-sm);
  color: var(--grey-300);
}

/* 메인 > 지능형 법률검색 */
.srch_form_rounded {
  position: relative;
}
.srch_form_rounded .input_srch {
  width: 100%;
  height: 50px;
  padding: 0 55px 0 20px;
  font-weight: var(--fw-mid);
  border-radius: 50px;
  background: var(--common-white);
  box-shadow: var(--shadow-card);
  box-sizing: border-box;
}
.srch_form_rounded .btn_srch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  color: var(--common-white);
  border-radius: var(--radius-circle);
  background: var(--primary-1-main-500);
}
.srch_form_rounded .btn_srch [class*='ri-'] {
  font-size: var(--fi--sm);
}

/**** contents *****/
.section_contents {
	margin-bottom: 0;/* footer 높이 + 여백 margin-bottom: 140px;  */
	padding: 20px 20px 30px;
}
/* AI 서치 */
.section_contents.sec_ai_srch {
  padding: 0;
}
.AI_srch_top {
  padding: var(--padding-box-2);
}
.AI_srch_top .srch_form_rounded .input_srch {
  border: 2px solid var(--primary-1-main-500);
  font-size: var(--text-lg);
}
.sec_ai_srch .search_set{margin-top:-5px;}

.sec_ai_srch .search_set .search_set_top {
  display: flex;
  padding: var(--padding-box-2);
  background: var(--primary-150);
}
.sec_ai_srch .search_set_top .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1 1 auto;
  margin-right: 10px;
}
.sec_ai_srch .search_set_top .btn_srch_set {
  flex: none;
  height: 33px;
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  color: var(--grey-700);
  line-height: var(--lh-default);
}
.sec_ai_srch .search_set.open .btn_srch_set {
  color: var(--primary-1-main-500);
  font-weight: var(--fw-bold);
}
.sec_ai_srch .search_set .search_set_cont {
  padding: 10px 20px;
  background: transparent;
  /* background: var(--common-white); */
}
.sec_ai_srch .search_set_cont .srch_form_box {
  display: flex;
  flex-direction: column;
  padding: var(--padding-box);
  border-radius: var(--radius-box);
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
}
.srch_form_box > dl {
  display: flex;
}
.srch_form_box > dl + dl {
  margin-top: 15px;
}
.srch_form_box > dl dt {
  flex: 0 0 50px;
  width: 50px;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}
.srch_form_box > dl dd {
  flex: 1 1 auto;
}
.srch_form_box .radio_has_datepicker .datepicker_wrap {
  margin-top: 5px;
}
.srch_form_box .btns_area {
  margin-top: 25px;
}
.srch_form_box .btns_area .btn_basic {
  width: 70px;
  padding: 0 5px;
}

/* 검색조건 적용 버튼 css 추가  */
.srch_form_box > button.apply_bt_new {display:flex;height:33px;margin:0 auto; margin-top:25px; padding:6px 28px;box-sizing:border-box;justify-content:center;align-items:center;color:#fff;font-size:14px;font-weight:900;border:none;border-radius:5px;background:var(--primary-1-main-500,#5B4AD3);}


.sec_ai_answer {
  padding: 15px 20px 10px;
}
/* AI답변 영역 css 수정 */
.gray_box {padding: var(--padding-box);border: var(--grey-300);border-top-left-radius: var(--radius-box);border-top-right-radius: var(--radius-box);background: var(--grey-200);}

.sec_ai_answer .title_md_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sec_ai_answer .title_md i {
  margin-right: 8px;
  vertical-align: top;
}
.sec_ai_answer .title_md_box .btn_basic.btn_sm {
  padding: 0 10px;
}
.sec_ai_answer .cont_normal {
  margin-bottom: 20px;
}
.sec_ai_answer .badge_area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.sec_ai_answer .badge_area > a > span{white-space: nowrap;}

/* 
.sec_ai_answer .recommend_area {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--grey-300);
}
.sec_ai_answer .recommend_area dt {
  color: var(--grey-600);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.sec_ai_answer .recommend_area dd {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sec_ai_answer .recommend_area button {
  position: relative;
  width: 24px;
  height: 24px;
}
.sec_ai_answer .recommend_area button:before {
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-family: 'remixicon' !important;
  font-size: 24px;
  color: var(--grey-500);
}
.sec_ai_answer .recommend_area button.btn_up:before {
  content: "\f207";
}
.sec_ai_answer .recommend_area button.btn_down:before {
  content: "\f205";
}
.sec_ai_answer .recommend_area button.selected:before {
  color: var(--primary-1-main-500);
}
.sec_ai_answer .recommend_area button.btn_up.selected:before {
  content: "\f206";
}
.sec_ai_answer .recommend_area button.btn_down.selected:before {
  content: "\f204";
}
*/
 /* 답변 아이콘 영역 수정 */
.sec_ai_answer .recommend_area {display: flex;align-items: center;justify-content: flex-end;gap: 15px;margin-top: 20px;padding-top: 10px;border-top: 1px solid var(--grey-300);}
/* 답변 문구 css */
.sec_ai_answer .recommend_area dt {position:relative;padding:4px 10px;width: 145px;height: 26px;border-radius: 6px;background: var(--grey-800);color:var(--common-white);font-size:12px;font-weight:500;line-height: 18px;}
.sec_ai_answer .recommend_area dt::after {content:'';position:absolute;right: -5px;bottom: 3px;border-top: 10px solid transparent;border-bottom: 10px solid transparent;border-left: 10px solid var(--grey-800);}
.sec_ai_answer .recommend_area dd {display: flex;align-items: center;gap: 15px;padding: 10px 20px;background: var(--primary-1-main-500);border-radius: 50px;}
.sec_ai_answer .recommend_area button {position: relative;width: 24px;height: 24px;}
.sec_ai_answer .recommend_area button:before {content:"";position: absolute;left: 0;top: 0;width: 100%;height: 100%;font-family: 'remixicon' !important;font-size: 24px;color: var(--common-white);}
.sec_ai_answer .recommend_area button.btn_up:before {content: "\f207";}
.sec_ai_answer .recommend_area button.btn_down:before {content: "\f205";}
.sec_ai_answer .recommend_area button.selected:before {color: var(--common-white);}
.sec_ai_answer .recommend_area button.btn_up.selected:before {content: "\f206";}
.sec_ai_answer .recommend_area button.btn_down.selected:before {content: "\f204";}

.sec_ai_srch .search_result_wrap {padding: 0 20px;}

.search_result_items .item {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}
.search_result_items .item_top {
  display: flex;
}
.search_result_items .info_area {
  flex: 1 1 auto;
  margin-right: 6px;
}
.search_result_items .title_area {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  height: 48px;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.search_result_items .title_area .rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  border-radius: 4px;
  color: var(--common-white);
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
}
.search_result_items .title_area .rank.blue {
  background: var(--bule-main);
}
.search_result_items .title_area .rank.orange {
  background: var(--orange-main);
}
.search_result_items .title_area .rank.teal {
  background: var(--teal-main);
}
.search_result_items .title_area .rank.red {
  background: var(--red-main);
}
.search_result_items .title_area .rank.green {
  background: var(--green-main);
}
.search_result_items .title_area .title {
  font-size: var(--text-md);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
  color: var(--text-primary);
}
.search_result_items .title_area .evid {
	font-size: 12px;
	color: #5B4AD3;	
	margin-left: 5px;
}
.search_result_items .item_top .thumb {
  display: block;
  overflow: hidden;
  flex: 0 0 90px;
  width: 90px;
  height: 94px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  box-sizing: border-box;
}
.search_result_items .item_top .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search_result_items .cont_area {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  height: 42px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  color: var(--grey-500);
}
.search_result_items .item_bottom {
  display: flex;
  margin-top: 15px;
}
.search_result_items .item_bottom > * {
  display: inline-block;
  position: relative;
  color: var(--grey-600);
  font-size: var(--text-sm);
  line-height: var(--lh-default);
}
.search_result_items .item_bottom > *:not(:first-child) {
  margin-left: 8px;
  padding-left: 9px;
}
.search_result_items .item_bottom > *:not(:first-child):before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  width: 1px;
  height: 14px;
  background: var(--grey-400);
}

/* 이슈분석 */
.issue_sticky {
  position: sticky;
  top: 110px;
  left: 0;
  right: 0;
  margin: -20px -20px 0;
  padding: 20px 20px 10px;
  background: var(--grey-200);
  z-index: 20;
}
.menubar_nav  + .contentsWrap .issue_sticky {
  top: 155px;
}
.sec_issue_analysis .analysis_top {
  margin-bottom: 10px;
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.sec_issue_analysis .analysis_top > strong {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
}
.issue_keyowrd_box {
  position: relative;
  margin-bottom: 10px;
  padding: 0 20px;
  background: var(--common-white);
  border-radius: var(--radius-box);
  border: 1px solid var(--primary-1-main-500);
  overflow: hidden;
}
.issue_sticky .issue_keyowrd_box {
  margin: 0;
}
.issue_keyowrd_box .swiper-container {
  overflow: hidden;
  height: 50px;
}
.issue_keyowrd_box.open .swiper-container {
  height: auto;
}
.issue_keyowrd_box .swiper-wrapper {
  flex-direction: column;
  transition: none;
}
.issue_keyowrd_box li {
  display: flex;
  align-items: center;
  height: 50px;
  padding-right: 20px;
}
.issue_keyowrd_box li + li {
  border-top: 1px solid var(--grey-300);
}
.issue_keyowrd_box li.selected .num {
  background: var(--primary-1-main-500);
}
.issue_keyowrd_box li .num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  color: var(--common-white);
  background: var(--grey-600);
}
.issue_keyowrd_box .link {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: var(--text-lg);
  font-weight: var(--fw-mid);
  line-height: var(--lh-sm);
  color: var(--grey-700);
}
.issue_keyowrd_box li.selected .link {
  font-weight: var(--fw-bold);
}

.issue_keyowrd_box .btn_controller {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 0;
  z-index: 2;
}
.issue_keyowrd_box .btn_controller i {
  font-size: var(--fi--slg);
  color: var(--grey-600);
  transition: transform 0.3s ease;
}
.issue_keyowrd_box.open .btn_controller i {
  transform: rotate(-180deg);
}
.issue_menu_slide {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(100% + 40px);
  margin: 0 -20px 15px;
  padding: 10px 20px;
  background: var(--common-white);
}
.issue_menu_slide .btn_control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: var(--grey-600);
}
.issue_menu_slide .btn_control:disabled {
  color: var(--grey-400);
}
.issue_menu_slide .slide_cont {
  display: flex;
  gap: 5px;
  overflow: auto;
  flex: 1;
}
.issue_menu_slide .slide_cont::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.issue_menu_slide .slide_cont button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 8px 10px 12px;
  white-space: nowrap;
  color: var(--grey-400);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  border-radius: var(--radius-sm);
  background: transparent;
}
.issue_menu_slide .slide_cont button.selected {
  background: var(--primary-1-main-500);
  color: var(--common-white);
  font-weight: var(--fw-bold);
}
.issue_menu_slide .slide_cont button.selected:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--common-white);
}
.news_timeline_box {
  padding: 10px 20px 0;
}
.news_timeline_box .title_md_box .btn_basic {
  min-width: 120px;
}
/* 뉴스요약보기 팝업 */
.pop_news_summary .sw_news_card_items {
  display: flex;
  flex: 1 1 auto;
  /* overflow: hidden; */
}
.pop_news_summary .sw_news_card_items .swiper-container {
  flex: 1 1 auto;
}
.pop_news_summary .sw_news_card_items .swiper-slide {
  display: flex;
}
.pop_news_summary .news_card_item .item {
  height: 100%;
}
.pop_news_summary .news_card_item .card_date {
  font-size: var(--text-lg);
}
.pop_news_summary .news_card_item .card_body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  /* overflow-y: auto; */
}
.pop_news_summary .news_card_item .card_cont {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.pop_news_summary .news_card_item .card_cont .cont {
  display: block;
  flex: 1 1 auto;
  font-weight: var(--fw-mid);
  color: var(--grey-600);
}
.pop_news_summary .news_card_item .media_area {
  font-size: var(--text-sm);
}
.pop_news_summary .text_caution {
  margin-top: -10px;
}

/* 플로팅버튼 - floating_left */
.floating_left {
  position: fixed;
  left: 20px;
  bottom: 50px;
  z-index: 101;
}
.floating_left [class*='btn_floating_'] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-select);
  backdrop-filter: blur(2px);
  z-index: 2;
}
.floating_left [class*='btn_floating_'] i {
  color: var(--common-white);
  font-size: var(--fi--lg);
}
.floating_left .btn_floating_srch {
  background: rgba(44, 83, 199, 0.7);
}
.floating_left .btn_floating_menu {
  background: rgba(91, 74, 211, 0.7);
}
.floating_left .btn_floating_menu i {
  transition: transform 0.3s ease;
}
.floating_left .btn_floating_menu.active i {
  transform: rotate(-180deg);
}

/* 플로팅버튼 - floating_bottom */
.floating_bottom {position: fixed;left: 20px;bottom: 120px;z-index: 101;}
.floating_bottom [class*='btn_floating_'] {display: flex;align-items: center;justify-content: center;width: 50px;height: 50px;border-radius: var(--radius-circle);box-shadow: var(--shadow-select);backdrop-filter: blur(2px);z-index: 2;}
.floating_bottom [class*='btn_floating_'] i {color: var(--common-white);font-size: var(--fi--lg);}
.floating_bottom .btn_floating_srch {background: rgba(44, 83, 199, 0.7);}
.floating_bottom .btn_floating_menu {background: rgba(91, 74, 211, 0.7);}
.floating_bottom .btn_floating_menu i {transition: transform 0.3s ease;}
.floating_bottom .btn_floating_menu.active i {transform: rotate(-180deg);}

.issue_analysis_menu {
  position: relative;
  margin-top: 10px;
}
.issue_analysis_nav {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  padding: var(--padding-box);
  white-space: nowrap;
  background: var(--common-white);
  box-shadow: var(--shadow-select);
  border-radius: var(--radius-box);
  border: 1px solid var(--primary-1-main-500);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: -1;
}
.issue_analysis_nav.is_show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}
.issue_analysis_nav nav + nav {
  margin-top: 20px;
}
.issue_analysis_nav .nav_tit {
  display: block;
  margin-bottom: 2px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.issue_analysis_nav li + li {
  margin-top: 10px;
}
.issue_analysis_nav a {
  display: flex;
  align-items: center;
  font-size: var(--text-lg);
  font-weight: var(--fw-mid);
  line-height: var(--lh-sm);
  color: var(--grey-600);
}
.issue_analysis_nav a i {
  margin-right: 10px;
  font-size: 20px;
}
.issue_analysis_nav li.active a {
  color: var(--primary-1-main-500);
  font-weight: var(--fw-bold);
}
/* 이슈키워드검색 */
.form_control.srch_box.keyword_srch_box .input_text {padding-right: 80px;border: 2px solid var(--primary-1-main-500);border-radius: var(--radius-box);}
.form_control.srch_box.keyword_srch_box .btn_srch {right: 15px;}
.form_control.srch_box.keyword_srch_box .btn_mic {right: 49px;top: calc(50% - 12px);font-size: 24px;color: var(--grey-600);}

.pop_issue_srch .srch_result_wrap .pagination {margin-top: 15px;}

/* 월별비교분석 */
.compare_chart_box {
  position: relative;
  padding: 44px 0 0;
  border: 1px solid var(--grey-300);
  background: var(--grey-100);
  border-radius: var(--radius-box);
}
.compare_chart_box .chart_area {
  min-height: 250px;
}
.compare_chart_box .btn_control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  width: 24px;
  height: 24px;
}
.compare_chart_box .btn_control.btn_prev {
  left: 10px;
}
.compare_chart_box .btn_control.btn_next {
  right: 10px;
}
.compare_chart_box .btn_control i {
  font-size: 24px;
  color: var(--primary-1-main-500);
}
.compare_chart_box .btn_control:disabled i {
  color: var(--grey-400);
}
.comp_chart_itmes {
  position: relative;
}
.comp_chart_itmes + .comp_chart_itmes {
  margin-top: 30px;
  padding-top: 20px;
}
.comp_chart_itmes + .comp_chart_itmes:before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  right: -20px;
  top: 0;
  height: 1px;
  background: var(--grey-300);
}
.comp_chart_itmes .box_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.comp_chart_itmes .box_top .month {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 15px;
  color: var(--primary-1-main-500);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  border-radius: 15px;
  border: 1px solid var(--primary-1-main-500);
  background: var(--common-white);
}
.comp_chart_itmes .box_top .btn_close {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-500);
  background-color: var(--common-white);
}
.comp_chart_itmes .box_top .btn_close i {
  color: var(--grey-500);
  font-size: var(--fi--sm);
}
.comp_chart_itmes .shadow_box {
  padding: 15px;
}
.comp_chart_itmes .shadow_box + .shadow_box {
  margin-top: 20px;
}
.comp_chart_itmes .chart_area {
  min-height: 140px;
}


/* 연관어분석 */
.relation_cate {
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
.relation_cate:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}
.relation_cate.cate1:before {background: var(--data-color-red);}
.relation_cate.cate2:before {background: var(--data-color-orange);}
.relation_cate.cate3:before {background: var(--data-color-yellow);}
.relation_cate.cate4:before {background: var(--data-color-olive);}
.relation_cate.cate5:before {background: var(--data-color-green);}
.relation_cate.cate6:before {background: var(--data-color-teal);}
.relation_cate.cate7:before {background: var(--data-color-sky);}

/* top 인용문 */
.top_quotation_list {
  margin-bottom: -20px;
  counter-reset: quot_count;
}
.top_quotation_list li {
  position: relative;
  padding: 0 0 20px 35px;
}
.top_quotation_list li:not(:first-child) {
  margin-top: 10px;
}
.top_quotation_list li:not(:last-child) {
  border-bottom: 1px solid var(--grey-300);
}
.top_quotation_list li:before {
  counter-increment: quot_count;
  content: counter(quot_count) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--primary-1-main-500);
}
.top_quotation_list li .keyword {
  display: block;
  margin-bottom: 10px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
}
.top_quotation_list li .desc {
  padding: 10px;
  font-size: var(--text-md);
  line-height: var(--lh-default);
  color: var(--text-primary);
  font-weight: var(--fw-mid);
  border-radius: var(--radius-box);
  background: rgba(91, 74, 211, 0.05);
}

/*********** 정책이슈 ***********/
/* 메인 > 법률과 이슈 */
.section_poll_issue{background: var(--grey-200);}
.section_poll_issue .main_title {position: relative;}
.section_poll_issue .main_title .balloon_box {
  position: absolute;
  left: calc(100% - 4px);
  top: -12px;
  height: 18px;
  padding: 0 12px;
  font-size: var(--text-xs);
  line-height: var(--lh-default);
  color: var(--common-white);
  font-weight: var(--fw-bold);
  font-family: var(--font-Pretendard);
  background: var(--primary-1-main-500);
  border-radius: 10px;
}
.section_poll_issue .main_title .balloon_box:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 14px;
  width: 9px;
  height: 9px;
  background: url(../images/piece_balloon.svg) no-repeat center center/100%;
}


/* 정책이슈 검색영역 */
.form_control.polissue_srch_box {display: flex;justify-content: space-between;}
.form_control.polissue_srch_box .pol_srch_Area{position: relative;width: 100%;}
.form_control.polissue_srch_box .pol_srch_Area input[type="text"]{position: relative;
    width: 100%;
    height: 48px;
    padding: 0 10px;
    font-size: var(--text-md);
    font-weight: var(--fw-mid);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-sm);
    background: var(--common-white);
    color: var(--grey-700);
    font-family: var(--font-Pretendard);
}

.form_control.polissue_srch_box button{position: absolute;top: 12px;right: 10px;color: var(--primary-1-main-500);}
.form_control.polissue_srch_box .btn_refresh {position: relative;top: 0;right:0; width:54px;height: 48px;padding: 0;border-radius: 6px;color: var(--common-white);background: var(--grey-600);border: 0;box-sizing: border-box;}
.form_control.polissue_srch_box .btn_refresh i {color: var(--common-white);font-size: 24px;line-height: 1;}
.form_control.polissue_srch_box .hidden {position: absolute;visibility: hidden;overflow: hidden;height: 0;line-height: 0;width: 0;margin: 0;padding: 0;font: 0/0 Arial;}

/* 정책이슈 검색필터 */
.search_filter_box{margin-top:10px;padding:10px 10px 5px; border:1px solid var(--grey-300); background: var(--grey-100);border-radius: var(--radius-box);}
.search_filter_box .srch_title{margin-bottom:10px; color: var(--grey-600);font-size: var(--text-sm);font-weight: var(--fw-bold);line-height: 21px;}

.polissue_items_wrap {position: relative;min-height: 75px;}
.polissue_items_wrap:not([data-event='accordion']) {padding-bottom: 30px;}
.polissue_items_wrap .filterview_items {position: relative;}
.polissue_items_wrap[data-event='accordion'] .filterview_items {overflow: hidden;max-height: max-content;}
.polissue_items_wrap[data-event='accordion'].open .filterview_items {max-height: max-content;}
.polissue_items_wrap .btn_more {position: absolute;bottom: 0;right: 0;left: 0;width: 100%;padding: 10px 0;background:var(--grey-100); z-index: 3;}
.polissue_items_wrap .btn_more > span.text{display:none;}
.polissue_items_wrap.open .btn_more {position: static;background: var(--common-transparent);}
.polissue_items_wrap.open .btn_more > span.text{display:none;}
.polissue_items_wrap .btn_default.btn_more [class*='ri']{color: var(--primary-1-main-500);}

.polissue_items_wrap .filterview_items .filterView{display: flex;flex-direction: column;align-items: flex-start;max-height: 28rem;overflow-y: scroll;}
.polissue_items_wrap .filterview_items .filterView > a {display: inline-block;margin-bottom: 0.5rem;padding: 0.4rem 1rem;background: var(--common-white);border:1px solid var(--grey-300); border-radius: 50px;color: var(--grey-500);}
.polissue_items_wrap .filterview_items .filterView > a > em {font-size: var(--text-xs);font-weight: var(--font-weightM);color: var(--grey-500);}
.polissue_items_wrap .filterview_items .filterView > a > span {font-size: var(--text-sm);font-weight: var(--fw-bold);color: var(--grey-700);}
.polissue_items_wrap .filterview_items .filterView > a > .btnLine {margin-left: 0.4rem;color: var(--grey-600);}
.polissue_items_wrap .filterview_items .filterView > a > .btnM {width: 2rem;height: 2rem;}
.polissue_items_wrap .filterview_items .filterView > a > .btnLine > .ri-close-line {font-size: 18px;color: var(--grey-700);vertical-align: middle;}

/* 정책이슈명 + 주제분류 영역 */
.polIssue_top{width: calc(100% + 40px);margin: 0 -20px;padding: 10px 0 0;text-align: center;}
.polIssue_top > h2{padding:7px 0;background:var(--primary-1-main-500); color: var(--common-white); font-size: var(--text-xlg);font-weight: var(--fw-bold);}
.polIssue_top > .polIssuCategory{display: flex;margin:5px 20px;justify-content: flex-end;}
.polIssue_top > .polIssuCategory p.subTxt{margin-right:8px; font-size:12px; font-weight:900;color: var(--grey-400);}
.polIssue_top > .polIssuCategory p.subTit{margin-right:4px;font-size:14px; font-weight:700;color: var(--grey-700);}
.polIssue_top > .polIssuCategory > span{line-height:1;margin-right:4px;}

/* 중간 메뉴 */
.polissue_menu_slide {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(100% + 40px);
  margin: 0 -20px 15px;
  padding: 10px 20px;
  background: var(--common-white);
}
.polissue_menu_slide .btn_control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: var(--grey-600);
}
.polissue_menu_slide .btn_control:disabled {
  color: var(--grey-400);
}
.polissue_menu_slide .slide_cont {
  display: flex;
  gap: 5px;
  overflow: auto;
  flex: 1;
}
.polissue_menu_slide .slide_cont::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.polissue_menu_slide .slide_cont button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 8px 10px 12px;
  white-space: nowrap;
  color: var(--grey-400);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  border-radius: var(--radius-sm);
  background: transparent;
}
.polissue_menu_slide .slide_cont button.selected {
  background: var(--primary-1-main-500);
  color: var(--common-white);
  font-weight: var(--fw-bold);
}
.polissue_menu_slide .slide_cont button.selected:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--common-white);
}

/* 정책이슈 상세 */
.sw_polissue_detail {position: relative;overflow: hidden;padding-bottom: 10px;}
.sw_polissue_detail .detail_info{display:flex;flex-direction: column;margin-bottom:20px;}
.sw_polissue_detail .detail_info .cont_first{display: flex;flex-direction: column;align-items: flex-start;margin-bottom:10px;}
.sw_polissue_detail .detail_info .cont_first > em{height:20px; margin-bottom:4px; padding:0 5px; font-size: var(--text-sm);color: var(--common-white);font-weight: var(--fw-mid);line-height: 21px; background: var(--grey-700);border-radius:2px;}
.sw_polissue_detail .detail_info .cont_first > span{font-size: var(--text-md);color: var(--text-primary);font-weight: var(--fw-mid);line-height: 24px;}
.sw_polissue_detail .detail_info .cont_second{display: flex;}
.sw_polissue_detail .detail_info .cont_second > em{width:70px;height:18px;margin-bottom:5px; font-size: var(--text-xs);color: var(--grey-700);font-weight: var(--fw-mid);line-height: 18px; background: var(--grey-300);border-radius:2px;text-align:center;}
.sw_polissue_detail .detail_info .cont_second > span{margin-left:8px; font-size: var(--text-sm);color: var(--text-primary);font-weight: var(--fw-bold);line-height: 21px;}
.sw_polissue_detail .detail_info .cont_third{display: flex;}
.sw_polissue_detail .detail_info .cont_third > em{width:70px;height:18px;font-size: var(--text-xs);color: var(--grey-700);font-weight: var(--fw-mid);line-height: 18px; background: var(--grey-300);border-radius:2px;text-align:center;}
.sw_polissue_detail .detail_info .cont_third > span{margin-left:8px; font-size: var(--text-sm);color: var(--text-primary);font-weight: var(--fw-bold);line-height: 21px;}

.sw_polissue_detail .swiper_slide {overflow: hidden;}
.sw_polissue_detail .shadow_box.title_box {margin-bottom: 5px;padding: 0;}
.sw_polissue_detail .shadow_box.title_box .acco_title_box {position: relative;margin-bottom: 5px;padding: 10px 30px;text-align: center;}
.sw_polissue_detail .shadow_box.title_box .acco_title_box .title {display: block;font-size: var(--text-lg);line-height: var(--lh-sm);font-weight: var(--fw-bold);color: var(--primary-1-main-500);}
.sw_polissue_detail .shadow_box.title_box .acco_title_box .icons {display: flex;gap: 5px;position: absolute;right: 20px;top: calc(50% - 12px);}
.sw_polissue_detail .shadow_box.title_box .acco_title_box [class*='ri-'] {font-size: 24px;color: var(--grey-600);transition: transform 0.3s ease;}
.sw_polissue_detail .shadow_box.title_box.open .acco_title_box i.ri-arrow-down-s-line {transform: rotate(-180deg);}
.sw_polissue_detail .title_box .cont {padding: 10px 20px 20px;border-top: 1px solid var(--grey-300);}
.sw_polissue_detail .title_box .cont .article {margin-bottom: 10px;font-size: var(--text-md);color: var(--text-primary);line-height: 1.7;font-weight: var(--fw-mid);}
.sw_polissue_detail .title_box .cont .text_caution {margin-bottom: 10px;}
.sw_polissue_detail .title_box .cont .text_caution i {font-size: var(--fi--xs);}
.sw_polissue_detail .title_box .cont .relative_polissue{color: var(--text-primary);font-size: var(--text-md);font-weight: var(--fw-mid);line-height: 27.2px;}

/* 이슈키워드 상세 */
.issue_Kwd_Area .polIssue_chartArea{height:296px;}
.issue_Kwd_Area > h2{margin-bottom:20px; font-size:var(--text-lg);font-weight: var(--fw-bold);color: var(--text-primary);}
.issue_Kwd_Area > em.caution{display: flex;align-items: center;justify-content: center;font-size:var(--text-xs);font-weight: var(--fw-normal);color: var(--grey-600);}
.issue_Kwd_Area > em.caution i{margin-right:2px;}
.issue_Kwd_Area > .noIssueTxt {background: #fff; margin-bottom:20px;padding:0;}
.issue_Kwd_Area > .noIssueTxt > .no-data {display: flex;align-items: center;justify-content: center;text-align: center;width: 100%;height: 100%;font-size: 16px;font-weight: 500;color: var(--grey-600);direction: ltr !important;}

/* 언급량추이 상세 */
.mentions_trend_area .mentions_chartArea{height:308px;}
.mentions_trend_area > h2{margin-bottom:20px; font-size:var(--text-lg);font-weight: var(--fw-bold);color: var(--text-primary);}
.mentions_trend_area .inner_tab.type1 .click {display: inline-flex;border-radius: 5px;padding: 0;background: var(--grey-200, #f4f6f8);margin-bottom: 20px;}
.mentions_trend_area .inner_tab.type1 .click button {display: flex;box-sizing: border-box;
  padding: 4px 20px 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 3V19H21V21H3V3H5ZM19.9393 5.93934L22.0607 8.06066L16 14.1213L13 11.121L9.06066 15.0607L6.93934 12.9393L13 6.87868L16 9.879L19.9393 5.93934Z' fill='%23919EAB'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -99999px;
  border:none;
}
.mentions_trend_area .inner_tab.type1 .click button.active {
  background-color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  box-shadow: 2px 3px 6px 0px rgba(91, 74, 211, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 3V19H21V21H3V3H5ZM19.9393 5.93934L22.0607 8.06066L16 14.1213L13 11.121L9.06066 15.0607L6.93934 12.9393L13 6.87868L16 9.879L19.9393 5.93934Z' fill='%235B4AD3'/%3E%3C/svg%3E");
}
.mentions_trend_area .inner_tab.type1 .click button:nth-child(2) {
	border:none;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2 12H4V21H2V12ZM5 14H7V21H5V14ZM16 8H18V21H16V8ZM19 10H21V21H19V10ZM9 2H11V21H9V2ZM12 4H14V21H12V4Z' fill='%23919EAB'/%3E%3C/svg%3E");
}
.mentions_trend_area .inner_tab.type1 .click button:nth-child(3) {
  border:none;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M22.0714 19.5H3.6428V2.7857C3.6428 2.66784 3.54638 2.57141 3.42852 2.57141H1.92852C1.81066 2.57141 1.71423 2.66784 1.71423 2.7857V21.2143C1.71423 21.3321 1.81066 21.4286 1.92852 21.4286H22.0714C22.1892 21.4286 22.2857 21.3321 22.2857 21.2143V19.7143C22.2857 19.5964 22.1892 19.5 22.0714 19.5ZM5.57138 17.7857H19.9285C20.0464 17.7857 20.1428 17.6893 20.1428 17.5714V5.89284C20.1428 5.69998 19.9098 5.60623 19.7758 5.74016L14.1428 11.3732L10.7839 8.05177C10.7436 8.01189 10.6892 7.98952 10.6325 7.98952C10.5759 7.98952 10.5215 8.01189 10.4812 8.05177L5.4187 13.1303C5.39903 13.15 5.38347 13.1734 5.37289 13.1992C5.36232 13.2249 5.35695 13.2525 5.35709 13.2803V17.5714C5.35709 17.6893 5.45352 17.7857 5.57138 17.7857Z' fill='%23919EAB'/%3E%3C/svg%3E");
}
.mentions_trend_area .inner_tab.type1 .click button.active:nth-child(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2 12H4V21H2V12ZM5 14H7V21H5V14ZM16 8H18V21H16V8ZM19 10H21V21H19V10ZM9 2H11V21H9V2ZM12 4H14V21H12V4Z' fill='%235B4AD3'/%3E%3C/svg%3E");
}
.mentions_trend_area .inner_tab.type1 .click button.active:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M22.0714 19.5H3.6428V2.7857C3.6428 2.66784 3.54638 2.57141 3.42852 2.57141H1.92852C1.81066 2.57141 1.71423 2.66784 1.71423 2.7857V21.2143C1.71423 21.3321 1.81066 21.4286 1.92852 21.4286H22.0714C22.1892 21.4286 22.2857 21.3321 22.2857 21.2143V19.7143C22.2857 19.5964 22.1892 19.5 22.0714 19.5ZM5.57138 17.7857H19.9285C20.0464 17.7857 20.1428 17.6893 20.1428 17.5714V5.89284C20.1428 5.69998 19.9098 5.60623 19.7758 5.74016L14.1428 11.3732L10.7839 8.05177C10.7436 8.01189 10.6892 7.98952 10.6325 7.98952C10.5759 7.98952 10.5215 8.01189 10.4812 8.05177L5.4187 13.1303C5.39903 13.15 5.38347 13.1734 5.37289 13.1992C5.36232 13.2249 5.35695 13.2525 5.35709 13.2803V17.5714C5.35709 17.6893 5.45352 17.7857 5.57138 17.7857Z' fill='%235B4AD3'/%3E%3C/svg%3E");
}

/* 연관어분석 상세 */
/* 소장자료 상세 */

/* 정책이슈 검색 */
.pol_issue_list_wrap .list_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--grey-300);
}
.pol_issue_list_wrap .list_top .list_title {
  color: var(--grey-600);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
}
.pol_issue_list_wrap .list_item {
  display: flex;
  overflow: hidden;
}
.pol_issue_items .list_item + .list_item {
  margin-top: 20px;
}
.pol_issue_items .list_item a {
  display: flex;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--text-primary);
}
.pol_issue_items .list_item .num {
  flex: none;
  width: auto;
  min-width: 25px;
  height: 25px;
  margin-right: 10px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  text-align: center;
}
.pol_issue_items .list_item .num:after {
  content: ".";
  display: inline-block;
}
.pol_issue_items .list_item .item_info {
  flex: 1 1 auto;
  overflow: hidden;
}
.pol_issue_items .list_item .item_info > * {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pol_issue_items .list_item .item_info > .title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
}
.pol_issue_items .list_item .item_info > .desc {
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.pol_srch_result .result_items .list_item {
  padding: 15px 0 20px;
  border-bottom: 1px solid var(--grey-300);
}
.pol_srch_result .result_items .list_item .title {
  display: block;
  margin-bottom: 5px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
}
.pol_srch_result .result_items .list_item .cont {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  color: var(--grey-600);
  font-size: var(--text-md);
  line-height: var(--lh-default);
  text-overflow: ellipsis;
}

/* 주요이슈분석 보기 팝업 */
.aisrchArea{background: #fff;}
.aisrchArea div{display: flex;align-items: center;}
.aisrchArea p{margin-right:5px;font-weight:900;font-size:16px;color:var(--common-font-color);}
.aisrchArea span{position: relative;top: 8px;display:inline-flex;width:24px;height:24px; }
.aisrchArea span.ai_ico{width:20px;height:20px;}
.aisrchArea span.ai_ico:before{
  content: '';
  display: block;
  position: absolute;
  left: -2px;
  top: -4px;
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9ImNvbnRhY3QvbWVzc2FnZV8zX2ZpbGwiPgo8cGF0aCBpZD0ibWVzc2FnZV8zX2ZpbGwiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMuNSAzQzE4LjE5NDQgMyAyMiA2LjgwNTU4IDIyIDExLjVDMjIgMTYuMTk0NCAxOC4xOTQ0IDIwIDEzLjUgMjBIMTNWMjAuOTlDMTMgMjEuNTQ3OCAxMi41NDc2IDIyLjAwMDUgMTEuOTg5IDIyQzkuNTI4ODQgMjEuOTk3NiA3LjAzNjkxIDIxLjE3NzEgNS4xNDY0NyAxOS40OTU5QzMuMjM3NzEgMTcuNzk4NCAyLjAwMjIgMTUuMjc0OSAyIDEyLjAwODdWMTEuNUMyIDYuODA1NTggNS44MDU1OCAzIDEwLjUgM0gxMy41Wk04LjUgMTBDNy42NzE1NyAxMCA3IDEwLjY3MTYgNyAxMS41QzcgMTIuMzI4NCA3LjY3MTU3IDEzIDguNSAxM0M5LjMyODQzIDEzIDEwIDEyLjMyODQgMTAgMTEuNUMxMCAxMC42NzE2IDkuMzI4NDMgMTAgOC41IDEwWk0xNS41IDEwQzE0LjY3MTYgMTAgMTQgMTAuNjcxNiAxNCAxMS41QzE0IDEyLjMyODQgMTQuNjcxNiAxMyAxNS41IDEzQzE2LjMyODQgMTMgMTcgMTIuMzI4NCAxNyAxMS41QzE3IDEwLjY3MTYgMTYuMzI4NCAxMCAxNS41IDEwWiIgZmlsbD0iIzBFMUY3MyIvPgo8L2c+Cjwvc3ZnPgo=');
}
.aisrchArea p > sup{font-size:8px;}
.aisrchArea > .mention_cont > .srchTxt{width:100%;margin-top:10px; padding:10px 20px;border-radius:5px;background:var(--primary-110);}
.aisrchArea > .mention_cont > .srchTxt > a{color: var(--primary-1-main-500);text-decoration:underline;}

/* 법률이슈 */
/* 법률이슈 검색 */
.law_issue_list_wrap .list_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--grey-300);
}
.law_issue_list_wrap .list_top .list_title {
  color: var(--grey-600);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
}
.law_issue_items .list_item {
  display: flex;
  overflow: hidden;
}
.law_issue_items .list_item + .list_item {
  margin-top: 20px;
}
.law_issue_items .list_item a {
  display: flex;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--text-primary);
}
.law_issue_items .list_item .num {
  flex: none;
  width: auto;
  min-width: 25px;
  height: 25px;
  margin-right: 10px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  text-align: center;
}
.law_issue_items .list_item .num:after {
  content: ".";
  display: inline-block;
}
.law_issue_items .list_item .item_info {
  flex: 1 1 auto;
  overflow: hidden;
}
.law_issue_items .list_item .item_info > * {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.law_issue_items .list_item .item_info > .title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
}
.law_issue_items .list_item .item_info > .desc {
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.keyboard_area {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  margin-top: 30px;
}
.keyboard_area.grid7 {
  grid-template-columns: repeat(7, 1fr);
}
.keyboard_area .btn_keyboard {
  height: 36px;
  padding: 0;
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--text-primary);
  font-family: var(--font-Pretendard);
  border: 1px solid var(--grey-300);
  background: var(--common-white);
  box-sizing: border-box;
}
.keyboard_area .btn_keyboard.selected {
  background: var(--grey-800);
  border-color: var(--grey-800);
  color: var(--common-white);
  font-weight: var(--fw-bold);
}
.keyboard_area .btn_keyboard.glow_2 {
  grid-column: 1 / 3;
}
.keyboard_area.grid7 .btn_keyboard.glow_2:last-child {
  grid-column: 3 / 5;
}
.multi_selectd_wrap {
  position: relative;
  width: 100%;
  cursor: pointer;
  flex: 1 1 auto;
}
.multi_selectd_wrap .selected_box {
  position: relative;
  height: 55px;
  padding: 10px 55px 10px 15px;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  background: var(--common-white);
}
.multi_selectd_wrap .selected_box:after {
  content: "";
}
.multi_selectd_wrap .selected_box i {
  position: absolute;
  right: 15px;
  top: calc(50% - 12px);
  color: var(--grey-700);
}
.multi_selectd_wrap .selected_cont {
  display: flex;
  align-items: center;
  gap: 5px; 
  overflow: hidden;
}
.multi_selectd_wrap .selected_item {
  flex: none;
  padding: 6px 15px;
  color: var(--common-white);
  border-radius: 5px;
  border: 1px solid var(--primary-1-main-500);
  background-color: var(--primary-1-main-500);
}
.multi_selectd_wrap .ellip {
  width: 30px;
  text-align: center;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
  color: var(--grey-600);
}
.multi_selectd_wrap .select_items_box {
  /* display: none; */
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  padding: var(--padding-box);
  border: 1px solid var(--primary-1-main-500);
  border-radius: var(--radius-sm);
  background: var(--common-white);
  box-shadow: var(--shadow-select);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.multi_selectd_wrap.is_open .select_items_box {
  /* display: block; */
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.multi_selectd_wrap .select_items_box .check_item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.checkbox_box_type input {
  position: absolute;
}
.checkbox_box_type label {
  display: inline-flex;
  align-items: center;
  height: 35px;
  padding: 0 15px;
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  color: var(--grey-600);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-500);
  background: var(--grey-100);
}
.checkbox_box_type label.label_all {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}
.checkbox_box_type input:checked + label {
  color: var(--common-white);
  font-weight: 700;
  border: 1px solid var(--primary-1-main-500);
  background: var(--primary-1-main-500);
}
.multi_selectd_wrap.is_open .btns_area {
 margin: 20px -20px -20px; 
}
.multi_selectd_wrap.is_open .btns_area button {
  border-radius: 0;
}

.law_srch_result .result_items .list_item {
  padding: 15px 0 20px;
  border-bottom: 1px solid var(--grey-300);
}
.law_srch_result .result_items .list_item .title {
  display: block;
  margin-bottom: 5px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
}
.law_srch_result .result_items .list_item .cont {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  color: var(--grey-600);
  font-size: var(--text-md);
  line-height: var(--lh-default);
  text-overflow: ellipsis;
}
/* 이시각브리핑 */
.briefing_box {
  padding: 10px;
  border-radius: var(--radius-box);
  background: var(--grey-100);
}
.briefing_box .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-sm);
  color: var(--text-primary);
}
.briefing_box .conts .ellipsis {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: break-all;
  text-overflow: ellipsis;
  font-size: var(--text-md);
  line-height: var(--lh-default);
  color: var(--grey-600);
}
.briefing_box.open .conts .ellipsis {
  display: block;
}
.briefing_box .conts .ellipsis a {
  color: var(--primary-2-main-500);
}
.briefing_box .relation_news {
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5px;
}
.briefing_box .relation_news em {
  margin-right: 5px;
  color: var(--grey-700);
  font-size: var(--text-xs);
  line-height: var(--lh-default);
  font-weight: var(--fw-bold);
}
.briefing_box .relation_news .count {
  width: 26px;
  height: 26px;
  padding: 5px 0 0 7px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: var(--lh-default);
  color: var(--primary-1-main-500);
  background: url(../images/icon_file_copy.svg) no-repeat center center/100%;
}
.briefing_box .relation_news_list {
  display: none;
  margin-top: 5px;
}
.briefing_box.open .relation_news_list {
  display: block;
}
.briefing_box .relation_news_list a {
  display: block;
  overflow: hidden;
  position: relative;
  padding-left: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--primary-2-main-500);
  font-size: var(--text-sm);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
}
.briefing_box .relation_news_list a + a {
  margin-top: 3px;
}
.briefing_box .relation_news_list a:before {
  content: "┗";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-Pretendard);
  color: var(--text-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
}
.timeline_items_wrap .briefing_box .btn_more {
  position: static;
  margin-top: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

/* 국회N분석 */
.assem_mem_list li {
  border-radius: var(--radius-box);
  background: var(--common-white);
  box-shadow: var(--shadow-default);
}
.assem_mem_list li + li {
  margin-top: 10px;
}
.assem_mem_list a {
  display: flex;
  padding: 15px;
}
.assem_mem_list .thumb {
  flex: 0 0 110px;
  height: 150px;
  /* border: 1px solid rgba(145, 158, 171, 0.12); */
  background: var(--grey-100);
}
.assem_mem_list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.assem_mem_list .info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-left: 24px;
  padding: 10px 0;
}
.assem_mem_list .info .name {
  display: block;
  font-size: 20px;
  line-height: var(--lh-sm);
  color: var(--text-primary);
  font-weight: var(--fw-mid);
}
.assem_mem_list .info .party {
  flex: 1 1 auto;
  color: var(--grey-700);
  font-weight: 400;
}
.assem_mem_list .info [class*=label_] {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  min-height: 21px;
  word-break: break-all;
  margin-top: 5px;
  padding: 0 10px;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  font-weight: var(--fw-mid);
  border-radius: 2px;
}
.assem_mem_list .info .label_light {
  color: var(--grey-600);
  border: 1px solid var(--grey-300);
  background: var(--common-white);
}
.assem_mem_list .info .label_dark {
  color: var(--common-white);
  background: var(--grey-700);
}
.assem_mem_list_2 .list_item {
  display: flex;
  padding: 23px 20px;
  box-shadow: var(--shadow-default);
  border-radius: var(--radius-box);
  background: var(--common-white);
}
.assem_mem_list_2 .list_item > a {
  display: flex;
  flex: 1 1 auto;
  margin: -23px -20px;
  padding: 23px 20px;
}
.assem_mem_list_2 .list_item + .list_item {
  margin-top: 10px;
}
.assem_mem_list_2 .num {
  display: inline-block;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  text-align: center;
  line-height: 25px;
  background: var(--grey-200);
  border-radius: 4px;
}
.assem_mem_list_2 .info {
  flex: 1 1 auto;
  margin-left: 10px;
  color: var(--grey-700);
  line-height: var(--lh-default);
  font-size: var(--text-md);
}
.assem_mem_list_2 .info .name {
  font-weight: var(--fw-mid);
}
.assem_mem_list_2 .info .name strong {
  margin-right: 6px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}
.assem_mem_list_2 .info .local {
  margin-top: 5px;
  
}
.assem_mem_list_2 .graph_area {
  position: relative;
  flex: 0 0 50px;
}
.assem_mem_list_2 .graph_info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--grey-700);
}
.assem_mem_list_2 .circle_graph {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  transform: rotate(90deg) scale(1,-1);
}
.assem_mem_list_2 .circle_graph svg {
  width: 100%;
  height: 100%;
}

.layer_wrap {
  position: relative;
}
.layer_wrap .layer_cont {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-1-main-500);
  background: var(--common-white);
  box-shadow: var(--shadow-select);
  z-index: 1;
}
button.btn_filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: var(--primary-150);
}
button.btn_filter i {
  font-size: 22px;
  color: var(--primary-1-main-500);
}
.layer_sel_channel {
  width: 250px;
}
.layer_sel_channel .checkbox_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.layer_sel_channel .checkbox_wrap li {
  white-space: nowrap;
}
.layer_sel_channel .checkbox_wrap .all label {
  color: var(--text-primary);
}
/* 국회의원 소개 상세 */
.assem_intro .figure_area {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-300);
}
.assem_intro .figure_area .thumb {
  flex: 0 0 100px;
  height: 137px;
  margin: 0 20px;
  overflow: hidden;
}
.assem_intro .figure_area .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.assem_intro .figure_area .caption {
  margin-left: 10px;
  font-size: var(--text-xlg);
  color: var(--text-primary);
  line-height: var(--lh-sm);
  font-weight: var(--fw-bold);
  word-break: keep-all;
}
.assem_intro .assem_info dl {
  display: flex;
  margin-top: 10px;
}
.assem_intro .assem_info dt {
  flex: 0 0 80px;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  color: var(--grey-500);
  font-weight: var(--fw-bold);
}
.assem_intro .assem_info dd {
  font-size: var(--text-md);
  font-weight: var(--fw-mid);
  line-height: var(--lh-default);
  color: var(--text-primary);
}
.assem_badge {
  display: inline-flex;
  align-items: center;
  height: 21px;
  padding: 0 10px;
  margin-left: 5px;
  font-size: var(--text-sm);
  line-height: var(--lh-default);
  color: var(--common-white);
  font-weight: var(--fw-bold);
  border-radius: 12px;
  background: var(--primary-1-main-500);
}

@media screen and (max-width: 374px) {
  /* grid */
  .grid_area.sm_column2 {
    grid-template-columns: repeat(2, 1fr);
  }
  /* form */
  .form_control {
    flex-wrap: wrap;
  }
  .form_control > .input_text,
  .form_control > .form_select {
    width: 100%;
  }
  .datepicker_wrap {
    flex-wrap: wrap;
  }
  .datepicker_wrap small {
    display: none;
  }

  /* main */
  .menubar_nav.open ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .menubar_nav.open li:nth-child(2n + 1):before {
    display: none;
  }
  .menubar_nav.open li:nth-child(2n):before {
    display: inline-block;
  }
}

/* datepicker */
.ui-datepicker {
  border: 0 !important;
  border-radius: 10px;
  box-shadow: 0px 24px 48px 0px rgba(145, 158, 171, 0.16);
  box-sizing: border-box;
  padding: 10px;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  appearance: auto;
  -webkit-appearance: auto;
  width: 90px;
  margin: 0 2px;
  font-family: var(--font-Pretendard);
  border-radius: 5px;
  border: 1px solid var(--grey-300);
  background: var(--common-white);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  appearance: auto;
  -webkit-appearance: auto;
  width: 72px;
  margin: 0 2px;
  font-family: var(--font-Pretendard);
  border-radius: 5px;
  border: 1px solid var(--grey-300);
  background: var(--common-white);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
}

.ui-datepicker-prev::before {
  font-family: remixicon;
  content: "\ea64";
  color: #000;
  font-size: 20px;
  position: absolute;
  left: 3px;
  top: 5px;
  font-weight: 700;
}
.ui-datepicker-next::before {
  font-family: remixicon;
  content: "\ea6e";
  color: #000;
  font-size: 20px;
  position: absolute;
  right: 3px;
  top: 5px;
  font-weight: 700;
}
.ui-datepicker .ui-widget-header {
  margin-bottom: 10px;
  padding: 5px 0;
  background: var(--grey-100);
  border: 0;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  opacity: 0;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover {
  background: transparent;
  border: 0;
  font-weight: 700;
  top: 2px;
  left: 2px;
}
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  background: transparent;
  border: 0;
  font-weight: 700;
  top: 2px;
  right: 2px;
}
.ui-state-hover {
  border: 0;
  background-color: transparent;
  font-weight: 700;
  color: initial;
}
.ui-datepicker th {
  padding: 11px 2px;
  color: var(--grey-600);
  font-size: var(--text-xs);
  font-weight: var(--fw-mid);
  border: 0;
  background-color: var(--common-white);
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  padding: 8px .2em;
  color: var(--grey-800);
  font-size: var(--text-sm);
  font-weight: var(--fw-normal);
  background: var(--common-white);
  text-align: center;
}
.ui-datepicker td a.ui-state-hover {
  background: #E6F7FF;
  border: 1px solid #e6f7ff !important;
  border-radius: 5px;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-state-active,
.ui-widget-content .ui-state-active:hover {
  color: var(--common-white);
  font-weight: var(--fw-normal);
  background: #0aaffc;
  border: 1px solid #0aaffc !important;
  border-radius: 5px;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: .2;
}

/* 2024-11-08 */
/* AI서치 안내 & 질문 안내 css */
.section_contents.sec_ai_srch .guideArea{display:flex;flex-direction: column; align-items:center;justify-content: space-between;margin: 20px 20px 110px;padding:0;background: transparent;}
/* AI서치 안내 */
.section_contents.sec_ai_srch .guideTxt{display:flex;flex-direction: column;align-items: flex-start;height:208px; border-radius:20px; box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);background: linear-gradient(150deg, rgba(255,255,255,1) 70%, rgba(238,234,254,1) 100%);}
.section_contents.sec_ai_srch .guideTxt > p{position:relative; margin:30px 0 10px 30px;font-size: 30px;font-weight: 900; color: transparent; background: linear-gradient(-90deg, #4AA2D3 0%, #5761D3 74%, #5B4AD3 100%); background-clip: text; -webkit-background-clip: text;}
.section_contents.sec_ai_srch .guideTxt > p > span{position:absolute;top: -18px;left: -15px;width: 58px;height: 21px;font-size: 14px;font-weight: 700;background-color:var(--primary-1-main-500);border-radius:50px;color:var(--common-white);text-align:center;line-height:1.5;}
.section_contents.sec_ai_srch .guideTxt > p > span:after{content:'';position:absolute;left: 8px;bottom: -5px;border-left: 12px solid transparent;border-right: 0px solid transparent;border-top: 8px solid var(--primary-1-main-500);}
.section_contents.sec_ai_srch .guideTxt > .contTxt{margin-bottom:10px;padding:0 30px;font-size: 18px;font-weight: 500;color: var(--text-primary);}
.section_contents.sec_ai_srch .guideTxt > .subTxt{display:block; position:relative;padding:0 30px 0 40px;font-size: 12px;font-weight: 500;color: var(--grey-500);}
.section_contents.sec_ai_srch .guideTxt > .subTxt:before{display:inline-block; content:'*';position:absolute; top:0;left:30px;}
.section_contents.sec_ai_srch .guideTxt > .guide_img{width:335px;height:100px; margin:0 auto; background: url(/resources/mobile/images/ai_info_bg.png) 0 0 no-repeat; background-size: 335px 100px;}

/* 질문 안내 */
.section_contents.sec_ai_srch .questionTxt{width:100%;margin:22px 20px;}
.section_contents.sec_ai_srch .questionTxt > p{margin-bottom:10px;}
.section_contents.sec_ai_srch .questionTxt > p > i.ri-chat-quote-line{ margin-right:4px;font-size:24px;}
.section_contents.sec_ai_srch .questionTxt > p > span{font-size: 14px;font-weight: 700;color: var(--common-font-color);vertical-align: text-top;} 
.section_contents.sec_ai_srch .questionTxt > ul li{display: flex;margin-bottom:8px;border-radius:10px;}
.section_contents.sec_ai_srch .questionTxt > ul li:first-child{border:1px solid #C4B9FA;background:#F9F8FE;}
.section_contents.sec_ai_srch .questionTxt > ul li:nth-child(2){border:1px solid #ABC5F9;background:#F6F9FE;}
.section_contents.sec_ai_srch .questionTxt > ul li:last-child{margin-bottom:0;border:1px solid #7FCBA1;background:#F7FFFB;}
.section_contents.sec_ai_srch .questionTxt > ul li:hover{box-shadow: 10px 18px 30px 0px rgba(0, 0, 0, 0.1);}
.section_contents.sec_ai_srch .questionTxt > ul li > a{width:100%; overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-size: 14px;font-weight: 700;color: var(--common-font-color);text-align:center;line-height:4;height:54px;}

/* AI가 추천해주는 질문 목록 영역 */
.sec_ai_answer .recommend_question{display:block; padding:20px;border:1px solid var(--grey-300);background:var(--common-white);border-bottom-left-radius:10px;border-bottom-right-radius:10px;overflow:hidden;}
.sec_ai_answer .recommend_question > .questionTit{margin-bottom:10px;}
.sec_ai_answer .recommend_question > .questionTit > i.ri-chat-quote-line{ margin-right:4px;font-size:24px;}
.sec_ai_answer .recommend_question > .questionTit > span{font-size: 14px;font-weight: 700;color: var(--common-font-color);vertical-align: text-top;} 
.sec_ai_answer .recommend_question > .questionList > ul{display: flex;justify-content: center;flex-wrap: wrap;flex-direction: column;overflow-x: auto;overflow-y: hidden;width:352px;height:37px;padding-right: 40px;}
.sec_ai_answer .recommend_question > .questionList > ul li{width: 210px;margin-right: 10px;padding:8px 12px;border-radius:5px;background:var(--primary-150);overflow: hidden;white-space: nowrap;text-overflow: ellipsis;text-align:center;}
.sec_ai_answer .recommend_question > .questionList > ul li:last-child{margin-right:20px;}
.sec_ai_answer .recommend_question > .questionList > ul li a{font-size: 14px;font-weight: 700;color: var(--primary-1-main-500);text-align:center;line-height: 21px;}
.sec_ai_answer .recommend_question > .questionList > ul::-webkit-scrollbar {display: none; /* for Chrome, Safari, and Opera */}

/* 긍정 + 중립 + 부정 css */
.detailView{display: block;margin-top:50px;padding:0;}
.detailView .cardWrap ul{position:relative;display: inline-block;width:100%;}
.detailView .cardWrap ul li:last-child{margin-bottom:0;}

/* type1 긍정 */
.detailView .cardWrap ul li.type1{display:block;}
.detailView .cardWrap ul li.type1 > .icoWrap{position:relative; display: flex;justify-content: center; height: 60px;background: transparent;top: -35px;left: 0;padding: 0 20px;margin: 0;}
.detailView .cardWrap ul li.type1 > .icoWrap > .ico{position:absolute; top:0;left:40%;width:60px;height:60px;border-radius:50px;background:var(--primary-2-main-500);box-shadow: 3px 7px 15px 0px rgba(44, 83, 199, 0.35);z-index:9999;}
.detailView .cardWrap ul li.type1 > .icoWrap > .ico > i.ri-emotion-happy-line{display: block;padding: 7px;font-size: 45px;color:var(--common-white);}
.detailView .cardWrap ul li.type1 > .icoWrap > .ico > .numView{
	position:absolute;
	top: -6px;
	right: 0;
	border:1px solid var(--primary-2-main-500);
	border-radius: 50px;
	background:var(--common-white);
	width: 20px;
	height: 20px;
	padding-top: 3px;
	font-size:12px;
	font-weight:900;
	color:var(--primary-2-main-500);
	text-align:center;
}

/* swiper css */
/* type1 긍정 */
.detailView .cardWrap ul li.type1 > .swiper.mySwiper{}
.detailView .cardWrap ul li.type1 > .swiper .swiper-button-next{border:0px solid red;}
.detailView .cardWrap ul li.type1 > .swiper .swiper-button-prev{border:0px solid red;}
.detailView .cardWrap ul li.type1 > .swiper {height: 400px;margin-top:-60px;padding:0;background: var(--primary-210);border-radius:15px;}
.detailView .cardWrap ul li.type1 > .swiper > div:first-child{position:relative;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide {display: flex;flex-direction: row;align-items: flex-start;justify-content: center;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont{position:relative;display: flex;flex-direction: column;width: 100%;padding:0;margin:0;align-items: center;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .contArea{position:relative;height:255px; min-height:240px; overflow-x:hidden; overflow-y:auto; padding:40px 20px 0; font-size:var(--text-md);font-weight:var(--fw-mid);color:var(--text-primary); line-height:24px;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .line{display:block;width: 90%;height: 1px;margin:15px 0;background: var(--grey-300);}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea{display: flex;flex-direction: column;width: 90%;padding: 0;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea > span{font-size:var(--text-xs);font-weight:var(--fw-bold);color:var(--grey-600); line-height:18px;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList{display: inline-block;margin:0;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li{position:relative; min-width:236px; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li:before{content: '';display: block;position: absolute;left: 0;top: 8px;width: 3px;height: 3px;border-radius: 100%;background: var(--grey-700);}
.detailView .cardWrap ul li.type1 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li > a{padding-top:0; padding-left:8px;font-size:14px;font-weight:700;color:var(--primary-2-main-500); line-height:21px;}
.detailView .cardWrap ul li.type1 > .nodata{display: flex;align-items: center;justify-content: center;height: 200px;margin-top: -60px;padding: 0;background: #F6F9FE;border-radius: 15px;font-weight:500;font-size:14px;color:var(--grey-500);}

/* type2 중립 */
.detailView .cardWrap ul li.type2{display:block;}
.detailView .cardWrap ul li.type2 > .icoWrap{position:relative; display: flex;justify-content: center; height: 60px;background: transparent;top: -20px;left: 0;padding: 0 20px;margin: 0;}
.detailView .cardWrap ul li.type2 > .icoWrap > .ico{position:absolute; top:0;left:40%;width:60px;height:60px;border-radius:50px;background:var(--orange-main);box-shadow: 3px 7px 15px 0px rgba(255, 156, 7, 0.35);z-index:9999;}
.detailView .cardWrap ul li.type2 > .icoWrap > .ico > i.ri-emotion-happy-line{display: block;padding: 7px;font-size: 45px;color:var(--common-white);}
.detailView .cardWrap ul li.type2 > .icoWrap > .ico > .numView{
	position:absolute;
	top: -6px;
	right: 0;
	border:1px solid var(--orange-main);
	border-radius: 50px;
	background:var(--common-white);
	width: 20px;
	height: 20px;
	padding-top: 3px;
	font-size:12px;
	font-weight:900;
	color:var(--orange-main);
	text-align:center;
}

/* type2 중립 */
.detailView .cardWrap ul li.type2 > .swiper {height: 400px;margin-top:-50px;padding:0;background: #FFFBED;border-radius:15px;}
.detailView .cardWrap ul li.type2 > .swiper > div:first-child{position:relative;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide {display: flex;flex-direction: row;align-items: flex-start;justify-content: center;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont{position:relative;display: flex;flex-direction: column;width: 100%;padding:0;margin:0;align-items: center;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .contArea{position:relative;height:255px; min-height:240px; overflow-x:hidden; overflow-y:auto; padding:40px 20px 0; font-size:var(--text-md);font-weight:var(--fw-mid);color:var(--text-primary); line-height:24px;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .line{display:block;width: 90%;height: 1px;margin:15px 0;background: var(--grey-300);}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea{display: flex;flex-direction: column;width: 90%;padding: 0;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea > span{font-size:var(--text-xs);font-weight:var(--fw-bold);color:var(--grey-600); line-height:18px;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList{display: inline-block;margin:0;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li{position:relative; min-width:236px; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li:before{content: '';display: block;position: absolute;left: 0;top: 8px;width: 3px;height: 3px;border-radius: 100%;background: var(--grey-700);}
.detailView .cardWrap ul li.type2 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li > a{padding-top:0; padding-left:8px;font-size:14px;font-weight:700;color:var(--primary-2-main-500); line-height:21px;}
.detailView .cardWrap ul li.type2 > .nodata{display: flex;align-items: center;justify-content: center;height: 200px;margin-top: -60px;padding: 0;background: #FFFBED;border-radius: 15px;font-weight:500;font-size:14px;color:var(--grey-500);}

/* type3 부정 */
.detailView .cardWrap ul li.type3{display:block;}
.detailView .cardWrap ul li.type3 > .icoWrap{position:relative; display: flex;justify-content: center; height: 60px;background: transparent;top: -20px;left: 0;padding: 0 20px;margin: 0;}
.detailView .cardWrap ul li.type3 > .icoWrap > .ico{position:absolute; top:0;left:40%;width:60px;height:60px;border-radius:50px;background:var(--red-main);box-shadow: 3px 7px 15px 0px rgba(252, 50, 50, 0.35);z-index:9999;}
.detailView .cardWrap ul li.type3 > .icoWrap > .ico > i.ri-emotion-happy-line{display: block;padding: 7px;font-size: 45px;color:var(--common-white);}
.detailView .cardWrap ul li.type3 > .icoWrap > .ico > .numView{
	position:absolute;
	top: -6px;
	right: 0;
	border:1px solid var(--red-main);
	border-radius: 50px;
	background:var(--common-white);
	width: 20px;
	height: 20px;
	padding-top: 3px;
	font-size:12px;
	font-weight:900;
	color:var(--red-main);
	text-align:center;
}

/* type3 부정 */
.detailView .cardWrap ul li.type3 > .swiper {height: 400px;margin-top:-50px;padding:0;background: #FFF2EB;border-radius:15px;}
.detailView .cardWrap ul li.type3 > .swiper > div:first-child{position:relative;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide {display: flex;flex-direction: row;align-items: flex-start;justify-content: center;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont{position:relative;display: flex;flex-direction: column;width: 100%;padding:0;margin:0;align-items: center;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .contArea{position:relative;height:255px; min-height:240px; overflow-x:hidden; overflow-y:auto; padding:40px 20px 0; font-size:var(--text-md);font-weight:var(--fw-mid);color:var(--text-primary); line-height:24px;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .line{display:block;width: 90%;height: 1px;margin:15px 0;background: var(--grey-300);}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea{display: flex;flex-direction: column;width: 90%;padding: 0;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea > span{font-size:var(--text-xs);font-weight:var(--fw-bold);color:var(--grey-600); line-height:18px;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList{display: inline-block;margin:0;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li{position:relative; min-width:236px; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li:before{content: '';display: block;position: absolute;left: 0;top: 8px;width: 3px;height: 3px;border-radius: 100%;background: var(--grey-700);}
.detailView .cardWrap ul li.type3 > .swiper > .swiper-wrapper > .swiper-slide > .cont > .newsArea .newsList > li > a{padding-top:0; padding-left:8px;font-size:14px;font-weight:700;color:var(--primary-2-main-500); line-height:21px;}
.detailView .cardWrap ul li.type3 > .nodata{display: flex;align-items: center;justify-content: center;height: 200px;margin-top: -60px;padding: 0;background: #FFF2EB;border-radius: 15px;font-weight:500;font-size:14px;color:var(--grey-500);}

/* 간격 */
.detailView .cardWrap ul li.type1 + .type2{margin-top:40px;}
.detailView .cardWrap ul li.type2 + .type3{margin-top:40px;}

/* 주제 필터 팝업 */
.form_control.pol_filter {display: flex;justify-content: space-between;gap: 10px;}
.form_control.pol_filter .pol_srch_pop{position: relative;width:100%;}
.form_control.pol_filter .pol_srch_pop input[type="text"]{
	position: relative;
	width:100%;
	height: 48px;
	padding: 0 10px;
	font-size: var(--text-md);
	font-weight: var(--fw-mid);
	border: 1px solid var(--grey-300);
	border-radius: var(--radius-sm);
	background: var(--common-white);
	color: var(--grey-700);
	font-family: var(--font-Pretendard);
}
.form_control.pol_filter .pol_srch_pop button{position: absolute;top:12px;right:10px;color:var(--primary-1-main-500);}
.form_control.pol_filter .pol_srch_pop button.btn_filter i {font-size: 22px;color: var(--common-white);}

/* 주제필터 검색 자동완성 UI */
.form_control.pol_filter .pol_srch_pop .auto_polsrchView{display:block;position:absolute;margin-top:5px; width:100%;z-index:9999; background: var(--common-white);}
.form_control.pol_filter .pol_srch_pop .auto_polsrchView ul{display:block; height:250px; padding:20px 0; border-radius: 6px;border:1px solid var(--grey-300); overflow-y:auto;}
.form_control.pol_filter .pol_srch_pop .auto_polsrchView ul li{display: inline-block;width:100%; padding:10px 20px; font-size: var(--text-md);font-weight:var(--fw-normal); color: var(--grey-600);line-height:24px;}
.form_control.pol_filter .pol_srch_pop .auto_polsrchView .nodata{ padding:15px; border-radius: 6px;border:1px solid var(--grey-300);font-size: var(--text-sm);font-weight:var(--fw-normal); color: var(--grey-600);line-height:24px;}

.form_control.pol_filter .btn_basic.btn_primary {color: var(--common-white);border: 1px solid var(--primary-1-main-500);border-radius: 5px;background: var(--primary-1-main-500);}
.form_control.pol_filter .btn_basic.btn_primary.btn_shadow {box-shadow: 0px 8px 16px 0px rgba(91, 74, 211, 0.24);}
.form_control.pol_filter .btn_basic.btn_primary_light {color: var(--primary-1-main-500);border: 1px solid var(--primary-1100);background: var(--primary-1100);}
.form_control.pol_filter .btn_basic.btn_primary_line {color: var(--primary-1-main-500);border: 1px solid var(--primary-1-main-500);background: var(--primary-110);}
.form_control.pol_filter .btn_basic.btn_white {color: var(--primary-1-main-500);border: 1px solid var(--primary-1-main-500);background: var(--common-white);}
.form_control.pol_filter .btn_basic.btn_gray {color: var(--grey-600);border: 1px solid var(--grey-500);background: var(--grey-100);}
.form_control.pol_filter .btn_basic.btn_transparent {color: var(--primary-1-main-500);border: 1px solid var(--primary-1-main-500);background: var(--common-transparent);}
.form_control.pol_filter .btn_basic.btn_lg {min-width:80px;height: 48px;padding: 0;font-size: var(--text-md);}
.form_control.pol_filter .btn_basic.btn_lg > span{padding: 0 8px;font-size: var(--text-sm);font-weight: var(--fw-bold);}
.form_control.pol_filter .btn_basic i[class*='ri-'] {margin-left: 5px;font-size: 22px;color: var(--common-white);}
.form_control.pol_filter .btn_basic.btn_sm i[class*='ri-'] {font-size: var(--fi--xs);}
.form_control.pol_filter .btn_basic.selected {background: var(--primary-1-main-500);color: var(--common-white);}

/* 탭영역 - 주제 + 부처/상임위 선택 */
/* tab */
.pol_tab_wrap .tab_items {display: flex;}
.pol_tab_wrap .tab_items li {flex: 1;border-top: 2px solid var(--grey-400);}
.pol_tab_wrap .tab_items li.on {border-top-color: var(--primary-1-main-500);}
.pol_tab_wrap .tab_items a {display: flex;align-items: center;justify-content: center;height: 45px; background:var(--grey-200); font-size: var(--text-md);font-weight: var(--fw-mid);line-height: var(--lh-default);color: var(--grey-400);}
.pol_tab_wrap .tab_items .on a {font-weight: var(--fw-bold);color: var(--primary-1-main-500);background:var(--common-white); }

.pol_tab_wrap .tabView .checkbox_wrap{display: flex;flex-wrap: wrap;gap: 9px;margin-top:20px;}
.pol_tab_wrap .tabView .checkbox_wrap + .checkbox_wrap{margin-top:20px;}
.pol_tab_wrap .tabView .checkbox_wrap .allchkArea{display:block;width:100%;}
.pol_tab_wrap .tabView .checkbox_wrap .allchkArea > em.title{margin-right:10px; font-size: var(--text-md);font-weight:var(--fw-bold);color: var(--grey-600); }
.pol_tab_wrap .tabView .checkbox_wrap .allchkArea > .check_box_type label.check_all {width:110px;height:26px;background:var(--grey-700);border-radius:5px;color: var(--common-white);font-size: var(--text-xs);font-weight:var(--fw-bold);}
.pol_tab_wrap .tabView .checkbox_wrap .allchkArea > .check_box_type label.check_all_committee{width:130px;height:26px;background:var(--grey-700);border-radius:5px;color: var(--common-white);font-size: var(--text-xs);font-weight:var(--fw-bold);}
.pol_tab_wrap .tabView .checkbox_wrap .allchkArea > .check_box_type label.checkall_ministry{width:130px;height:26px;background:var(--grey-700);border-radius:5px;color: var(--common-white);font-size: var(--text-xs);font-weight:var(--fw-bold);}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type.last_chk{margin-right: 170px;}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type input {position: absolute;opacity: 0;visibility: hidden;}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 33px;
  margin-bottom:5px;
  font-size: 14px;
  color: var(--grey-600);
  font-weight: 700;
  border: 1px solid var(--grey-500);
  background: var(--grey-100);
  border-radius: 5px;
  box-sizing: border-box;
}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type label [class*='ri-'] {display: none;margin-right: 10px;color: #fff;font-size: 22px;font-weight: 500;}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type label.check_all {color: var(--text-primary);font-weight: 900;}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type input:checked + label {color: var(--primary-1-main-500);}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type input:checked + label [class*='ri-'] {display: inline-block;}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type input:checked + label > span {position: relative;display: inline-block;padding-left: 32px;}
.pol_tab_wrap .tabView .checkbox_wrap .check_box_type input:checked + label > span:before {content: '\eb7b';font-family: 'remixicon';position: absolute;left: 0;top: 50%;margin-top: -11px;font-size: 22px;line-height: 1;font-weight: 400;}

/* 상임위원회 선택 항목 3개 나열 */
.pol_tab_wrap .tabView .checkbox_wrap_committee{display: flex;flex-wrap: wrap;gap: 9px;margin-top:20px;}
.pol_tab_wrap .tabView .checkbox_wrap_committee + .checkbox_wrap{margin-top:20px;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .allchkArea{display:block;width:100%;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .allchkArea > em.title{margin-right:10px; font-size: var(--text-md);font-weight:var(--fw-bold);color: var(--grey-600); }
.pol_tab_wrap .tabView .checkbox_wrap_committee .allchkArea > .check_box_type label.check_all {width:110px;height:26px;background:var(--grey-700);border-radius:5px;color: var(--common-white);font-size: var(--text-xs);font-weight:var(--fw-bold);}
.pol_tab_wrap .tabView .checkbox_wrap_committee .allchkArea > .check_box_type label.check_all_committee{width:130px;height:26px;background:var(--grey-700);border-radius:5px;color: var(--common-white);font-size: var(--text-xs);font-weight:var(--fw-bold);}
.pol_tab_wrap .tabView .checkbox_wrap_committee .allchkArea > .check_box_type label.checkall_ministry{width:130px;height:26px;background:var(--grey-700);border-radius:5px;color: var(--common-white);font-size: var(--text-xs);font-weight:var(--fw-bold);}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type input {position: absolute;opacity: 0;visibility: hidden;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 33px;
  font-size: 14px;
  color: var(--grey-600);
  font-weight: 700;
  border: 1px solid var(--grey-500);
  background: var(--grey-100);
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 5px;
}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type label [class*='ri-'] {display: none;margin-right: 10px;color: #fff;font-size: 22px;font-weight: 500;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type label.check_all {color: var(--text-primary);font-weight: 900;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type input:checked + label {color: var(--primary-1-main-500);}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type input:checked + label [class*='ri-'] {display: inline-block;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type input:checked + label > span {position: relative;display: inline-block;padding-left: 32px;}
.pol_tab_wrap .tabView .checkbox_wrap_committee .check_box_type input:checked + label > span:before {content: '\eb7b';font-family: 'remixicon';position: absolute;left: 0;top: 50%;margin-top: -11px;font-size: 22px;line-height: 1;font-weight: 400;}

/* 주관부처 스크롤 */
.pol_tab_wrap .tabView .checkbox_wrap .overflowArea{display: flex;flex-wrap: wrap;gap: 5px;height:auto;max-height:463px;overflow:scroll;}

