:root {
    /*-----색상-----*/

    --main_color: #2d6efc;
    --accent_color: #001c92;
    /*메뉴 셀렉트*/
    --menu_select_color: #4d60b3;
    /*테이블 th*/
    --th_color: #eaf1ff;
    /*기본 버튼, 각종 박스 col, 탭 제목 txt col*/
    --btn_col: #5e85da;
    --btn_hov: #2f51b6;
    --gray_col: #a5a5a5;
    --gray_col_hov: #999999;
    /*info txt*/
    --blue_txt_col: #4690ff;
    --txt_col: #252525;
    --placeholder_col: #6d6d6d;
    --border_col: #d9d9d9;
    --warn_color: #ff1212;

    /*-----높이, 길이-----*/

    --header_h: 90px;
    --left_menu_w: 275px;
}

/*공통*/
html,
div,
p,
ul,
li,
span,
a,
button,
input,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--txt_col);
    font-family: sans-serif;
}

.icon_wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img_wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

textarea {
    resize: none;
    font-family: sans-serif;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #232323;
}

textarea:disabled {
    background-color: #f5f5f5;
}

textarea:focus-visible {
    outline: none;
}

.pointer {
    cursor: pointer;
}

._flex {
    display: flex;
}

._flex._center {
    justify-content: center;
}

._flex._space_b {
    justify-content: space-between;
}

._flex._column {
    flex-direction: column;
}

._flex_wrap {
    flex-wrap: wrap;
}

._flex._align_bottom {
    align-items: end;
}

._flex._align_center {
    align-items: center;
}

.col_blue {
    color: var(--main_color);
}

.btn_wrap {
    margin-top: 20px;
    gap: 10px;
}

.default_btn {
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.table_btn {
    padding: 4px 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.submit_btn {
    height: 40px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.border_btn {
    border: 1px solid var(--main_color);
    border-radius: 5px;
    color: var(--main_color);
    font-weight: 500;
    width: 70px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: 0.3s;
}

.border_btn:hover {
    background-color: #cbdbfe;
    transition: 0.3s;
}

._gray {
    background-color: var(--gray_col);
    transition: 0.3s;
}

button._gray:hover {
    background-color: var(--gray_col_hov);
    transition: 0.3s;
}

._blue {
    background-color: var(--btn_col);
    transition: 0.3s;
}

button._blue:hover {
    background-color: var(--btn_hov);
    transition: 0.3s;
}

._main_blue {
    background-color: var(--main_color);
    transition: 0.3s;
}

button._main_blue:hover {
    background-color: var(--accent_color);
    transition: 0.3s;
}

.word_btn {
    color: var(--accent_color);
    text-decoration: underline;
}

.blue_btn {
    border: 1px solid var(--main_color);
    border-radius: 5px;
    color: var(--main_color);
    height: 40px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.blue_btn._pressed {
    background-color: #2d6efc;
    color: #fff;
}

.blue_btn._pressed:hover {
    background-color: #2d6efc;
    color: #fff;
}

.blue_btn:hover {
    background-color: #2d6ffc25;
    transition: 0.3s;
}

.blue_btn._blocked {
    background-color: #f5f5f5;
    border: 1px solid #c4c4c4;
    color: #6d6d6d;
}

.blue_btn._blocked:hover {
    cursor: not-allowed;
}

.blue_btn:disabled {
    background-color: #f5f5f5;
    border: 1px solid #c4c4c4;
    color: #6d6d6d;
}

.blue_btn:disabled:hover {
    cursor: not-allowed;
}

.custom_scroll::-webkit-scrollbar {
    background: transparent;
    border-radius: 50px;
    width: 6px;
}

.custom_scroll::-webkit-scrollbar-thumb {
    background: #6d6d6d;
    border-radius: 50px;
}

.custom_scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.custom_scroll::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 50px;
    /* width: 10px; */
}

.pop_up .custom_scroll::-webkit-scrollbar-thumb {
    background: #a5a5a5;
}

._130 {
    width: 130px;
}

._200 {
    width: 200px;
}

._230 {
    width: 230px;
}

._280 {
    width: 280px;
}

.w_100 {
    width: 100%;
}

.ellipsis_1 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*공통*/

/*로그인 화면*/
.login_container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/login_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

.login_wrap {
    width: 556px;
    height: 478px;
    padding: 70px;
    border-radius: 35px;
    background-color: var(--accent_color);
    bottom: 70px;
    position: relative;
}

.login_wrap .tit {
    margin-bottom: 50px;
    text-align: center;
}

.login_wrap .tit h1 {
    width: 100%;
}

.login_wrap .tit p {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
}

.login_wrap .tit p img {
    display: inline-block;
    margin-right: 10px;
    vertical-align: sub;
    filter: opacity(0.75);
}

.login_wrap input {
    border: 1px solid var(--border_col);
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    padding: 10px 16px;
    color: var(--txt_col);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
}

.login_wrap input::placeholder {
    color: var(--placeholder_col);
}

.login_wrap button {
    background-color: var(--main_color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 50px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    transition: 0.3s;
}

.login_wrap button:hover {
    background-color: var(--btn_col);
    transition: 0.3s;
}

/*로그인 화면*/

/*메인화면*/
header {
    width: 100%;
    height: var(--header_h);
    padding-inline: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
}

header h1 {
    width: 340px;
    height: 50px;
}

header h1 a {
    display: block;
    width: 100%;
    height: 100%;
}

.left_menu {
    position: fixed;
    width: var(--left_menu_w);
    left: 0;
    top: calc(var(--header_h));
    border-top-right-radius: 35px;
    display: flex;
    flex-direction: column;
    background-color: var(--accent_color);
    height: calc(100vh - (var(--header_h)));
    padding-block: 50px;
    justify-content: space-between;
}

.left_menu nav ul.depth_01 {
    display: flex;
    flex-direction: column;
}

.left_menu nav ul.depth_01 > li {
    padding-block: 15px;
    padding-inline: 50px;
    transition: 0.3s;
    position: relative;
}

.left_menu nav ul.depth_01 > li::before {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: 0.3s;
    /* height: 0; */
    opacity: 0;
    height: 100%;
    z-index: -1;
}

.left_menu nav ul.depth_01 > li:where(.active, :hover)::before {
    /* background-color: var(--menu_select_color); */
    /* background-color: rgba(255, 255, 255, 0.15); */
    background-color: #4d60b3;
    transition: 0.3s;
    /* height: 100%; */
    opacity: 1;
}

.left_menu nav ul.depth_01 > li > div {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.left_menu nav ul.depth_01 > li > div a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.left_menu nav ul.depth_01 > li span {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.left_menu nav ul.depth_01 > li span img {
    filter: brightness(0.9);
}

.left_menu nav ul.depth_01 > li:where(.active, :hover) span img {
    filter: brightness(1);
}

.left_menu nav ul.depth_02 {
    margin-top: 0;
    height: 0;
    transition: visibility 0.3s, height 0.3s, transform 0.3s, opacity0.5s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20%);
}

.left_menu nav li:where(.active, :hover) ul.depth_02 {
    margin-top: 3px;
    height: auto;
    transition: visibility 0.3s, height 0.3s, transform 0.3s, opacity0.5s;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.left_menu nav ul.depth_02 li {
    padding-left: 46px;
    margin-bottom: 5px;
}

.left_menu nav ul.depth_02 li {
    padding-left: 46px;
    margin-bottom: 5px;
}

.left_menu nav ul.depth_02 li:last-child {
    margin-bottom: 0;
}

.left_menu nav ul.depth_02 li a {
    width: 100%;
    height: 100%;
    color: #d9d9d9;
    font-weight: 400;
    transition: 0.3s;
}

.left_menu nav ul.depth_02 li:where(.active, :hover) a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
    transition: 0.3s;
}

.utility_wrap {
    padding: 50px 50px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.utility_wrap :where(div, a, button) {
    color: #d9d9d9;
    transition: 0.3s;
}

.utility_wrap :where(a, button):hover {
    color: #fff;
    text-decoration: underline;
    transition: 0.3s;
}

/*메인화면*/

/*레이아웃*/
.container {
    padding-top: calc(var(--header_h) + 10px);
    padding-left: calc(var(--left_menu_w) + 30px);
    width: calc(100% - 50px);
}

.blue_box {
    border-radius: 20px;
    box-shadow: 0px 0px 10px #4690ff40;
    padding: 20px;
}

.blue_box._full {
    height: calc(100vh - var(--header_h) - 50px);
    min-height: 800px;
    display: flex;
    flex-direction: column;
}

.blue_box._max_full {
    max-height: calc(100vh - var(--header_h) - 50px);
    display: flex;
    flex-direction: column;
}

.mini_blue_box_wrap {
    gap: 20px;
    flex-wrap: wrap;
}

.mini_blue_box {
    padding: 20px;
    border: 1px solid var(--th_color);
    border-radius: 10px;
    flex: 1 1 30%;
    width: 30%;
}

.mini_blue_box._full {
    flex: 100%;
}

.container.flex {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.container.flex .blue_box {
    flex: 100%;
}

.container.flex .blue_box.flex_4 {
    flex: 4;
}

.container.flex .blue_box.flex_3 {
    flex: 3;
    width: 20%;
}

.blue_box.h_800 {
    height: 800px;
}

.mini_blue_box_wrap .box_tit {
    margin-bottom: 0;
}

.box_tit {
    border-bottom: 1px solid var(--th_color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.box_tit._flex {
    justify-content: space-between;
    align-items: center;
}

.box_tit h2 {
    font-size: 24px;
    font-weight: 600;
}

.box_tit h2 img {
    vertical-align: unset;
}

.box_tit h3 {
    color: var(--accent_color);
    font-weight: 700;
}

.box_tit h2 a {
    font-size: 24px;
    font-weight: 600;
}

.mini_blue_box .box_tit {
    border-bottom: none;
    margin-bottom: 5px;
}

.mini_blue_box .info_box div {
    font-weight: 500;
    color: var(--placeholder_col);
    font-size: 16px;
}

.info_box {
    display: inline-flex;
    gap: 20px;
    padding-right: 10px;
}

.info_box :where(div, span) {
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.info_box div:not(:first-child)::before {
    content: "";
    height: 26px;
    width: 1px;
    background-color: var(--border_col);
    display: inline-block;
    position: absolute;
    left: -10px;
}

.info_box span {
    margin-left: 5px;
}

.sch_condition_wrap {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.sch_condition_wrap._right {
    justify-content: flex-end;
}

.sch_condition_wrap > div {
    display: flex;
    gap: 15px 12px;
}

.sch_condition_wrap ._multi {
    gap: 10px;
}

.sch_condition_wrap .radio_wrap label + label {
    margin-left: 20px;
}

.sch_condition_wrap .radio_wrap label em {
    margin-right: 0;
}

.select_tab_box_wrap .sch_list_tit {
    display: inline-block;
    margin-bottom: 5px;
}

.select_tab_box {
    position: relative;
    position: relative;
    z-index: 2;
}

.select_list .select_tab_box {
    z-index: unset;
}

.selected_tab {
    width: 100%;
    border: 1px solid var(--border_col);
    background-color: #fff;
    border-radius: 5px;
    height: 35px;
    display: flex;
    align-items: center;
}

.selected_tab span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
    border: 0;
    font-weight: 500;
    color: var(--font_color);
    cursor: pointer;
    width: 100%;
}

.tab_option {
    border: 1px solid var(--border_col);
    border-radius: 5px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 36px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.1s;
    z-index: 1;
}

:where(.selected_tab, .more_menu).active + .tab_option {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.selected_tab::before {
    content: "";
    width: 15px;
    height: 11px;
    display: inline-block;
    background-image: url(../img/more_select.png);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s;
    filter: brightness(0.5);
    cursor: pointer;
}

.selected_tab.active::before {
    transform: translateY(-50%) rotate(-180deg);
    transition: 0.3s;
}

.tab_option :where(button, a):where(.active) {
    background-color: #ddd;
    font-weight: 500;
}

.tab_option :where(button, a):where(:hover) {
    background-color: #eee;
    background-color: #eee;
    font-weight: 500;
}

.tab_option :where(button, a) {
    width: 100%;
    padding-inline: 10px;
    display: block;
    height: 35px;
    line-height: 35px;
}

.search_wrap {
    width: 400px;
    display: inline-block;
    border: 1px solid var(--border_col);
    border-radius: 5px;
    padding: 0px 10px;
    height: 35px;
}

.search_wrap .search_btn {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.search_wrap input {
    font-size: 16px;
    height: 100%;
    width: calc(100% - 28px);
    display: inline-block;
    border: none;
    color: var(--txt_col);
}

.search_wrap input:focus-visible {
    border: none;
    outline: none;
}

.search_wrap input::placeholder {
    color: var(--placeholder_col);
}

.sch_list {
    display: flex;
    align-items: center;
}

.sch_list_tit {
    font-size: 15px;
    font-weight: 600;
    color: var(--placeholder_col);
    margin-right: 12px;
}

.sch_list.checkbox_wrap label > span {
    font-size: 15px;
}

.sch_list.checkbox_wrap em + :where(span, button) {
    margin-left: 2px;
}

.sch_list.checkbox_wrap label {
    display: inline-flex;
    gap: 5px;
}

.sch_list label:last-child {
    border-right: 1px solid var(--border_col);
    padding-right: 15px;
}

._column .sch_list label:last-child {
    border-right: none;
    padding-right: 0;
}

.sch_list.checkbox_wrap label + label {
    margin-left: 12px;
}

.select_date_wrap {
    display: flex;
}

.select_date_wrap .select_date + .select_date::before {
    content: "~";
    font-family: sans-serif;
    font-weight: 600;
    margin-inline: 5px 0px;
}

.select_date input[type="date"]::-webkit-calendar-picker-indicator,
.select_date input[type="date"]::-webkit-inner-spin-button {
    appearance: none;
    opacity: 0;
    border: none;
}

.select_date input {
    display: inline-block;
    height: 35px;
    width: 127px;
    padding: 5px 5px 5px 7px;
    background-image: url(../img/cal_icon.png);
    background-repeat: no-repeat;
    background-size: 18%;
    background-position: center right 5px;
    border: 1px solid var(--border_col);
    border-radius: 5px;
    color: #252525;
    font-weight: 500;
    font-size: 15px;
}

.pop_up .sch_condition_wrap + .common_table {
    margin-top: 0;
}

.sch_condition_wrap + .common_table {
    /* margin-top: 8px; */
}

.common_table {
    overflow: hidden;
}

.common_table table.total {
    width: 128px;
    text-align: center;
}

table.total td {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.blue_box._full .common_table {
    flex: 1;
    overflow-y: scroll;
    padding-right: 10px;
}

/*임시제거*/
/* .blue_box._full .common_table {
    max-height: 511px;
}
.blue_box._full .common_table.long {
    max-height: 593px;
}

.blue_box._full .common_table.medium {
    max-height: 551px;
}

.blue_box._full .common_table table {
    min-width: 1505px;
} */
/*임시제거*/

.common_table table {
    width: calc(100% + 1px);
    table-layout: fixed;
    position: relative;
    left: -1px;
}

.common_table._700 {
    width: 700px !important;
}

._max_full .common_table {
    height: 100%;
    /* overflow-y: auto; */
    padding-right: 10px;
}

.add_bb {
    position: relative;
}

thead.add_bb {
    position: sticky;
    top: 0;
    z-index: 1;
}

thead.add_bb tr:last-child {
    border-bottom: none;
}

.add_bb::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--border_col);
    position: absolute;
    bottom: -1px;
    left: 0;
}

.common_table thead.add_bb tr {
    height: 27px;
}

.common_table thead tr {
    position: sticky;
    top: 0;
    z-index: 1;
}

.common_table thead.h_35 tr {
    height: 35px;
}

.common_table thead tr {
    height: 30px;
    border-bottom: 1px solid var(--border_col);
}

.common_table thead tr th {
    border-left: 1px solid var(--border_col);
}

.mini_blue_box_wrap .common_table th {
    text-align: left;
    padding-inline: 10px;
}

.common_table th {
    background-color: var(--th_color);
    font-weight: 600;
    font-size: 15px;
    color: var(--placeholder_col);
    vertical-align: middle;
}

.common_table.mini_blue_box {
    width: 100%;
    flex: unset;
    padding: 10px;
    gap: 10px;
    display: flex;
}

.common_table.small_size {
    display: flex;
    gap: 10px;
}

.common_table.small_size + .common_table.small_size {
    margin-top: 10px;
}

.common_table.small_size tr :where(th, td):first-child {
    border-left: 0;
}

.common_table.small_size tbody tr {
    height: 30px !important;
}

.common_table tbody tr {
    height: 40px;
    border-bottom: 1px solid var(--border_col);
}

.container.flex .common_table tbody tr {
    height: 35px;
}

._max_full .common_table tbody tr {
    height: 35px;
}

.common_table thead.left th {
    text-align: left;
    padding-inline: 10px;
}

.common_table td {
    padding: 0 10px;
    font-size: 15px;
    vertical-align: middle;
    border-left: 1px solid var(--border_col);
    text-align: left;
    font-weight: 400;
}

.common_table td.underline {
    text-decoration: underline;
    cursor: pointer;
}

.common_table td.underline.blue_tag {
    color: var(--main_color);
}

.common_table td.underline.green_tag {
    color: #20744a;
}

.common_table tfoot tr {
    height: 35px;
    background-color: #f5f5f5;
    border-bottom: 1px solid var(--border_col);
    border-top: 2px solid var(--border_col);
}

.common_table td.p_5 {
    padding: 0 5px;
}

.common_table td.p_0 {
    padding: 0;
}

.common_table td.bold {
    font-weight: 700;
}

.common_table td.p_0.cnt {
    font-size: 14px;
}

.common_table td.cnt {
    text-align: center;
}

.common_table td.small {
    font-size: 14px;
}

.radio_wrap label :where(input, span, div, p) {
    cursor: pointer;
}

.radio_wrap :where(input[type="checkbox"], input[type="radio"]) {
    display: none;
}

.radio_wrap label em {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: #fff;
    position: relative;
    vertical-align: sub;
    cursor: pointer;
    border: 1px solid #d9d9d9;
    margin-right: 5px;
    border-radius: 50px;
}

.radio_wrap label em::before {
    content: "";
    display: none;
    width: 12px;
    height: 12px;
    background-color: #001c92;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

.radio_wrap label input:checked + em {
    border: 1px solid #001c92;
}

.radio_wrap label input:checked + em::before {
    display: inline-block;
}

.radio_wrap label > span {
    font-weight: 500;
}

.radio_wrap label input:checked ~ span:not(.no_blue) {
    color: #001c92;
}

.radio_wrap label label + label {
    margin-left: 10px;
}

.radio_wrap._blocked label > span {
    color: #c4c4c4;
}

.radio_wrap._blocked em {
    background-color: #fff;
    border-color: #c4c4c4;
}

.radio_wrap._blocked input:checked + em {
    border-color: #d9d9d9;
}

.radio_wrap._blocked input:checked + em::before {
    background-color: #d9d9d9;
}

.radio_wrap._blocked input:checked ~ span:not(.no_blue) {
    color: #d9d9d9;
}

.checkbox_wrap :where(input[type="checkbox"], input[type="radio"]) {
    display: none;
}

.checkbox_wrap._round :where(em, em::before) {
    border-radius: 50px;
}

.checkbox_wrap em {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: #fff;
    position: relative;
    vertical-align: sub;
    cursor: pointer;
    border: 1px solid #6d6d6d;
}

.checkbox_wrap em::before {
    content: "";
    display: none;
    width: 16px;
    height: 16px;
    background-image: url(../img/check_icon.png);
    filter: brightness(5);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
}

.checkbox_wrap._plus em::before {
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    background-image: url(../img/more_btn.png);
}

.checkbox_wrap input:checked + em {
    background-color: var(--accent_color);
    border: 1px solid var(--accent_color);
}

.checkbox_wrap input:checked + em::before {
    display: inline-block;
}

.checkbox_wrap label > span {
    font-weight: 500;
}

.checkbox_wrap input:disabled + em {
    border: 1px solid #c5c5c5;
    cursor: default;
}

.checkbox_wrap input:disabled:checked + em {
    background-color: var(--gray_col);
    border: 1px solid var(--gray_col);
}

/* .checkbox_wrap input:checked~span:not(.no_blue) {
    color: var(--main_color);
}

.checkbox_wrap._blocked input:checked~span:not(.no_blue) {
    color: #6d6d6d;
} */

.pagination {
    height: 40px;
    text-align: center;
    margin-top: 20px;
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pagination._700 {
    width: 700px;
}

.pagination button {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    transition: 0.2s;
    padding-bottom: 2px;
}

.pagination button.icon_wrap img {
    height: 15px;
}

.pagination button:where(.next_btn, .last_btn) img {
    transform: rotate(180deg);
}

.pagination button:not(.active):hover {
    background-color: #d9d9d9;
    transition: 0.2s;
}

.pagination button.active {
    background-color: #000;
    color: #fff;
    transition: 0.2s;
}

.graph_wrap {
    margin-top: 20px;
}

.graph_info {
    display: inline-block;
    vertical-align: sub;
    color: var(--placeholder_col);
    font-size: 14px;
    font-weight: 500;
}

/*레이아웃*/

/*팝업*/
.pop_up_layer {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}

.pop_up {
    /* display: none; */
    position: fixed;
    top: calc(var(--header_h));
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 7px 0px #00000033;
    z-index: 9999;
    background-color: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: calc(100% - 40px);
    padding: 20px;
    height: auto;
    max-height: calc(100vh - (var(--header_h) * 2));
}

.pop_up.flex_box {
    display: flex;
    flex-direction: column;
    height: calc(100vh - (var(--header_h) * 2));
}

.pop_up.flex_box .common_table {
    flex: 1;
    overflow-y: auto;
}

.pop_tit {
    margin-bottom: 20px;
}

.pop_tit._flex {
    justify-content: space-between;
    align-items: center;
}

.pop_tit._bb {
    border-bottom: 1px solid var(--th_color);
    padding-bottom: 10px;
}

.pop_tit p {
    font-size: 20px;
    font-weight: 600;
}

.pop_up .close_btn {
    width: 38px;
}

.pop_up .close_btn img {
    transition: 0.2s;
}

.pop_up .close_btn:hover img {
    filter: invert(0.78) brightness(2);
    transition: 0.2s;
}

.pop_up.pop_detail {
    max-width: 500px;
}

.pop_up.pop_detail .close_btn {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 15px;
    transition: 0.2s;
    font-weight: 500;
}

.pop_up.pop_detail .close_btn:hover {
    transition: 0.2s;
    color: #777;
}

.pop_up.pop_detail .close_btn:hover img {
    transition: 0.2s;
}

.pop_up.pop_detail .close_btn img {
    display: inline-block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    vertical-align: baseline;
    transition: 0.2s;
}

.pop_up.pop_detail .close_btn:hover img {
    filter: invert(0.78) brightness(2);
    transition: 0.2s;
}

.pop_detail .pop_tit {
    margin-bottom: 0;
}

.pop_detail .pop_tit p {
    font-size: 22px;
    font-family: var(--gumi);
    font-weight: 600;
    color: var(--main_color);
    text-align: center;
    flex: 1;
    border-bottom: 2px solid var(--main_color);
    padding-bottom: 10px;
}

.pop_up .content_wrap {
    width: 100%;
}

.pop_up .result_wrap {
    padding-block: 30px 25px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.pop_up .result_wrap p {
    word-break: keep-all;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

.pop_up .result_wrap p em {
    color: var(--main_color);
    font-weight: 600;
    font-style: normal;
}

.pop_up .btn_wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 5px;
}

.pop_up .btn_wrap .submit_btn {
    color: #fff;
    font-weight: 600;
    background-color: var(--main_color);
    border-radius: 5px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
}

.pop_up .btn_wrap .submit_btn._gray {
    background-color: var(--gray_col);
    transition: 0.3s;
}

.pop_up .btn_wrap .submit_btn:hover {
    background-color: var(--accent_color);
    transition: 0.3s;
}

.pop_up .btn_wrap .submit_btn._gray:hover {
    background-color: var(--gray_col_hov);
    transition: 0.3s;
}

/*팝업*/

/*폼*/
.sign_form.custom_scroll {
    overflow-y: auto;
    padding-right: 10px;
}

.sign_form input {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background-color: #fff;
    height: 45px;
    width: 100%;
    padding: 5px 10px;
    font-weight: 500;
    color: #333;
}

.sign_form input:disabled {
    background-color: #f5f5f5;
    font-weight: 500;
}

.sign_form input:read-only {
    background-color: #f5f5f5;
    font-weight: 500;
}

.sign_form .con_tit {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.sign_form li p.p_info {
    color: #4690ff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
}

.sign_form li p.p_warn {
    color: #ff1212;
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
}

.sign_form li > span:not(.form_li_tit) {
    color: #6d6d6d;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}

.sign_form input::placeholder {
    color: #6d6d6d;
    font-size: 16px;
}

.sign_form ul {
    width: 100%;
}

.sign_form li + li {
    margin-top: 15px;
}

.sign_form_wrap .checkbox_wrap label {
    margin-left: 0;
    margin-right: 30px;
}

.sign_form .imp .form_li_tit::after {
    content: "*";
    display: inline-block;
    margin-left: 5px;
    color: var(--warn_color);
    font-weight: 500;
}

.sign_form .checkbox_wrap label + label {
    margin-left: 30px;
}

.sign_form ul {
    padding-bottom: 10px;
}

.sign_form li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sign_form hr {
    width: 100%;
    border-top: 1px solid var(--border_col);
    border-bottom: 0;
}

.sign_form input {
    height: 40px;
}

.sign_form li :where(input[type="text"], input[type="password"]) {
    flex: 1 1 50%;
}

.sign_form li .form_li_tit {
    width: 110px;
    letter-spacing: -0.5px;
    font-weight: 500;
    display: inline-block;
    color: #000;
}

.sign_form li._flex._half div {
    flex: 1;
}

.sign_form li._flex._half div span {
    letter-spacing: -0.5px;
    font-weight: 500;
    color: var(--txt_col);
}

.sign_form li > p {
    padding-left: 115px;
    flex: 100%;
}

.sign_form li > button {
    width: 140px;
    margin-left: 7px;
}

.sign_form li.mail_wrap {
    flex-wrap: nowrap;
}

.sign_form li input {
    font-size: 16px;
}

.sign_form li.mail_wrap :where(input, .select_tab_box) {
    flex: 1 1 20%;
}

.sign_form .selected_tab span {
    padding: 0 15px;
}

.sign_form li.mail_wrap :where(input:not(:first-of-type), .select_tab_box, em) {
    margin-left: 7px;
    display: inline-block;
    font-style: normal;
    font-weight: 500;
}

.sign_form li.mail_wrap .tab_option {
    top: 35px;
    width: calc(100% - 40px);
    left: 5px;
}

.sign_form .mail_wrap .selected_tab {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    height: 40px;
}

.sign_form li.phone_wrap input {
    flex: 1 1 20%;
    max-width: 120px;
}

.sign_form li.phone_wrap input:first-of-type {
    max-width: 80px;
}

.sign_form li.phone_wrap em {
    display: inline-block;
    margin-inline: 7px;
    font-weight: 500;
}

.sign_form li.add_wrap input.code {
    max-width: 215px;
    margin-top: 0;
    margin-left: 0 !important;
}

.sign_form li.add_wrap .need_space {
    flex: 100%;
    margin-top: 10px;
}

.sign_form :where(input, label).need_space {
    margin-left: 110px !important;
}

.sign_form .form_li_tit._full {
    flex: 100%;
    margin-bottom: 10px;
}

.sign_form li.join_way_wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d9d9d9;
}

.join_way_wrap label {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox_wrap em + :where(span, button) {
    display: inline-block;
    margin-left: 5px;
}

.join_way_wrap label + label {
    margin-left: 0;
}

.join_way_wrap label input[type="text"] {
    height: 35px;
}

.sign_form.agree_form ul li {
    display: block;
    text-align: right;
}

.sign_form.agree_form ul li:first-child {
    text-align: left;
    border-bottom: 1px solid #c4c4c4;
    padding-block: 20px;
}

.agree_form ul li .con_tit {
    display: block;
    text-align: left;
}

.agree_form ul li .con_desc {
    height: 200px;
    background-color: #f5f5f5;
    padding: 10px 10px 10px 20px;
}

.agree_form ul li .con_desc div {
    height: 100%;
    text-align: left;
    overflow-y: auto;
}

.agree_form .info {
    font-size: 18px;
    margin-block: 40px;
    text-align: center;
    color: #252525;
}

.sign_form.agree_form ul {
    border-block: 1px solid #d9d9d9;
    margin-block: 15px 40px;
}

.sign_form_wrap .agree_form .checkbox_wrap:not(:first-child) label {
    margin-top: 10px;
    display: inline-block;
    margin-right: 0;
}

.sign_form .li_con {
    flex-wrap: nowrap;
}

.sign_form textarea {
    width: 100%;
    margin-left: 16px;
    height: 400px;
}

.file_wrap .form_li_tit {
    min-width: 110px;
    letter-spacing: -0.5px;
    font-weight: 500;
    display: inline-block;
    color: #000;
}

.file_wrap .blue_btn {
    width: 140px;
    margin-left: 7px;
    height: auto;
}

.file_wrap label {
    display: flex;
    width: calc(100% - 110px);
    flex-wrap: wrap;
}

.file_wrap .p_info {
    flex: 100%;
    color: #4690ff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
}

.file_wrap input[type="file"] {
    display: none;
}

.file_wrap .file_box_wrap {
    flex: calc(100% - 150px);
    height: auto;
    border: 1px solid var(--border_col);
    border-radius: 5px;
    line-height: 1.5;
    padding: 7px 10px;
    color: #6d6d6d;
    /* font-weight: 500; */
}

.file_wrap .file_list {
    padding-left: 110px;
    display: flex;
    gap: 15px;
    margin-top: 7px;
    flex-wrap: wrap;
}

.file_wrap .file_list.with_btn {
    align-items: flex-start;
    gap: 7px;
}

.file_wrap .file .file_name {
    text-decoration: underline;
    color: #434343;
    transition: 0.2s;
}

.file_wrap .file .file_del {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    display: inline-block;
    margin-left: 1px;
    margin-top: -3px;
    transition: 0.2s;
}

.file_wrap .file .file_del:hover {
    filter: brightness(1.15);
    transition: 0.2s;
}

.report_modal {
    gap: 20px;
}

.report_modal > div {
    flex: 1;
}

.report_modal .result_form .form_li_tit {
    min-width: 120px;
}

.report_modal .right_part .result_form .form_li_tit {
    min-width: 110px;
}

.report_modal .file_wrap label {
    width: 100%;
}

.result_form .underline {
    text-decoration: underline;
    cursor: pointer;
}

.report_modal .right_part {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--th_color);
}

.report_modal .right_part li {
    margin-bottom: 15px;
}

.report_modal .right_part li label:not(:first-of-type) {
    margin-top: 10px;
}

.report_modal .result_form hr {
    border-top: 1px solid #fff;
    border-bottom: none;
    width: 100%;
    margin-block: 20px;
}

.result_form ul li + li {
    margin-top: 10px;
}

.result_form hr {
    border-top: 1px solid var(--th_color);
    border-bottom: none;
    width: 100%;
    margin-block: 20px;
}

.result_form li {
    display: flex;
    gap: 10px;
}

.result_form .tag_wrap {
    padding-inline: 0;
}

.result_form li .form_li_tit {
    display: inline-block;
    width: 50px;
    font-weight: 500;
}

.result_form li.li_con {
    align-items: center;
}

.result_form textarea {
    height: 240px;
    width: 100%;
}

.result_form textarea.h_127 {
    height: 127px;
    font-size: 15px;
}

.result_form textarea.h_200 {
    height: 200px;
}

.result_form textarea.h_270 {
    height: 270px;
    font-size: 15px;
    font-weight: 400;
}

.result_form .file_wrap ul li + li {
    margin-top: 3px;
}

.result_form li .down img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    margin-left: 5px;
    transition: 0.3s;
}

.result_form li .down:hover img {
    filter: brightness(0.5);
    transition: 0.3s;
}

.result_form .radio_wrap :where(.select_tab_box_wrap, .select_type_text) {
    margin-top: 5px;
}

.select_type_text {
    width: 100%;
    border: 1px solid var(--border_col);
    background-color: #fff;
    border-radius: 5px;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 16px;
}

/*폼*/

/*회원관리*/
.tag_wrap {
    display: inline-flex;
    width: 100%;
    gap: 8px;
    padding-inline: 5px;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-bottom: 5px;
}

.tag_wrap span[class^="tag_"] {
    padding: 2px 5px;
    font-size: 15px;
    text-align: center;
    border-radius: 3px;
}

.tag_wrap .tag_yellow {
    background-color: #fff4eb;
    color: #d05700;
    border: 1px solid #ffcb4a;
}

.tag_wrap .tag_blue {
    background-color: #eaf1ff;
    color: var(--accent_color);
    border: 1px solid #c1d9ff;
}

.tag_wrap .tag_gray {
    background-color: #a5a5a5;
    color: #fff;
}

.tag_wrap .tag_red {
    background-color: #ff5959;
    color: #fff;
}

/*회원관리*/

/*사이트관리*/
.blue_box.folding_box .box_tit {
    margin-bottom: 0;
}

.blue_box.folding_box.open .box_tit {
    margin-bottom: 10px;
}

.folding_box.not_fold .box_tit {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.blue_box.open .fordable {
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: visibility 0.3s, height 0.3s, transform 0.3s, opacity0.5s;
}

.fordable {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20%);
    transition: visibility 0.3s, height 0.3s, transform 0.3s, opacity0.5s;
}

.blue_box .open_btn {
    width: 26px;
    height: 26px;
    border: 2px solid var(--main_color);
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.blue_box .open_btn img {
    filter: brightness(1);
    width: 12px;
    margin-top: 2px;
}

.blue_box.open .open_btn {
    transform: rotate(-180deg);
    transition: 0.3s;
    border: 2px solid var(--accent_color);
    background-color: var(--accent_color);
}

.blue_box.open .open_btn img {
    filter: brightness(7);
    margin-bottom: -2px;
    margin-top: 0;
}

button[class^="move_"] {
    display: inline-block;
    width: 21px;
    margin-right: 6px;
}

button[class^="move_"]._sub {
    width: 16px;
    margin-right: 0;
}

button[class^="move_"] img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(1.6);
    transition: 0.3s;
}

button[class*="move_"]:hover img {
    filter: grayscale(0) brightness(1);
    transition: 0.3s;
}

._flex button.move_down._sub {
    margin-left: 5px;
}

button.move_down:not(._sub) {
    margin-right: 16px;
}

.tb_img {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid var(--border_col);
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    transition: 0.3s;
}

.tb_img::before {
    content: "";
    display: inline-block;
    background-image: url(../img/zoom_icon.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 20px;
    background-size: contain;
    position: absolute;
    bottom: 1px;
    right: 1px;
    transition: 0.3s;
}

.tb_img:hover {
    border: 1px solid var(--gray_col);
    transition: 0.3s;
}

.tb_img + span {
    margin-left: 5px;
    vertical-align: middle;
}

.link_btn {
    display: inline-block;
    width: 17px;
    height: 17px;
}

.link_btn img {
    filter: brightness(1);
    transition: 0.3s;
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.link_btn:hover img {
    filter: brightness(0.6);
    transition: 0.3s;
}

.fordable.banner_setting li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.fordable.banner_setting .file_wrap {
    flex: 2;
}

.fordable.banner_setting .file_wrap {
    flex: 2;
}

.fordable.banner_setting .link_wrap {
    flex: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.fordable.banner_setting .file_wrap label {
    width: 100%;
}

.folding_box input[type="text"] {
    height: 40px;
    padding-inline: 10px;
    border: 1px solid var(--border_col);
    border-radius: 5px;
    font-size: 16px;
    color: var(--txt_col);
    width: calc(100% - 80px);
}

.folding_box input[type="text"]::placeholder {
    color: var(--placeholder_col);
}

.banner_setting li:first-of-type {
    border-bottom: 1px solid var(--th_color);
    padding-bottom: 10px;
}

.banner_setting .table_btn {
    width: 70px;
    padding: 0;
    text-align: center;
    height: 40px;
}

.banner_setting .tb_img {
    width: 40px;
    height: 40px;
}

.folding_box .idx_span {
    font-weight: 500;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.banner_setting li:not(:first-of-type) {
    align-items: center;
}

.line {
    width: 100%;
    height: 1px;
    background-color: var(--btn_col);
}

.change_setting > ._flex {
    gap: 40px;
}

.change_setting > ._flex > div {
    display: flex;
    align-items: center;
}

.change_setting .con_tit {
    font-weight: 500;
    margin-right: 10px;
}

.change_setting .con_con {
    font-size: 20px;
    font-weight: 500;
}

.change_setting .select_date_wrap {
    margin-right: 6px;
}

.change_setting .con_con input {
    border: 1px solid var(--border_col);
    width: 100px;
    margin-right: 6px;
}

.footer_setting {
}

.agree_edit_wrap {
    gap: 40px;
    border-bottom: 1px solid var(--th_color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.agree_edit_wrap div {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.agree_edit_wrap button {
    line-height: 1.3;
}

.footer_setting li + li {
    margin-top: 10px;
}

.footer_setting li .con_tit {
    width: 45px;
    display: inline-block;
    margin-right: 10px;
    font-size: 15px;
    color: var(--placeholder_col);
}

.folding_box .footer_setting input[type="text"] {
    border-radius: 0;
    width: calc(100% - 60px);
}

.footer_setting textarea {
    width: 100%;
    height: 100px;
    border-radius: 0;
}

[class^="file_img"] {
    border: 1px solid var(--border_col);
    overflow: hidden;
    background-color: var(--border_col);
    /* object-position: center;
    background-image: url(../img/more_btn.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12%; */
}

[class^="file_img"] img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file_img_pc {
    width: 180px;
    height: 70px;
}

.file_img_m {
    width: 180px;
    height: 168px;
}

.sign_form .select_date_wrap .select_date:last-child {
    display: flex;
    gap: 6px;
    align-items: center;
}

.checkbox_wrap._blue_col input:checked + em + :where(span, button) {
    color: var(--accent_color);
    font-weight: 600;
}

.sign_form.agree_form textarea {
    margin-left: 0;
    height: 600px;
}

.applicant_chk .pop_tit {
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.applicant_chk .excel_btn {
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: bottom;
    object-fit: contain;
}

.applicant_chk .num_wrap {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.applicant_chk .num_wrap span {
    font-weight: 500;
    vertical-align: middle;
}

.applicant_chk .date_wrap {
    display: flex;
    align-items: center;
    padding-block: 10px;
    border-block: 1px solid var(--th_color);
    margin-bottom: 20px;
}

.applicant_chk .date_wrap > div {
    display: flex;
    margin-left: 10px;
}

.applicant_chk .date_wrap div > span {
    color: #252525;
}

.applicant_chk .date_wrap.finish div > span {
    color: #6d6d6d;
}

.applicant_chk .date_wrap > div span:first-child {
    font-weight: 600;
    margin-right: 7px;
}

.applicant_chk .date_wrap > div img {
    margin-right: 0px;
    vertical-align: middle;
    margin-top: -4px;
    width: 19px;
    object-fit: contain;
}

.applicant_chk .common_table {
    overflow-y: auto;
    height: 440px;
}

.applicant_chk .common_table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.applicant_chk.applicant_choice .common_table {
    overflow-y: auto;
    height: 431px;
}

.applicant_chk .common_table td {
    padding: 0;
    text-align: center;
}

.applicant_chk textarea {
    width: 100%;
    height: 120px;
    overflow-y: auto;
    margin-top: 20px;
    font-size: 15px;
    color: var(--txt_col);
    padding: 10px;
}

.applicant_chk .common_table td.left {
    text-align: left;
}

.applicant_chk .list_container {
    display: flex;
    gap: 20px;
}

.applicant_chk .down_btn {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 5px;
}

.applicant_chk .down_btn img {
    transition: 0.3s;
}

.applicant_chk .down_btn:hover img {
    filter: brightness(0.5);
    transition: 0.3s;
}

.applicant_chk .state_tag {
    background-color: var(--btn_col);
    color: #fff;
    border-radius: 2px;
    padding: 2px 6px;
}

.applicant_chk .date_wrap .state_tag.waiting {
    background-color: #000;
}

.applicant_chk .date_wrap .state_tag.finish {
    background-color: #a5a5a5;
}

.applicant_chk .btn_wrap {
    margin-top: 15px;
}

/*사이트관리*/

/*통계*/
.tab_wrap {
    display: flex;
    border-bottom: 1px solid var(--btn_col);
    margin-bottom: 20px;
}

.tab_wrap button {
    width: 120px;
    height: 40px;
    line-height: 40px;
    margin-right: 1px;
    background-color: var(--th_color);
    color: var(--btn_col);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.3s;
    border: 1px solid var(--th_color);
}

.tab_wrap button:where(.active) {
    background-color: #fff;
    border: 1px solid var(--btn_col);
    position: relative;
    transition: 0.3s;
    color: var(--accent_color);
}

.tab_wrap button:not(.active):hover {
    background-color: #d8e5ff;
    border: 1px solid #d8e5ff;
    position: relative;
    transition: 0.3s;
    color: var(--accent_color);
}

.tab_wrap button:where(.active)::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 1;
}

.tab_wrap button:not(.active):where(:hover)::before {
    background-color: #d8e5ff;
}

.report_group {
    padding: 20px;
    border: 1px solid var(--btn_col);
    box-shadow: 0px 0px 5px #4690ff40;
    border-radius: 20px;
    margin-top: 20px;
}

.report_group + .report_group {
    margin-top: 20px;
}

.report_group .table_tit {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.table_group {
    display: flex;
    flex-direction: column;
}

.report_group ._flex + ._flex {
    margin-top: 55px;
}

.report_group ._flex.large {
    max-width: 1350px;
    justify-content: space-between;
}

.report_group ._flex.small {
    max-width: 1350px;
    justify-content: space-between;
    gap: 0 20px;
    flex-wrap: wrap;
}

.report_group ._flex.small .table_group {
    flex: 1 1 30%;
}

._flex.small .table_tit {
    flex: 100%;
}

.report_group .tit_tag {
    padding: 3px 6px;
    margin-bottom: 5px;
    color: #ffd;
    text-align: center;
    background-color: var(--accent_color);
    width: auto;
    display: inline-block;
    flex: 100%;
}

.report_group .common_table table {
    left: 0;
    width: 100%;
    border-top: 1px solid var(--border_col);
}

.report_group .common_table tfoot tr {
    border-top: 1px solid var(--border_col);
}

.report_group .common_table tbody tr {
    height: unset;
}

.report_group .common_table .tfoot td {
    background-color: #f5f5f5;
}

.report_group .common_table :where(tr.tfoot, tfoot) td:first-child {
    color: var(--placeholder_col);
}

.report_group .common_table td {
    border-inline: 1px solid var(--border_col);
    height: 35px;
    font-weight: 500;
}

.report_group .common_table th {
    border: none;
    height: 30px;
}

.report_group .common_table th:first-child {
    border-left: 1px solid var(--border_col);
}

.report_group .common_table th:last-child {
    border-right: 1px solid var(--border_col);
}

.ga_content_wrap {
    background-color: #f5f5f5;
    width: 100%;
    height: 100%;
}

.common_table.large {
    width: 600px;
}

.tag_group {
    margin-bottom: 10px;
}

.tag_group span.num_tag {
    background-color: var(--th_color);
    padding: 2px 10px;
    text-align: center;
}

.tag_group .num_tag + .num_tag {
    margin-left: 3px;
}

.tag_group .num_tag span {
    color: var(--accent_color);
    font-weight: 500;
    margin-left: 5px;
}

.ga_content_wrap {
    width: 100%;
    height: 100%;
}
.com_pop {
    z-index: 9998 !important;
}

/*통계*/
