@charset "UTF-8";
/*rem 기본 세팅*/

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/*---------------- reset ----------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea, xmp {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: "Pretendard Variable";
}

body {
    position: relative;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

a {
    color: #151515;
    text-decoration: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

b {
    font-weight: bold;
}

xmp {
    display: inline;
    white-space: unset;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
    font-family: "Pretendard Variable";
}

i {
    font-style: normal;
}

input {
    outline: none;
    border: 0;
    font-family: "Pretendard Variable";
}

/* 텍스트 숨김 */
.hide,
legend {
    overflow: hidden;
    display: block;
    position: absolute;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
}

.bg_filter::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 5;
}

/* 스크롤 막기 */
.scr {
    overflow: hidden;
}

/* 말줄임표 */

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis_3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 텍스트 드래그 방지 */
.undraggable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-use-select: none;
    user-select: none;
}

/*---------------- component ----------------*/

/* input */
input::-ms-clear,
input::-ms-reveal{
	display:none;
    width:0;
    height:0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
	display:none;
}

input[type=text] {
    width: 100%;
    padding: 1.375rem 1.25rem;
    font-size: 1rem;
    letter-spacing: -0.29px;
    border-radius: 0.625rem;
    box-sizing: border-box;
    border: solid 1px #e3e3e3;
}

input[type=text]::placeholder,
textarea::placeholder,
input[type=password]::placeholder {
    font-weight: normal;
    color: #9ea4af;
}

input[type=text]:focus,
textarea:focus {
    border: solid 1px #2d59ed;
    background: #fff;
}

/* checkbox */
.custom_chk_box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.5rem;
    row-gap: 0.75rem;
    align-items: center;
}

.custom_chk {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom_chk span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url(/images/egovframework/admin/btn-checkbox-empty@2x.png) no-repeat;
    background-size: contain;
    cursor: pointer;
}

.custom_chk input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.custom_chk input[type=checkbox]:checked+span {
    background: url(/images/egovframework/admin/btn-checkbox-on@2x.png) no-repeat 100%;
    background-size: contain;
}
.custom_chk input[type=checkbox]:disabled {
    cursor: default;
}
.custom_chk input[type=checkbox]:disabled+span {
    background: url(/images/egovframework/admin/btn-checkbox-on-2@2x.png) no-repeat 100%;
    background-size: contain;
}
.custom_chk input[type=checkbox]:disabled+span+label {
    color: #151515 !important;
    cursor: default;
}

.custom_chk label {
    cursor: pointer;
    margin: 0!important;
    color: #1d1d1d;
    font-weight: 500;
}

/* radio */
.custom_radio_box {
    position: relative;
    margin-right: 0.5rem;
}

.custom_radio_box span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url(/images/egovframework/admin/btn-radio-off@2x.png) no-repeat;
    background-size: contain;
    cursor: pointer;
}

.custom_radio_box input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.custom_radio_box input[type=radio]:checked+span {
    background: url(/images/egovframework/admin/btn-radio-on@2x.png) no-repeat;
    background-size: contain;
}

.custom_radio_box input[type=radio]:checked+span+label,
.custom_chk input[type=checkbox]:checked+span+label {
    color: #2d59ed;
}

/* select box */
select {
    height: 3.75rem;
    padding: 1.125rem 1.25rem;
    font-size: 1.1875rem;
    border: solid 1px #d8d8d8;
    border-radius: 0.625rem;
    color: #2d2d2d;
    cursor: pointer;
    appearance: none;
    background: url(/images/egovframework/admin/ic-realtime-select-off@2x.png) no-repeat 92% 50%/12px auto;
    background-color: #fff;
    outline: none;
    cursor: pointer;
}
select::-ms-expand {
    display: none;
}

.custom_select {
    height: 3.75rem;
    padding: 1.125rem 1.25rem;
    font-size: 1.1875rem;
    border: solid 1px #808080;
    border-radius: 0.3125rem;
    color: #2d2d2d;
    cursor: pointer;
    appearance: none;
    background: url(/images/egovframework/admin/ic-dropdown@2x.png) no-repeat 92% 50%/1rem auto;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    font-family: "Pretendard Variable";
}

select::-ms-expand {
    display: none;
}

.pop_confirm .btn_drop {
  background: url(/images/egovframework/admin/ic-dropdown@2x.png) no-repeat 97% 50%/1rem auto;
}

.pop_confirm .btn_drop.on {
  background: url(/images/egovframework/admin/ic-dropdown-up@2x.png) no-repeat 97% 50%/1rem auto;
}

/* pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.125rem;
}

.pagination li {
    display: flex;
    align-items: center;
}

.pagination li:first-child,
.pagination li:last-child {
    column-gap: 0.3125rem;
}

.pagination li:first-child {
    margin-right: 1rem;
}

.pagination li:last-child {
    margin-left: 1rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 0.9375rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.pagination a.active {
    color: #1d1d1d;
    text-decoration: underline;
}

.pagination .page_first {
    background: url(/images/egovframework/admin/btn-page-first@2x.png) no-repeat;
    background-size: contain;
}

.pagination .page_prevrow {
    background: url(/images/egovframework/admin/btn-page-prevrow@2x.png) no-repeat;
    background-size: contain;
}

.pagination .page_prev {
    background: url(/images/egovframework/admin/btn-page-prev@2x.png) no-repeat;
    background-size: contain;
}

.pagination .page_next {
    background: url(/images/egovframework/admin/btn-page-next@2x.png) no-repeat;
    background-size: contain;
}

.pagination .page_nextrow {
    background: url(/images/egovframework/admin/btn-page-nextrow@2x.png) no-repeat;
    background-size: contain;
}

.pagination .page_last {
    background: url(/images/egovframework/admin/btn-page-last@2x.png) no-repeat;
    background-size: contain;
}

.pagination .sq_page_prev {
    background: url(/images/egovframework/admin/btn-page-prev_sq@2x.png) no-repeat;
    background-size: contain;
}

.pagination .sq_page_next {
    background: url(/images/egovframework/admin/btn-page-next_sq@2x.png) no-repeat;
    background-size: contain;
}

/* popup */
.pop_background {
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.popup {
    position: relative;
    width: min(23.75rem, 100% - 2.5rem);
    max-height: 50rem;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    border-radius: 0.625rem;
    background-color: #fff;
    border: solid 0.5px #697284;
}

.popup p {
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.43;
    letter-spacing: -0.72px;
    word-wrap: break-word;
    color: #0c1b38;
}

.popup p.title {
    font-weight: bold;
}

.popup.line_1 p {
    margin-top: 0.75rem;
}

.popup.line_1 .pop_btn {
    margin-top: 3.375rem;
}

.popup span {
    display: block;
    margin-top: 1.625rem;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.42;
    letter-spacing: -0.29px;
    word-wrap: break-word;
    color: #0c1b38;
}

.popup .pop_btn {
    display: flex;
    column-gap: 0.75rem;
    margin-top: 2.1875rem;
}

.popup button {
    padding: 1.219rem 0rem;
    border-radius: 0.313rem;
}

.pop_btn button {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 600;
}

.pop_background .input_con {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manag_popup {
    position: relative;
    width: min(31.25rem, 100% - 2.5rem);
    max-height: 50rem;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    border-radius: 0.625rem;
    background-color: #fff;
}
.manag_popup .input_con {
    margin-top: 1.625rem;
}
.manag_popup .manag_popup_btn{
    display: flex;
    column-gap: 0.75rem;
    margin-top: 2.1875rem;
    justify-content: center;
}
.manag_popup_btn button{
    width: 8.938rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.excel_box {
    margin-top: 1.625rem;
}
.excel_box .uplode_btn{
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    background: #118548;
    border-radius: 0.313rem;
    border: 0;
}
.excel_box .uplode_btn::after {
    content: "";
    background: url(/images/egovframework/admin/ic-upload@2x.png) no-repeat;
    width: 0.75rem;
    height: 0.938rem;
    background-position: center;
    background-size: contain;
    margin-left: 0.5rem;
}

.excel_box .dwlode_btn{
    display: inline-block;
    color: #555;
    line-height: normal;
    letter-spacing: normal;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom: 1px solid #555 !important;
    margin-top: 0.625rem;
    width: unset;
    padding: unset;
    border-radius: 0;
    border: 0;
}

.input_con textarea {
    height: 10.375rem;
    padding: 1.25rem;
    resize: none;
    border-radius: 0.625rem;
    outline: solid 1px #e3e3e3;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: -0.29px;
}

/* button */
button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 0rem;
    line-height: 1;
    font-size: 1.3125rem;
    font-weight: 600;
    letter-spacing: -0.32px;
    border: solid 1px #ddd;
    border-radius: 0.625rem;
    background: #fff;
    color: #2d59ed;
}

button.blue_btn {
    border: 0;
    background-color: #2d59ed;
    color: #fff;
}

button.red_btn {
    border: 0;
    background-color: #ec401c;
    color: #fff;
}

button.gray_btn {
    border-color: #dadada !important;
    background-color: #dadada;
    color: #fff;
}

button.cancle_btn {
    border-color: #9ea4af!important;
    background-color: #9ea4af;
    color: #fff;
}

button.line_btn {
    width: 8.875rem !important;
    font-weight: bold !important;
    border-radius: 0.625rem;
    border: solid 1px #2d59ed;
    background-color: #fff;
    color: #2d59ed !important;
}

button.line_gray_btn {
    font-weight: bold !important;
    border-radius: 0.625rem;
    border: solid 1px #d8d8d8 !important;
    background-color: #fff;
    color: #717171 !important;
}

button.min_gray_btn {
    width: 8rem;
    height: 3.75rem !important;
    font-size: 1.0625rem;
    color: #333;
    font-weight: normal !important;
    border-radius: 0.625rem;
    border: solid 1px #d8d8d8 !important;
    background-color: #fff;
    color: #333 !important;
}

button.black_btn {
    font-size: 1.3125rem;
    font-weight: 500;
    border-color: #1d1d1d;
    color: #fff;
    background-color: #1d1d1d;
}

button.mid_btn {
    width: 46.25rem;
    margin: 0 auto;
    background-color: #2d59ed;
    color: #fff;
}
.quick_box button {
    width: unset;
    line-height: normal;
    border: 0;
    display: inline-block;
    letter-spacing: -0.23px;
    padding: 0.688rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    border-radius: 0.625rem;
}

.btn_list {
    display: flex;
    justify-content: center;
    column-gap: 0.75rem;
    margin-top: 2.5rem;
    box-sizing: border-box;
}
.btn_list button {
    width: 9.563rem;
    font-weight: 500;
    line-height: normal;
    border: 0;
    font-size: 1.188rem;
    padding: 1.25rem 0rem;
}

.tag {
    display: inline-block;
    padding: 0.1875rem 0.375rem;
    font-size: 0.875rem !important;
    font-weight: bold;
    line-height: 1;
    border-radius: 0.3125rem;
    background-color: #ec401c;
    color: #fff !important;
    cursor: pointer;
}

.b_tag {
    display: inline-block;
    padding: 0.3125rem 0.625rem;
    font-size: 1.1875rem !important;
    font-weight: bold;
    line-height: 1;
    border-radius: 0.3125rem;
    background-color: #ec401c;
    color: #fff !important;
    cursor: pointer;
}

.status_tag {
    display: inline-block;
    padding: 0.28125rem 1rem;
    font-size: 1.1875rem;
    font-weight: bold;
    letter-spacing: -0.29px;
    border-radius: 1rem;
}

.status_tag.blue {
    border: solid 1px #2d59ed;
    color: #2d59ed;
    background-color: rgba(45, 89, 237, 0.08);
}

.status_tag.red {
    border: solid 1px #ec401c;
    color: #ec401c;
    background-color: rgba(236, 64, 28, 0.08);
}

.status_tag.green {
    border: solid 1px #00bea2;
    color: #00bea2;
    background-color: rgba(0, 190, 162, 0.08);
}

.status_tag.gray {
    border: solid 1px #717171;
    color: #717171;
    background-color: rgba(113, 113, 113, 0.08);
}

.down_btn {
    display: inline-block;
    padding: 0.375rem 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.35px;
    line-height: 1;
    border-radius: 0.875rem;
    color: #001b77;
    background-color: rgba(229, 232, 242, 0.6117647059);
    cursor: pointer;
}

.down_btn::after {
    content: "";
    display: inline-block;
    width: 0.8125rem;
    height: 0.6875rem;
    margin-left: 0.4375rem;
    background: url(/images/egovframework/admin/ic-b-download@2x.png) no-repeat;
    background-size: contain;
}

.more_a {
    vertical-align: middle;
    line-height: 1;
    font-size: 0.9375rem;
    color: #2d59ed;
    cursor: pointer;
    z-index: 1;
}

.more_a::after {
    content: "";
    display: inline-block;
    width: 0.375rem;
    height: 0.625rem;
    margin-left: 0.5rem;
    margin-bottom: 0.0625rem;
    background: url(/images/egovframework/admin/ic-search-more@2x.png) no-repeat;
    background-size: cover;
}

.gray_more {
    font-size: 1.3125rem;
    border-radius: 0.625rem;
    border: 0;
    color: #fff;
    background-color: #8e9dba;
}

.tab {
    display: flex;
    margin-bottom: 2.5rem;
    border-radius: 0.625rem;
    overflow: hidden;
    background-color: #eef0f2;
}

.tab.work a {
    background-color: #fff;
}

.tab a {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0rem;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #7b7b7b;
    cursor: pointer;
}

.tab a.active {
    border-radius: 0.625rem;
    background: #fff;
    color: #333;
    border: solid 1px #d8d8d8;
}

.tab a.link::after {
    content: "";
    display: inline-block;
    width: 1.0625rem;
    height: 1.0625rem;
    margin-left: 0.5rem;
    /* background: url(/images/egovframework/admin/ic-uam-link-g@2x.png) no-repeat;
    background-size: cover; */
}

.input_box {
    position: relative;
}

.input_box .btn_clear {
    position: absolute;
    top: 3.75rem;
    transform: translateY(-50%);
    right: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: url(/images/egovframework/admin/ic-adminlogin-close.png) no-repeat;
    background-size: contain;
    cursor: pointer;
}

.flx_center {
    display: flex !important;
    align-items: center !important;
}
/*---------------- layout ----------------*/
.bx_1200 {
    width: min(75rem, 100% - 2.5rem);
    margin: 0 auto;
}

.bx_1440 {
    width: min(90rem, 100% - 2.5rem);
    margin: 0 auto;
}

.bx_1795 {
    width: min(112.1875rem, 100% - 2.5rem);
    margin: 0 auto;
}

/* padding */
.pt_55 {
    padding-top: 3.4375rem;
}

.pt_145 {
    padding-top: 9.0625rem;
}

.pb_160 {
    padding-bottom: 10rem;
}

.pb_80 {
    padding-bottom: 5rem;
}

.pb_40{
    padding-bottom: 2.5rem !important;
}

.pb_26{
    padding-bottom: 1.625rem !important;
}

.pb_0 {
    padding-bottom: 0rem !important;
}

.pl_0 {
    padding-left: 0 !important;
}

/* margin */
.m_0 {
    margin: 0 !important;
}

.mt_0 {
    margin-top: 0 !important;
}

.mt_28 {
    margin-top: 1.75rem !important;
}

.mt_30 {
    margin-top: 1.875rem !important;
}

.mt_32 {
    margin-top: 2rem !important;
}

.mt_44 {
    margin-top: 2.75rem !important;
}

.mt_50 {
    margin-top: 3.125rem;
}

.mt_60 {
    margin-top: 3.75rem !important;
}

.mt_64 {
    margin-top: 4rem !important;
}

.mt_92 {
    margin-top: 5.75rem !important;
}

.mt_100 {
    margin-top: 6.25rem !important;
}

.mt_120 {
    margin-top: 7.5rem !important;
}

.mt_145 {
    margin-top: 9.0625rem;
}

.mb_0 {
    margin-bottom: 0 !important;
}

.mb_20 {
    margin-bottom: 1.25rem !important;
}

.mb_30 {
    margin-bottom: 1.875rem !important;
}

.mb_55 {
    margin-bottom: 3.4375rem !important;
}

.mb_150 {
    margin-bottom: 9.375rem;
}

/*---------------- 공통 header ----------------*/
header {
    position: relative;
    height: 6.4375rem;
    background: #fff;
    border-bottom: 1px solid #f3f3f3;
    z-index: 30;
}

header .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

header .header_inner>ul {
    display: flex;
    align-items: center;
    height: 100%;
}

header .header_inner>ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 7.5rem;
    text-align: center;
    cursor: pointer;
}

header .header_inner>ul a {
    font-size: 1.4375rem;
    font-weight: bold;
    letter-spacing: -0.69px;
    color: #1d1d1d;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
header .header_inner>ul li:hover a {
    color: #2d59ed;
}
header .header_inner>ul a.active {
    color: #2d59ed;
}

header h1 {
    white-space: nowrap;
}

header h1 a {
    display: inline-block;
    width: 7.5rem;
    height: 2.8125rem;
    background: url(/images/egovframework/admin/img-logo@2x.png) no-repeat;
    background-size: contain !important;
    cursor: pointer;
}

header h1 .adminlogo {
    display: inline-block;
    font-size: 1.313rem;
    margin-left: 0.75rem;
    width: 3.375rem;
    height: 2.8125rem;
    cursor: pointer;
}

.header_usercon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.938rem;
    width: 12rem;
    white-space: nowrap;
}

.header_usercon a {
    display: block;
    height: 1.25rem;
}

.header_usercon .head_logcon {
    display: flex;
    gap: 0.25rem;
}

.header_usercon .head_logcon .time {
    color: #2d59ed;
}

.header_usercon .head_logcon .head_log::before {
    content: "";
    display: inline-block;
    width: 1.205rem;
    height: 1.125rem;
    background: url(/images/egovframework/admin/btn-login-time.png) no-repeat;
    background-size: contain;
}

.head_logcon .log_box {
    display: none;
}

.head_logcon .log_box .head_logset {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translate(-45%);
    box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0.875rem;
    border: solid 1px #e2e5e8;
    background-color: #fff;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 1.25rem;
    width: 13.625rem;
    gap: 0.375rem;
}

.head_logset::before {
    content: "";
    display: block;
    position: absolute;
    top: -0.125rem;
    left: 50%;
    width: 0.4375rem;
    height: 0.4375rem;
    background: #fff;
    border-right: 1px solid #e2e5e8;
    border-top: 1px solid #e2e5e8;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: rotate(-46deg) translateY(-50%);
}

.head_logset li {
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: -0.51px;
    color: #1d1d1d;
    padding: 0.5rem 1rem;
}

.head_logset li a {
    display: block;
    color: #fff;
    font-size: 0.875rem;
    height: 100%;
}

.head_logset .logout {
    border-radius: 0.5rem;
    background-color: #1d1d1d;
}

.head_logset .prol {
    border-radius: 0.5rem;
    background-color: #2d59ed;
}

/* lnb */
.lnb_bg {
    display: none;
    position: absolute;
    background: #000;
    opacity: 0.4;
    height: 100vh;
    width: 100%;
    top: 0;
    z-index: 9;
}

.lnb_bg.on {
    display: block;
}

.lnb {
    display: none;
    position: absolute;
    top: 6.4375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 105.125rem;
    z-index: 10;
    background: #fff;
}

.lnb.on {
    display: block;
}
.lnb:hover {
    display: block;
}
.lnb ul {
    display: flex;
    min-height: 8.75rem;
    height: 27.668rem;
}
.lnb ul li {
    flex: 1;
    max-width: 24.0625rem;
    width: 100%;
    padding: 2rem 1.75rem;
    border-right: 1px solid #edf0f1;
    text-align: center;
}
.lnb ul li>span {
    display: block;
    font-size: 1.125rem;
    color: #1d1d1d;
    white-space: nowrap;
    font-weight: 600;
    padding-bottom: 1rem;
}
.lnb ul li>a {
    display: block;
    font-size: 1.063rem;
    letter-spacing: -0.3px;
    white-space: nowrap;
    color: #697281;
    cursor: pointer;
    font-weight: 500;
    padding-bottom: 0.75rem;
}
.lnb ul li>a:hover {
    color: #2d59ed;
}
.lnb ul li>a.active {
    color: #2d59ed;
}



/* ---------------------로그인------------------- */
.login_wrap {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/images/egovframework/admin/img-login-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5.9375rem 0rem;
}

.login_wrap .login_box {
    padding: 4.25rem 3.75rem;
    border-radius: 0.625rem;
    background: #fff;
    width: 32.5rem;
}

.login_wrap .login_box .login_title h2 {
    background: url(/images/egovframework/admin/img-logo@2x.png) no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 4.329rem;
}

.login_wrap .login_box .login_title h3 {
    color: #1d1d1d;
    font-size: 1.313rem;
    font-weight: bold;
    margin: 3.5rem 0 2rem;
}

.login_wrap .login_box label {
    position: relative;
    font-weight: 600;
    color: #0c1b38;
    font-size: 0.938rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.625rem;

}

.login_wrap .login_box input {
    margin-bottom: 1.25rem;
    padding: 1.375rem 3rem 1.375rem 1.25rem;
    color: #0c1b38;
}

input[type=password] {
    width: 100%;
    font-size: 1rem;
    letter-spacing: -0.29px;
    border-radius: 0.625rem;
    box-sizing: border-box;
    border: solid 1px #e3e3e3;
}
input[type=password]:focus {
    border: solid 1px #2d59ed;
    background: #fff;
}

.login_box .input_box .btn_show {
    position: absolute;
    top: 4rem;
    transform: translateY(-50%);
    right: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: url(/images/egovframework/admin/ic-password-eye-off.png) no-repeat;
    background-size: contain;
    cursor: pointer;
}
.login_box .input_box .btn_show.on {
    background: url(/images/egovframework/admin/ic-password-eye-on@2x.png) no-repeat;
    background-size: contain;
}

/* 로그인화면 팝업 */
.pop_background .pop_open_img {
    position: relative;
}

.pop_background .pop_open_img img {
    height: 95vh;
}

.pop_background .pop_open_img .pop_close {
    position: absolute;
    width: 6.5rem;
    height: 3.75rem;
    background: url(/images/egovframework/admin/ic-calender-popup-close-red@2x.png) no-repeat;
    background-size: contain;
    cursor: pointer;
}

/* -----------------------main------------------------ */
.section_title {
    margin: 3.5rem auto 1.25rem;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -0.64px;
    color: #1d1d1d;
}
.section_sub_title {
    margin: 2rem auto 1.25rem;
    font-size: 1.563rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1d1d1d;
}
.mini_sub_title {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 1.188rem;
    font-weight: bold;
}

.mini_title {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1d;
}
.mini_title.right {
    text-align: right;
}
.mini_title.star::after {
    content: "*";
    color: #e83f3c;
    margin-left: 0.25rem;
}
.mini_title.tit_star::before {
    content: "*";
    color: #e83f3c;
    margin-right: 0.25rem;
}

/* option-board */
.border_white {
    padding: 2rem 2.75rem;
    border-radius: 0.625rem;
    border: solid 1px #e3e3e3;
    background-color: #fff;
}
.border_white p {
    padding-top: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.54;
    text-align: center;
    color: #697284;
}
.border_white ul li p.inp_val {
    padding-top: 0;
    font-size: 1rem;
    line-height: 1.38;
    text-align: left;
    color: #1d1d1d;
}
.border_white ul li {
    display: flex;
    margin-bottom: 0.75rem;
    align-items: center;
}
.border_white ul li:last-child {
    margin-bottom: 0;
}

.border_white ul li.flx_sta {
    align-items: flex-start;
}
.border_white ul li.aditor_veiw {
    flex-direction: column;
    row-gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.border_white ul li.aditor_veiw .textarea_box {
    width: 100% !important;
}
.border_white ul li.ali_sta {
    align-items: flex-start;
}
.border_white ul li.ali_sta .mini_title {
    margin-top: 1.313rem;
}
.border_white ul li label {
    margin: 0 2.75rem 0 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #1d1d1d;
}
.border_white ul.mt_20 {
    margin-top: 1.25rem;
}
.border_white .mini_title,
.border_white .mini_sub_title {
    margin: 0;
    width: 8.756rem;
}
.border_white ul li .date {
    height: unset;
    min-width: 21.875rem;
    padding: 1.094rem;
    border: solid 1px #e3e3e3;
    background-color: #fff;
    color: #1d1d1d;
    gap: 0;
    justify-content: space-between;
}
.border_white ul li .datepicker {
    width: unset;
    font-weight: normal;
}
.border_white ul li .date img {
    width: 1.5rem;
    height: 1.5rem;
}
.border_white ul li .text_box,
.border_white ul li .custom_chk_box {
    width: calc(100% - 8.756rem);
}
.border_white ul li .text_box input{
    padding: 1.25rem;
} 
.border_white ul li .text_box textarea{
    height: 11.25rem;
    padding: 1.25rem;
    width: 100%;
    resize: none;
    border-radius: 0.625rem;
    outline: solid 1px #e3e3e3;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: -0.29px;
} 

.border_white ul li.division02_con .dateDiv, .border_white ul li .dateDiv, .border_white.val_wrap .text_box {
	display:flex;
}

.border_white ul li .dropbox #ownerShip, .border_white ul li .dropbox #newsLetterType,
.border_white ul li .dropbox #newsSort, .border_white ul li .dropbox #publish,
.border_white ul li .dropbox #newsType {
	z-index:2;
}

.border_white ul li>.textarea_box {
    display: unset;
    align-items: unset;
}

.border_white ul li.act03_con {
    flex-wrap: wrap;
}

.border_white ul li.act03_con .option, .division_wrap ul li .option, .border_white ul li .option{
    display:flex;
    align-items: center;
}

.text_box.list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.25rem;
}
.text_box.keyword {
    column-gap:  1rem;
}

.border_white ul li .date.two {
    min-width: 4.625rem;
    display:block;
}

.border_white ul li #hourPicker, .border_white ul li #minutePicker{
	margin:auto 0.5rem;
	background: url(/images/egovframework/admin/ic-box-open@2x.png) no-repeat 84% 50% / 1rem auto;
	padding-right:2rem;
}

.border_white ul li .two .datepicker {
    width: 5.625rem;
}
li.con_two .date.two {
    margin-left: 0.5rem;
}
li.con_two .two .datepicker {
    width: 6.25rem !important;
}
.border_white ul li .date.two img {
    width: 1.125rem;
    height: 1.125rem;
}
.border_white input[type=search] {
    padding: 1.25rem;
    min-width: 21.875rem;
    border-radius: 0.625rem;
    border: solid 1px #e3e3e3;
    outline: none;
    height: 100%;
    font-size: 1rem;
    margin-right: 0.5rem;
}
.border_white .search_btn {
    padding: 1.172rem !important;
}
.border_white .search_btn img{
    width: 1.406rem;
    height: 1.406rem;
}
.border_white .text_box p{
    font-size: 1rem;
    font-weight: 500;
    color: #1d1d1d;
    padding: 0;
    line-height: normal;
    text-align: left;
}
.border_white .text_box.assort {
    flex-wrap: wrap;
    row-gap: 0.5rem;
}
.border_white .text_box.assort p {
    width: 100%;
}

.border_white.val_wrap ul li {
    margin-bottom: 1.25rem;
    align-items: flex-start;
}
.border_white.val_wrap ul li:last-child{
    margin-bottom: 0;
}
.border_white ul li div + .option {
    margin-left: 0.5rem;
}
.border_white ul li .option + .text_box {
    width: 50.125rem;
    margin-left: 0.5rem;
}
.border_white ul li .option + .date_box {
    margin-left: 0.5rem;
}

.border_white ul li>.date_box.d_n {
    display: none;
    align-items:center;
}
.date_box .date {
    display: block;
}
.date_box + .date_and {
    display: none;
}


.category_select {
    position: relative;
}
.category_select button {
    position: relative;
    min-width: 21.875rem;
    line-height: normal;
    padding: 1.25rem;
    font-size: 1rem;
    text-align: left;
    border-radius: 0.625rem;
    border: solid 1px #e3e3e3;
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    color: #1d1d1d;
    font-weight: normal;
}
.category_select button:after {
    content: "";
    position: absolute;
    display: inline-block;
    right: 1.25rem;
    top: 50%;
    width: 0.9375rem;
    height: 0.5rem;
    transform: translateY(-50%);
    background: url(/images/egovframework/admin/ic-box-open@2x.png) no-repeat center/100%;
}
.category_select button.wd_158 {
    min-width: 9.875rem;
}
.category_select.hei_au ul{
    height: auto;
    overflow-y: auto;    
}
.category_select ul {
    position: absolute;
    left: 0;
    flex-direction: column;
    height: 18.75rem;
    width: 100%;
    z-index: 1;
    margin-top: 0.3125rem;
    border-radius: 0.625rem;
    border: solid 1px #e3e3e3;
    background-color: white;
    box-sizing: border-box;
    overflow-y: scroll;
}
.category_select ul li {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #1d1d1d;
    cursor: pointer;
}
.category_select ul li:hover {
    font-weight: bold;
    color: #2d59ed;
    background-color: rgba(93, 82, 226, 0.1);
}
.category_select ul.hide {
    display: none;
}
.category_select ul::-webkit-scrollbar {
    width: 0.375rem;
}
.category_select ul::-webkit-scrollbar-thumb {
    height: 60%;
    border-radius: 0.625rem;
    background: #9ea4af;
}
.category_select ul.auto {
    height: auto;
    overflow-y: auto;
}

/* append */
.border_white ul li .app_area {
    display: block;
    width: calc(100% - 8.756rem);
}
.border_white ul li #typeDiv {
	display:flex;
}

.app_inp_box {
    display: flex;
    column-gap: 0.5rem;
}
.app_inp_box .app_inp {
    width: 21.875rem;
    padding: 1.25rem;
}

.file_display {
    color: #1d1d1d;
}
.file_display:nth-child(n+2) {
    padding-top: 1.063rem;
}
a.btn_file_cls {
    background: url(/images/egovframework/admin/btn-file-del@2x.png) no-repeat center/100%;
    padding: 0.5rem;
    background-size: contain;
    margin: 0 0.75rem 0 0.5rem;
    cursor: pointer;
}

button.appen {
    width: 5.375rem;
    color: #1d1d1d;
    padding: unset;
    line-height: normal;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem 0.25rem;
}
button.thumb_add_btn,
button.file_add_btn {
    color: #1d1d1d;
    line-height: normal;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem
}
.appfile_area {
	display:flex;
	align-items:center;
}
.thumb_box {
    color: #1d1d1d;
    line-height: normal;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.32px;
    background: #fff;
}

.app_inp_item {
    width: 17.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: solid 1px #e3e3e3;
    border-radius: 0.625rem;
}
.app_box {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.app_inp_item input {
    padding: 1.25rem 0 1.25rem 1.25rem;
}
.app_inp_item input,
.app_inp_item input[type=text]:focus {
    border: 0;
}
.app_inp_item .close_btn {
    width: 3.5rem;
    background: url(/images/egovframework/admin/btn-file-del@2x.png) no-repeat center 100%/1.25rem;
    background-position: center;
    padding: 1.25rem;
    border: 0;
}

.img_box {
    width: 12.5rem;
    height: 12.5rem;
}
.img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.625rem;
}

.textarea_box {
    width: calc(100% - 8.756rem);
}
.textarea_box img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.textarea_box p {
    padding-top: auto;
    font-size: unset;
    line-height: unset;
    text-align: unset;
    color: unset;
}
.textarea_box figure.media {
    width: 100%;
}

span.cap {
    color: #888888;
    font-size: 0.938rem;
    margin-left: 1.25rem;
}
span.cap.bottom {
    display: block;
    width: 100%;
    margin: 0.625rem 0 0 8.756rem;
}

/* table */
.sch_total{
    margin-top: 1.5rem;
    color: #2d2d2d;
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: -0.23px;
}

.result_none {
    padding: 6.25rem;
    text-align: center;
    border-bottom: 1px solid #e3e3e3;
}

.result_none img {
    width: 3.0625rem;
    height: 3.0625rem;
}

.result_none p {
    font-size: 1.125rem;
    line-height: 2.5;
    letter-spacing: -0.54px;
    color: #9ea4af;
}

.result_none.hide {
    display: none;
}

.con_section{
    display: flex;
    justify-content: center;
    background-color: #fafafa;
    border: solid 1px #e1e0e8;
    padding: 1.375rem;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
}

.con_section .count_memb{
    width: 12.375rem;
    border-right: solid 1px #e1e0e8;
    text-align: center;
}
.con_section .count_memb p{
    font-size: 0.938rem;
    font-weight: 500;
    color: #2d59ed;
}
.con_section .count_memb span{
    font-size: 1.375rem;
    font-weight: 600;
    color: #1d1d1d;
}
.count_memb:last-child{
    border: none;
}

.ic_plus_w {
    background: url(/images/egovframework/admin/btn-list-plus@2x.png) no-repeat center/100%;
    padding: 0 0.5rem;
    background-size: contain;
    margin-right: 0.5rem;
}
.ic_plus {
    background: url(/images/egovframework/admin/ic-file-plus@2x.png) no-repeat center/100%;
    padding: 0.375rem;
    background-size: contain;
    margin-right: 0.5rem;
}
.ic_minus_w {
    background: url(/images/egovframework/admin/ic-minus@2x.png) no-repeat center/100%;
    padding: 0 0.35rem;
    background-size: contain;
    margin-right: 0.5rem;
}
.ic_sett_w {
    background: url(/images/egovframework/admin/btn-menu-setting@2x.png) no-repeat center/100%;
    padding: 0 0.5rem;
    background-size: contain;
    margin-right: 0.5rem;
}
.ic_search_w {
    background: url(/images/egovframework/admin/ic-search@2x.png) no-repeat center/100%;
    padding: 0 0.5rem;
    background-size: contain;
    margin-right: 0.5rem;
}

.ic_dwon_w {
    background: url(/images/egovframework/admin/ic-down@2x.png) no-repeat center/100%;
    padding: 0 0.5rem;
    background-size: contain;
    margin-right: 0.5rem;
}

.btn_reset{
    width: unset;
    color: #717171;
    padding: unset;
    line-height: normal;
    font-weight: 500;
    font-size: 1rem;
    border: 0;
    height: 100%;
    margin-left: 1rem;
}
.ic_reset {
    background: url(/images/egovframework/admin/ic-search-refresh@2x.png) no-repeat center/100%;
    padding: 0.5rem;
    background-size: contain;
    margin-right: 0.5rem;
}

/* -------------- 조직도 상세 ------------------ */
.topcon_area {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3.125rem;
    box-sizing: border-box;
}
.topcon_area a,
.topcon_area button {
  width: unset;
  line-height: normal;
  border: 0;
  display: inline-block;
  letter-spacing: -0.23px;
  padding: 0.688rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0.625rem;
  background-color: #1d1d1d;
  cursor: pointer;
}
.topcon_area a.blue {
  background-color: #2d59ed;
}

.flex_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3.5rem 0 1.25rem;
}
.flex_box .section_title {
    margin: 0;
}

.flex_box button {
    width: unset;
    padding: 0.688rem 1rem;
    font-size: 0.938rem;
    font-weight: 500;
    line-height: normal;
}
.flex_box .ic_plus_w {
    padding: 0.35rem;
}

.cnr_line::after{
    content: '';
    display: block;
    border-top: 1px solid #e3e3e3;
    margin:2rem 0;
}


/* ------------ 메뉴관리 ------------- */
.acco_top {
    display: flex;
    column-gap: 0.938rem;
}
.acco_top li {
    flex: 1;
    text-align: center;
    background: #f4f4f4;
    border-radius: 0.625rem;
    padding: 1.219rem 0;
    color: #888;
    font-size: 0.875rem;
    font-weight: bold;
    letter-spacing: normal;
}

.border_acco {
    display: flex;
    flex-direction: column;
}

.acco_item {
    display: flex;
    border-bottom: 1px solid #e3e3e3;
    background-color: #fff;
    align-items: baseline;
    column-gap: 1.125rem;
}

.child_box {
    display: none;
}
.child {
    display: flex; 
    align-items: baseline;
    position: relative;
    column-gap: 1.125rem;
}
.child ul li {
    width: 21.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.625rem;
    padding: 0.625rem 1rem;
    position: relative;
    border: solid 1px #e3e3e3;
    margin: 1.144rem 1.144rem 0;
}
.child:last-child {
    margin-bottom: 1.144rem;
}

.acco_item .wid_4 {
    width: 15.563rem;
}
.acco_item .wid_2 {
    width: 34.563rem;
}

.acco_item .set_btn {
    background: url(/images/egovframework/admin/ic-level-setting@2x.png) no-repeat center/100%;
    width: 0.875rem;
    height: 0.938rem;
    background-size: contain;
    cursor: pointer;
    margin: 0.313rem 0;
}
.acco_item input[type=text]{
    padding: 0;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    font-weight: 600;
    color: #1d1d1d;
    text-overflow: ellipsis;
}
.acco_item input[type=text]:focus {
    background-color: transparent;
    border: 0;
}
.acco_item input[type=text]:disabled {
    color: #888;
}

.level_first {
    width: 21.875rem;
    margin: 1.144rem;
    position: relative;
}

.first_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.625rem;
    border: solid 1px #e3e3e3;
    padding: 0.625rem 1rem;
    position: relative;
}

.sett_opt {
    display: none;
    position: absolute;
    top: 0;
    right: -8.125rem;
    width: 7.625rem;
    background: #fff;
    border-radius: 0.625rem;
    overflow: hidden;
    border: solid 1px #e3e3e3;
    z-index: 10;
}
.sett_opt li {
    padding: 1rem;
    color: #1d1d1d;
    font-weight: normal;
    cursor: pointer;
    border: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    width: unset !important;
}
.sett_opt li:hover {
    background-color: #e8edfc;
    color: #2d59ed;
    font-weight: bold;
}

.table ul.opt_con {
    display: none;
    position: absolute;
    top: 0;
    right: -8.125rem;
    width: 7.625rem;
    background: #fff;
    border-radius: 0.625rem;
    overflow: hidden;
    border: solid 1px #e3e3e3;
    z-index: 10;
    flex-direction: column;
}
.opt_con li {
    cursor: pointer;
    padding: 1rem 1.125rem !important;
    text-align: left !important;
    justify-content: flex-start !important;
}
.opt_con li:hover {
    background: #e8edfc;
    font-weight: bold;
    color: #2d59ed;
}
.opt_con li.disabled {
    background: #f4f4f4;
    cursor: default;
}
.opt_con li.disabled:hover {
    background: #f4f4f4;
    font-weight: bold;
    color: #2d59ed;
    color: #1d1d1d;
    font-weight: unset;
}


.acco_state {
    background: url(/images/egovframework/admin/ic-dropdown_r@2x.png) no-repeat center/100%;
    width: 1.125rem;
    height: 1.125rem;
    border: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2.25rem;
    cursor: pointer;
}
.acco_state.on {
    background: url(/images/egovframework/admin/ic-dropdown-open_r@2x.png) no-repeat center/100%;
}
.acco_mark {
    background: url(/images/egovframework/admin/ic-dropdown-open-2_r@2x.png) no-repeat center/100%;
    width: 1.125rem;
    height: 1.125rem;
    border: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2.25rem;
}

.ic_box{
    display: none;
    clear: both;
}
.ic_box button{
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1.418;
    font-weight: 500;
    border: 0;
    background: none;
    border-radius: 0.313rem;
    color: #1d1d1d;
}
.ic_box .chnge_btn {
    width: calc(100% - 2.375rem);
    padding: 0.25rem 0.625rem 0.25rem;
    background: #2d59ed;
    color: #fff;
    float: left;
}
.ic_box .cncl_btn {
    padding: 0.25rem 0.5rem;
    width: 2.375rem;
    float: right;
}

.first_con.disabled,
.child_con.disabled {
    background: #f4f4f4;
    border-color: #f4f4f4;
}

.sett_opt li.disabled {
    color: #bebebe;
}

/* -----------통계----------- */
.cht_option_left {
    display: flex;
    column-gap: 2.5rem;
    row-gap: 1.625rem;
    align-items: flex-end;
    flex-wrap: wrap;
    flex: 1;
}

.chart_sel_title {
    min-width: 4.063rem;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: -0.24px;
    color: #2d2d2d;
}

.sel_152 {
    width: 9.5rem;
    padding: 1.125rem 1.5625rem 1.125rem 1.25rem;
    text-overflow: ellipsis;
}

.bx_select {
    display: flex;
    align-items: center;
}
.bx_select .sel_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    height: 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 1.375rem;
    border: solid 1px #d8d8d8;
    color: #333;
    background: #fff;
    cursor: pointer;
    margin-right: 0.5rem;
}
.bx_select .sel_btn.active {
    color: #fff;
    border-color: #2d59ed;
    background: #2d59ed;
}
.bx_select .sel_btn:last-child {
    margin-right: 0;
}
.ali_cenr{
    align-items: center !important;
}

.cht_date_box {
    display: flex;
    align-items: center;
}
.cht_date_box .date {
    display: flex;
    height: unset;
    padding: 1.094rem;
    border: solid 1px #d8d8d8;
    background-color: #fff;
    color: #1d1d1d;
    gap: 0;
    justify-content: space-between;
}

.cht_date_box .date img{
    width: 1.125rem;
    height: 1.125rem;
}

.cht_sch_box .search_btn {
    padding: 1.047rem !important;
    margin-left: 0.5rem;
}

.cht_sch_box .search_btn img {
    width: 1.406rem;
    height: 1.406rem;
}

.cht_option_right {
    position: absolute;
    top: 3.125rem;
    right: 3.0625rem;
}

.cht_option_right button {
    width: unset;
    line-height: normal;
    border: 0;
    display: inline-block;
    letter-spacing: -0.23px;
    padding: 0.688rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    border-radius: 0.625rem;
    background-color: #1d1d1d;
    cursor: pointer;
}

.chart_bar {
    display: flex;
    align-items: end;
    height: 27.5rem;
    padding: 0rem 2.5rem;
    border: solid 1px #e3e3e3;
    border-radius: 0.625rem;
    overflow: hidden;
    background: #fff;
}


.chart_title {
    margin-bottom: 1.25rem
}
.chart_title h5{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -0.64px;
    color: #1d1d1d;
}

.bx_chart {
    display: flex;
    column-gap: 1.5rem;
    margin-top: 2.75rem;
}
.bx_chart section {
  width: 50%;
  border-radius: 0.625rem;
  background: #fff;
}

/* chart_table */
.table_wrap {
    border-radius: 0.625rem;
    overflow: hidden;
    border: solid 1px #e3e3e3;
}

.chart_table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.down_table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed;
}

.chart_table thead tr th,
.down_table thead tr th {
    background-color: #f4f4f4;
    padding: 0.875rem 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: #888;
}

.chart_table thead tr th:nth-child(1) {
    width: 15%;
}
.chart_table thead tr th:nth-child(2) {
    width: 15%;
}
.chart_table thead tr th:nth-child(3) {
    width: 70%;
}

.chart_table tbody td ,
.down_table tbody td {
    padding: 1.75rem 0;
    border-bottom: 1px solid #e3e3e3;
    color: #1d1d1d;
    letter-spacing: -0.8px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}
.chart_table tbody td:first-child,
.down_table tbody td:first-child {
    color: #888;
}

.chart_table th {
    background-color: #f5f5f5;
    font-weight: bold;
}
.chart_table td {
    vertical-align: middle;
}

.chart_table tfoot td,
.down_table tfoot td {
    border-bottom: 0;
    color: #1d1d1d;
    letter-spacing: -0.8px;
    font-weight: 500;
}

.bar_container {
    width: 19.563rem;
    height: 0.75rem;
    position: relative;
    overflow: hidden;
    border-radius: 0.313rem;
}
.bar {
    height: 100%;
    background-color: #2d59ed;
    border-radius: 0.313rem;
}

td.horiz {
    position: relative;
    height: 100%;
    padding-left: 0.5rem !important;
}
td.horiz span {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.cht_total {
    font-weight: bold !important;
    padding: 1.75rem 0;
    text-align: center;
    font-size: 1.125rem;
}
.cht_total span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* down_table */
.down_table thead tr th {
    width: 14.2857%
}

/*------------반응형------------*/

@media (min-width: 0px) and (max-width: 1023px) {
    html {
        font-size: 11px;
    }

    header .header_inner ul,
    header .header_inner .header_usercon {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    html {
        font-size: 12.5px;
    }
}