@charset "utf-8";

/* margin */
.no-margin {
    margin: 0px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}


/* a */
a {
    vertical-align: middle;
}

span {
    color: inherit;
    font-weight: inherit;
}

/* input */
input,
select,
textarea {
    border-radius: 3px;
    border: 1px solid #bababa;
    color: #444;
}

input[type='text'],
input[type='search'],
input[type='tel'],
input[type='date'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='time'],
input[type='url'],
input[type='week'],
select,
textarea {
    width: 100%;
    font-size: 15px;
    border-radius: 3px;
    background-color: #fff;
}

input[type='text'],
input[type='search'],
input[type='tel'],
input[type='date'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='time'],
input[type='url'],
input[type='week'],
select {
    height: 36px;
}

input[type='text'],
input[type='tel'],
input[type='date'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='time'],
input[type='url'],
input[type='week'],
textarea {
    padding: 12px 16px;
}

input[type='search'] {
    padding: 12px 45px 12px 16px;
}

input[type="file"] {
    display: none;
}

/* IE의 경우 */
input::-ms-clear,
input::-ms-reveal {
    display: none;
}

/* 크롬의 경우 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

.search-area {
    position: relative;
}

.search-area .search_close {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 70px;
    width: 13px;
    height: 13px;
    cursor: pointer;
}

.search-area .search_close::after {
    content: '';
    background: url('../image/common/icon_search_close02.png') no-repeat center center/100%;
    width: 13px;
    height: 13px;
    display: block;
}

.search-area .search_close.on {
    display: block;
}

textarea {
    resize: none;
    height: 316px;
    line-height: 24px;
}


::placeholder {
    color: #999;
    font-weight: 400;
}

.placeholder {
    z-index: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-weight: 400;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.placeholder span:nth-child(1) {
    font-size: 16px;
}

.placeholder span:nth-child(2) {
    font-size: 14px;
}

[disabled],
:disabled {
    pointer-events: none;
    background-color: #f6f6f6;
}

input[type='text']:disabled,
input[type='search']:disabled,
input[type='tel']:disabled,
input[type='date']:disabled,
input[type='email']:disabled,
input[type='month']:disabled,
input[type='number']:disabled,
input[type='password']:disabled,
input[type='time']:disabled,
input[type='url']:disabled,
input[type='week']:disabled,
select:disabled,
textarea:disabled {
    pointer-events: none;
    background-color: #f6f6f6;
}



/* radio */
.radio-area {
    margin-left: -3px;
}

input[type='radio'] {
    position: relative;
    top: 2px;
    left: 3px;
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 0;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    /* 화살표 없애기 공통*/
    cursor: pointer;
}

input[type="radio"]::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100%;
    border: 1px solid #bababa;
    background-color: #fff;
    cursor: pointer;
}

input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #555;
    cursor: pointer;
}

input[type="radio"]:disabled:before {
    background-color: inherit;
}

input[type='radio']+label {
    vertical-align: middle;
    padding-left: 6px;
    cursor: pointer;
}

input[type='radio']+label:not(:last-child) {
    margin-right: 30px;
}

.chk-area {
    margin-left: -3px;
}

input[type="checkbox"] {
    position: relative;
    top: 2px;
    left: 3px;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 0;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    /* 화살표 없애기 공통*/
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    border-radius: 2px;
    border: 1px solid #ccc;
    background-color: #fff;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: relative;
    z-index: 99;
    display: block;
    width: 16px;
    height: 16px;
    background: url('../image/common/chked.png') no-repeat center center/100%;
}

input[type="checkbox"]:disabled:before {
    background-color: inherit;
}

input[type="checkbox"]+label {
    padding-left: 6px;
    cursor: pointer;
}

input[type="checkbox"]+label:not(:last-child) {
    margin-right: 30px;
}





/* button */
button,
.btn {
    border-radius: 3px;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #444;
}

button[disabled],
.btn[disabled],
button:disabled,
.btn:disabled,
button[disabled]:hover,
.btn[disabled]:hover,
button:disabled:hover,
.btn:disabled:hover {
    border: none;
    color: #fff;
    background-color: #ddd;
    pointer-events: none;
    cursor: default;
}


/* basic btn */
.basic-btn {
    min-width: 100px;
    width: auto;
    padding: 0 14px;
    height: 44px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.basic01-btn {
    color: #fff;
    background-color: #555;
}

.basic01-btn:hover {
    background-color: #393939;
}

.basic02-btn {
    border: 1px solid #555;
    color: #222;
    background-color: #fff;
}

.basic02-btn:hover {
    background-color: #efefef;
}

.basic03-btn {
    color: #fff;
    background-color: #0094e9;
}

.basic03-btn:hover {
    background-color: #1769bd;
}

.basic04-btn {
    border: 1px solid #0094e9;
    color: #0094e9;
    background-color: #fff;
}

.basic04-btn:hover {
    background-color: #eef8fe;
}

.btn4 {
    padding: 0px 22px;
}

/* 네 글자 이상 */


/* Inside the table btn */
.in-table-btn {
    height: 36px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 14px;
    letter-spacing: 0.6px;
}

.in-table01-btn {
    color: #fff;
    background-color: #555;
}

.in-table01-btn:hover {
    background-color: #393939;
}

.in-table02-btn {
    border: 1px solid #555;
    color: #222;
    background-color: #fff;
}

.in-table02-btn:hover {
    background-color: #efefef;
}

.in-table03-btn {
    color: #fff;
    background-color: #0094e9;
}

.in-table03-btn:hover {
    background-color: #1769bd;
}

.in-table04-btn {
    border: 1px solid #0094e9;
    color: #0094e9;
    background-color: #fff;
}

.in-table04-btn:hover {
    background-color: #eef8fe;
}


/* On the table btn */
.on-table-btn {
    position: relative;
    height: 36px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 16px;
    letter-spacing: 0.6px;
}

.on-table-btn::after {
    content: '';
    position: relative;
    top: 0;
    right: 0;
    width: 6px;
    height: 10px;
    margin-left: 8px;
    display: block;
    background: url('../image/common/on-table-btn-arrow.png') no-repeat center center;
}

.on-table01-btn {
    color: #fff;
    background-color: #1047a1;
}

.on-table01-btn:hover {
    background-color: #0a3171;
}


/* popup btn */
.popup-btn {
    min-width: 80px;
    height: 34px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.popup01-btn {
    color: #fff;
    background-color: #555;
}

.popup01-btn:hover {
    background-color: #393939;
}

.popup02-btn {
    border: 1px solid #555;
    color: #222;
    background-color: #fff;
}

.popup02-btn:hover {
    background-color: #efefef;
}

/* .popup02-btn:hover,.popup02-btn:focus{ background-color:#efefef;} */

.popup03-btn {
    color: #fff;
    background-color: #0094e9;
}

.popup03-btn:hover {
    background-color: #1769bd;
}

.popup-btn.btn4 {
    padding: 0px 14px;
}

/* 네 글자 이상 */

/* btn-wrap */
.btn-wrap {
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-wrap .btn:not(:first-child) {
    margin-left: 10px;
}


/* icon button */
.icon_btn {}

.i_btn {
    width: 48px !important;
    min-width: unset;
    height: 44px;
    position: relative;
}

.i_btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#searchBtn::before {
    background: url('../image/common/icon-search.png') no-repeat center center;
}

.i_btn02 {
    height: 34px;
    padding: 9px 17px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    border: 1px solid #4b4b4b;
    color: #444;
    background-color: #fff;
}

.i_btn02:hover {
    background-color: #efefef;
}

.icon_mammoth-BI {
    width: 14px;
    height: 13px;
    margin-right: 4px;
    background: url('../image/icon_mammoth-BI.png') no-repeat center center;
}

.icon_excel {
    width: 17px;
    height: 13px;
    margin-right: 4px;
    background: url('../image/icon_excel.png') no-repeat center 1px;
}

.icon_img_download {
    width: 15px;
    height: 15px;
    margin-right: 4px;
    background: url('../image/icon_img_download.png') no-repeat center center;
}

/* fab button */
.fab-btn {
    z-index: 25;
    position: absolute;
    top: 82px;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: url('../image/fab-btn-back.png') no-repeat center center/contain;
    box-shadow: 0 7px 7px rgba(0, 0, 0, .12);
}

.fab-btn.fab-btn02 {
    width: 90px;
    height: 90px;
}

.fab-btn a {
    padding: 50px 12px 20px;
    line-height: 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.fab-btn.book-icon a {
    background: url('../image/book-icon.png') no-repeat center 17px;
}

.fab-btn.book-lib-icon a {
    background: url('../image/book-lib-icon.png') no-repeat center 17px;
}

.fab-btn.cloud-save-icon a {
    background: url('../image/cloud-save-icon.png') no-repeat center 17px;
    /* line-height: 22px; */
}

.fab-btn.user_research_icon a {
    background: url('../image/use_research_ico.png') no-repeat center 17px;
}

.fab-btn.add-in-icon a {
    background: url('../image/add-in-icon.png') no-repeat center 17px;
}

/* tab */
.tab-area {}

.tab-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-area ul li {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #777;
    background-color: #fff;
}

.tab-area ul li {
    position: relative;
    border: 1px solid #d6dcdf;
    border-right: 0;
    border-bottom: 0;
}

.tab-area ul li:first-child {
    border-top-left-radius: 4px;
}

.tab-area ul li:last-child {
    border-right: 1px solid #d6dcdf;
    border-top-right-radius: 4px;
}

.tab-area ul li:hover,
.tab-area ul li.on {
    border: 1px solid #0094e9;
    color: #fff;
    background-color: #0094e9;
}

.tab-area ul li:not(:last-child):hover::after,
.tab-area ul li:not(:last-child).on::after {
    content: '';
    z-index: 1;
    position: absolute;
    top: -1px;
    right: -2px;
    width: 1px;
    height: calc(100% + 2px);
    background-color: #0094e9;
}


/* search */
.search-area {
    width: 100%;
    display: flex;
    align-items: center;
}

.search-area #searchBtn {
    margin-left: 6px;
}

/* select */
.select-area {
    width: 100%;
    margin-right: 10px;
}

select {
    padding: 0 28px 0 15px;
    border: 1px solid #bababa;
    color: #444;
    background: url('../image/common/select-arrow.png') no-repeat calc(100% - 13px) center;
    cursor: pointer;
}

.select-area select:not(:first-of-type) {
    margin-left: 10px;
}



/* 텍스트 정렬 */
.txt_center {
    text-align: center;
}

.txt_left {
    text-align: left;
}

.txt_right {
    text-align: right;
}

.txt_bold {
    font-weight: 600;
}


/* 비노출 */
.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

.blind_txt {
    font-size: 0 !important;
}

/* 한줄생략 처리 */
.ellipsis {
    position: relative;
    display: inline-block;
    /*width:100%;*/
    width: auto;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.tutorialService-list .ellipsis{
    width: 680px;
}

/* .ellipsis02{position: relative; display:inline-block; width: auto; max-width: 100%; overflow:hidden; text-overflow:ellipsis; white-space: nowrap; text-align: left ; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical} */
.ellipsis02 {
    width: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

/* a.ellipsis{display: inline-flex; align-items: center;} */
/* .popup_btn.ellipsis{width:auto; } */
a.ellipsis:hover,
.popup_btn.ellipsis:hover,
a:hover span.ellipsis {
    color: #0094e9;
}

/* a.ellipsis:hover:after,.popup_btn.ellipsis:hover::after{content: ''; position: absolute; bottom:0; left: 0; width: 100%; border-bottom: 1px solid #0094e9;} */


/* font color */
.fc01 {
    color: #1047a1;
}

.fc02 {
    color: #0047bb;
}

.fc03 {
    color: #0094e9;
}

.fc04 {
    color: #ea002c !important;
}

.fc05 {
    color: #801819;
}

.fc06 {
    color: #84bd00;
}

.ablbox {
    position: absolute;
}

.dpNone {
    display: none;
}

.df {
    display: flex;
}

.dif {
    display: inline-flex;
}

.db {
    display: block;
}

.mt6 {
    margin-top: 6px;
}

.bold {
    font-weight: 600;
}

/* tag */
.tag {
    display: inline-block;
    min-width: 86px;
    width: auto;
    height: 26px;
    padding: 0 10px;
    margin-right: 9px;
    flex-shrink: 0;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    background-color: #fff;
}

.tag01 {
    border: 1px solid #0094e9;
    color: #0094e9;
}

.tag02 {
    border: 1px solid #555;
    color: #444;
}

.tag03 {
    border: 1px solid #1047a1;
    color: #1047a1;
}

.tag04 {
    border: 1px solid #528c00;
    color: #528c00;
}

.new {
    display: inline-block;
    height: 18px;
    padding: 0 8px;
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    border-radius: 3px;
    color: #fff;
    background-color: #0094e9;
}

/* essential */
.essential {
    position: relative;
}

.essential::after {
    content: '*';
    position: absolute;
    bottom: 0;
    right: -13px;
    font-size: 14px;
    color: #ea66a1;
}

/* icon */
.badge-wrap {
    align-items: flex-start !important;
}

.badge-wrap:hover {
    text-underline-position: unset !important;
    color: #fff;
    text-decoration: none !important;
}

.badge-wrap:hover .badge_file {
    text-underline-position: under;
    color: #0094e9;
    text-decoration: underline;
    cursor: pointer;
}

.badge {
    display: inline-block;
    border-radius: 3px;
    padding: 0 8px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    vertical-align: middle;
    font-size: 11px;
    font-weight: 500;
    color: #FFF;
}

.badge.green {
    background: #6d9c00;
}

.badge.blue {
    background: #323a79;
}

.badge.sky {
    background: #0094e9;
}

.badge.orange {
    background: #dc7922;
}

.badge.mint {
    background: #45a594;
}

.badge.purple {
    background: #6854b5;
}

.badge.brown {
    background: #9c5336;
}

.badge.wine {
    background: #cf3067;
}

.badge.gray {
    background: #777777;
    width: 34px !important;
    padding: 0 !important;
}

.badge-wrap .badge_file {
    width: calc(100% - 34px);
}

.badge.blue_line {
    border: 1px solid #1047a1;
    color: #1047a1;
    background: #FFF;
}

.badge.sky_line {
    border: 1px solid #0094e9;
    color: #0094e9;
    background: #FFF;
}

.badge.gray_line {
    border: 1px solid #555555;
    color: #444;
    background: #FFF;
}

.badge.green_line {
    border: 1px solid #6d9c00;
    color: #6d9c00;
    background: #FFF;
}

.badge.orange_line {
    border: 1px solid #dc7922;
    color: #dc7922;
    background: #FFF;
}

.badge.badge_min_100 {
    min-width: 100px !important;
    padding: 0 8px !important;
    font-size: 13px;
    line-height: 21px;
}

.badge.badge_min_80 {
    min-width: 80px !important;
    padding: 0 8px !important;
    font-size: 13px;
}

.badge.badge_min_86 {
    min-width: 86px !important;
    padding: 0 8px !important;
    font-size: 13px;
    line-height: 21px;
}


/* .accordion-btn{position: relative; width: 14px; height: 14px; margin: auto; background:url('../image/accordion-btn01.png') no-repeat center center; }
.accordion-btn.active{position: relative; width: 14px; height: 14px; background:url('../image/accordion-btn02.png') no-repeat center center;} */
.accordion-btn {
    position: relative;
    width: 14px;
    height: 14px;
    margin: auto;
}

.accordion-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
    background-color: #777;
    transition: all ease-in-out .4s;
}

.accordion-btn::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
    background-color: #777;
}

.accordion-btn.active::before {
    transform: rotate(90deg);
}

.notice-icon {
    padding-left: 24px;
    background: url('../image/notice-area-icon.png') no-repeat left 2px/16px 16px;
}

.note {
    display: inline-block;
    font-size: 13px;
    color: #777;
}

.note.notice-icon {
    background-position: left 5px;
}

.board .table-notice {
    margin-bottom: -20px;
}

.table-notice .note.notice-icon {
    padding-bottom: 7px;
    background-position: left 0px;
    word-break: keep-all;
}

.remove_btn {
    position: absolute;
    background: url('../image/remove_btn-icon.png') no-repeat center center;
    width: 13px;
    height: 13px;
}

.err-txt {
    display: inline-block;
    margin-top: 7px;
    line-height: 20px;
    font-size: 14px;
    color: #1047a1;
}

.inputVal-icon-area {
    z-index: 1;
    position: absolute;
    display: flex;
    align-items: center;
}

.inputVal-icon-area>div:not(:first-child) {
    margin-left: 10px;
}

.inputVal-icon-area .inputVal-remove {
    display: none;
    position: relative;
    width: 18px;
    height: 18px;
    background: url('../image/inputVal-remove.png') no-repeat center center;
    cursor: pointer;
}

.inputVal-icon-area .inputVal-remove.on {
    display: block;
}

.inputVal-icon-area .eye-icon {
    width: 18px;
    height: 18px;
    background: url('../image/pw-eyes02.png') no-repeat center center;
    cursor: pointer;
}

.inputVal-icon-area .eye-icon.on {
    width: 18px;
    height: 18px;
    background: url('../image/pw-eyes01.png') no-repeat center center;
}

.tooltipArea {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}

.tooltipArea .tooltipButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('./../image/btn_tooltip.png') 0 0/100% auto no-repeat;
    transition: background 0.4s;
}


/* .tooltipArea .tooltipButton{
    background: url('./../image/common/icon_search_page_tabTooltip.png') 0 0/100% auto no-repeat;
} */
.tooltipArea .tooltipButton.active {
    background: url('./../image/btn_tooltip_active.png') 0 0/100% auto no-repeat;
}

.tooltipArea .tooltipContent {
    position: absolute;
    width: 312px;
    height: auto;
    z-index: 101;
    display: none;
    left: 15px;
    transform: translateX(-50%);
    top: 38px;
    padding: 21px 20px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 3px 5px 9px 0px rgba(0, 0, 0, 0.2);
}

.tooltipContent::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 142px;
    transform: rotate(-135deg);
    width: 14px;
    height: 14px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    background-color: #fff;
}

/* .tooltipArea .tooltipContent{ position: absolute; width: 312px; height: auto; background: url('./../image/common/page_search_tooltipBubble.png') no-repeat; z-index: 101; display: none; left: 15px; transform: translateX(-50%); top: 30px; padding: 45px 30px 20px;} */
.tooltipArea .tooltipContent .tooltip-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tooltipArea .tooltipContent .tooltip-head .tit {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 18px;
}

.tooltipArea .tooltipContent p.content {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #444444;
    word-break: keep-all;
    text-align: left;
}

.tooltipArea .closeButton {
    /* width: 13px;
    width: 13px; */
    background: url('./../image/common/icon_search_close02.png') no-repeat;
    /* 2023.11.30 웹 접근성 시정 조치 */
    width: 16px;
    height: 16px;
    padding: 1px;
    background-size: 16px;
    /* ----- 2023.11.30 웹 접근성 시정 조치 ----- */
}


/* .tooltip-wrap{text-align: right}
.tooltip-box{position: relative; align-items:center;}
.tooltip-box a{vertical-align:baseline; text-underline-position: under; color: #0094e9; text-decoration: underline;}
.tooltip-icon{display: block; width: 18px; height: 18px; margin-left: 6px; font-size: 15px; background: url('../image/tooltip-icon.png') no-repeat right center; cursor: pointer;} */

.tooltip-area {
    visibility: hidden;
    opacity: 0;
    text-align: left;
    z-index: 1;
    position: absolute;
    bottom: 40px;
    right: -32px;
    min-width: 100px;
    padding: 12px 14px 15px 21px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 3px 5px 9px 0px rgba(0, 0, 0, 0.2);
    transition: all .4s ease-in-out;
}

.tooltip-area::before {
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: 0;
    background-color: transparent;
}

.tooltip-area::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 33px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    background-color: #fff;
}

.tooltip-area.on {
    visibility: visible;
    opacity: 1;
}

.tooltip-area .tooltip-head .tooltip-close {
    position: relative;
    top: 0;
    left: calc(100% - 12px);
    width: 12px;
    height: 12px;
    margin-bottom: 6px;
    background: url('../image/tooltip-close.png') no-repeat center center;
}

.tooltip-area .tooltip-head em {
    line-height: 22px;
    font-size: 14px;
    font-weight: 600;
    color: #1047a1;
}

.tooltip-area .tooltip-body {
    padding: 3px 8px 0 0;
    line-height: 20px;
    font-size: 13px;
}


.date-icon {
    position: relative;
}

.date-icon::before {
    content: '';
    width: 14px;
    height: 15px;
    background: url("../image/common/icon_datepicker.png") no-repeat center center/contain;
}

.date-icon.on::before {
    width: 14px;
    height: 15px;
    background: url("../image/common/icon_datepicker-hov.png");
}

.map-icon {
    position: relative;
}

.map-icon::before {
    content: '';
    width: 12px;
    height: 15px;
    background: url("../image/map-icon.png") no-repeat center center/contain;
}

.map-icon.on::before {
    width: 12px;
    height: 15px;
    background: url("../image/map-icon-hov.png");
}

.data-icon {
    position: relative;
}

.data-icon::before {
    content: '';
    position: relative;
    top: -1px;
    width: 12px;
    height: 9px;
    background: url("../image/data-icon.png") no-repeat center 0px/contain;
}

.data-icon.on::before {
    width: 12px;
    height: 9px;
    background: url("../image/data-icon-hov.png");
}


/* 스킵메뉴 */
.skipMenu {
    position: relative;
}

.skipMenu a {
    position: absolute;
    z-index: 3000;
    left: 0px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .4s ease-in-out;
    width: 150px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #1047a1;
}

.skipMenu a:active,
.skipMenu a:focus {
    top: 0;
}

/* ============================================= sub ======================================= */

/* contents-body */
.contents-body {
    width: 100%;
    /*max-width: 1360px;*/
    margin: 0 auto;
}


/* search-wrap */
.search-wrap {
    width: 100%;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.search-wrap input[type='search'],
.search-wrap select {
    height: 44px;
}


/* table-top */
.table-top {
    display: flex;
    margin-bottom: 15px;
}

.table-top .btn-wrap {
    display: flex;
}


/* table */
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

tr {
    height: 55px;
}

thead tr:last-child th {
    border-bottom: 1px solid #555;
}

tbody tr:not(:first-child) th,
tbody tr:not(:first-child) td {
    border-top: 1px solid #e3e3e3;
}

th,
td {
    padding: 14px 12px;
    vertical-align: middle;
}

th {
    font-weight: 600;
    color: #222;
}

td {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
    word-break: break-all;
}

thead th {
    font-size: 17px;
}

tbody th {
    padding: 18px 30px;
    font-size: 16px;
    border-right: 1px solid #e6e6e6;
    background-color: #f9fbfe;
}

td a:not(.btn):hover {
    text-underline-position: under;
    color: #0094e9;
    text-decoration: underline;
    cursor: pointer;
}

td a:hover span.ellipsis {
    text-underline-position: under;
    color: #0094e9;
    text-decoration: underline;
    cursor: pointer;
}


/* --------------------- board --------------------- */
.board table {
    border-spacing: 0;
    border-collapse: separate;
    border-top: 2px solid #555;
    border-bottom: 1px solid #555;
}

.board table:not(:first-child) {
    margin-top: 30px;
}

/* board-list */

.board-list.table-x-scroll {
    display: block;
    overflow-x: scroll;
}

.table-scroll {
    overflow: scroll;
    width: 100%;
}

.board-list thead th {
    background-color: #f9fbfe;
}

.board-list tbody td a.ellipsis {
    line-height: 26px;
}

.board-list tbody td a.lock {
    position: relative;
    overflow: visible;
    padding-right: 13px;
}

.board-list tbody td a.lock:after {
    content: '';
    position: absolute;
    width: 13px;
    height: 16px;
    right: -6px;
    bottom: 6px;
    background: url('../image/lock-icon.png') no-repeat center;
}

.board-list tbody td span.ellipsis {
    display: inline-block;
    line-height: 26px;
    vertical-align: middle;
}

.board-list .fixation {
    background-color: #f9f9f9;
}

.board-list tbody td .new {
    margin-left: 10px;
    margin-top: 4px;
}

/* board-view */
.board-view01 tbody td a:hover span {
    color: #0094e9;
}

.board-view01 .view-table01 .view-head td {
    padding: 31px 16px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.board-view01 .view-table01 .view-head td .left {
    display: flex;
    align-items: flex-start;
}

.board-view01 .view-table01 .view-head td .left .tag {
    margin-top: 8px;
}

.board-view01 .view-table01 .view-head td .left .tit {
    font-size: 26px;
    font-weight: 600;
    line-height: 40px;
    color: #111;
}

.board-view01 .view-table01 .view-head td .right {
    margin-left: 120px;
    line-height: 14px;
}

.board-view01 .view-table01 .view-head td .right p {
    font-size: 14px;
}

.board-view01 .view-table01 .view-head td .right p:not(:first-child) {
    margin-left: 20px;
    padding-left: 21px;
    border-left: 1px solid #ccc;
}

.board-view01 .view-table01 .view-head td .right .eye-icon {
    padding-left: 23px;
    background: url('../image/eye-icon.png') no-repeat left center;
}

.board-view01 .view-table01 .attached_file {
    border-bottom: 1px solid #555;
}

.board-view01 .view-table01 .attached_file td {
    padding: 20px 16px;
}

.board-view01 .view-table01 .attached_file td ul li:not(:first-child) {
    margin-top: 4px;
}

.board-view01 .view-table01 .attached_file td ul li a {
    align-items: baseline;
    line-height: 26px;
}

.board-view01 .view-table01 .attached_file td ul li .paper_clip-icon {
    margin-right: 7px;
}

.board-view01 .view-table01 .view-details td {
    padding: 31px 16px;
    line-height: 26px;
    letter-spacing: -0.01em;
}

.board-view01 .view-page-area {
    border-bottom: 1px solid #555;
}

.board-view01 .view-page-area li {
    height: 67px;
}

.board-view01 .view-page-area li:not(:first-child) {
    border-top: 1px solid #e6e6e6;
}

.board-view01 .view-page-area li a {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.board-view01 .view-page-area li a:hover {
    color: #444;
    background-color: #f9f9f9;
}

.board-view01 .view-page-area li a:hover span {
    color: #444;
}

.board-view01 .view-page-area li a span {
    width: calc(100% - 228px);
}

.board-view01 .view-page-area li.next p:first-child {
    max-width: 65px;
    width: 100%;
}

.board-view01 .view-page-area li.prev p:first-child {
    padding-left: 23px;
    margin-right: 56px;
    background: url('../image/view-page-prev.png') no-repeat left center;
}

.board-view01 .view-page-area li.next p:first-child {
    padding-left: 23px;
    margin-right: 56px;
    background: url('../image/view-page-next.png') no-repeat left center;
}

.board-view01 .view-page-area li a p:last-child {
    margin-left: 15px;
    max-width: 90px;
    width: 100%;
    font-size: 15px;
    text-align: center;
}

/* answer-table */
.answer-table th {
    background-color: #f9f9f9;
}


/* board-write */

.board-write table td>div:not(:first-child) {
    margin-top: 9px;
}

.board-write td .radio-area label {
    font-size: 16px;
}

/* --------------------- // board --------------------- */


/* --------------------- .page-bottom-wrap --------------------- */
.page-bottom-wrap {
    position: relative;
    margin-top: 30px;
}

/* pagenation-area */
.pagenation-area {
    position: relative;
    display: block;
    width: auto;
    text-align: center;
    font-size: 12px;
}

.pagenation-area a {
    font-size: 14px;
}

.pagenation-area::after,
.pagenation-area ul::after,
.pagenation-area ul li::after {
    content: "";
    display: block;
    clear: both;
}

.pagenation-area ul {
    display: inline-block;
    width: auto;
}

.pagenation-area ul li {
    float: left;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
}

.pagenation-area ul li:last-child {
    border-right: 1px solid #e6e6e6;
}

.pagenation-area ul li.br {
    border-radius: 3px !important;
}

.pagenation-area ul li a {
    display: block;
    color: #666666;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.pagenation-area ul li.on {
    background: #666666;
    border: 1px solid #666;
}

.pagenation-area ul li.on+li {
    border-left: 1px solid #666;
}

.pagenation-area ul li.on a {
    color: #FFF;
}

.pagenation-area ul li:first-child {
    border-radius: 3px 0px 0px 3px;
}

.pagenation-area ul li:last-child {
    border-radius: 0px 3px 3px 0px;
}

.pagenation-area ul li.btn_page_prev a,
.pagenation-area ul li.btn_page_next a {
    width: 40px;
    height: 40px;
}


.pagenation-area ul li.btn_page_first a {
    background: url('../image/common/icon_page_arrow01.png') no-repeat center center;
}

.pagenation-area ul li.btn_page_prev a {
    background: url('../image/common/icon_page_arrow02.png') no-repeat center center;
    ;
}

.pagenation-area ul li.btn_page_next a {
    background: url('../image/common/icon_page_arrow02.png') no-repeat center center;
    ;
    transform: rotate(180deg);
}

.pagenation-area ul li.btn_page_last a {
    background: url('../image/common/icon_page_arrow01.png') no-repeat center center;
    ;
    transform: rotate(180deg);
}


.page-bottom-wrap .btn-wrap.ablbox {
    top: 0;
    right: 0;
}

/* --------------------- page-bottom-wrap --------------------- */

/* ============================================= // sub ======================================= */



/* ============================================= popup ======================================= */

.contents .popup_notice a {
    display: block;
    position: relative;
    width: 100%;
    height: 94%;
    z-index: 9;
}

.contents .popup_notice .noti_today {
    display: block;
    position: fixed;
    z-index: 13;
    width: 100%;
    height: 39px;
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
}

.contents .popup_notice .noti_today label {
    color: #fff !important;
}

.contents .popup_notice .noti_today label span {
    margin-left: 8px;
}

/* --------------------- modal popup --------------------- */
/* .popup_container {position: fixed; width: 100%; height: 100%; z-index: 2001; display: none; background-color: rgba(0, 0, 0, 0.3); top: 0; left: 0;} */
/* .popup_container {position: ; width: 100%; height: 100%; z-index: 2001; display: none; background-color: rgba(0, 0, 0, 0.3); top: 0; left: 0;} */
/* .popup_container {display: none; left: 50%; top: 50%; position: fixed;  z-index: 2003;  transform: translate(-50%, -50%);} */
.popup_container {
    display: none;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2003;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup_container.on {
    display: block;
}

.popup_container table td {
    table-layout: fixed;
}


/* .popup_container .modal_popup {position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); background: #FFF; box-shadow: 0 0 10px #888; border-radius: 10px; overflow: hidden; z-index: 2; font-family: 'Pretendard';} */

.popup_container .layer_popup {
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-shadow: 4px 7px 14px 0px rgba(0, 0, 0, 0.3);
    display: block;
    font-family: 'Pretendard';
    border-radius: 3px;
    background-color: #fff;
}


/* popup 사이즈 */

/* 예외 */
.popup_container .layer_popup.w700 {
    width: 700px !important;
}

.popup_container .layer_popup.w900 {
    width: 900px !important;
}

.popup_container .layer_popup.w1100 {
    width: 1100px !important;
}

.popup_container .layer_popup.w1200 {
    width: 1200px !important;
}

.popup_container .layer_popup.w1000 {
    width: 1000px !important;
}

.popup_container .layer_popup.large {
    width: 980px !important;
}

.popup_container .layer_popup.medium {
    width: 880px
}

.popup_container .layer_popup.small {
    width: 740px
}

.popup_container .layer_popup .popup_head {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #1047a1;
    padding: 20px 0 9px 0;
    margin: 0 30px;
    width: calc(100% - 60px);
    align-items: center;
}

.popup_container .layer_popup .popup_head.h54 {
    height: 54px;
}

.popup_container .layer_popup .popup_head.h55 {
    height: 55px;
}

.popup_container .layer_popup .popup_head span {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #1047a1;
}

.popup_container .layer_popup .btn_popup_close {
    width: 17px;
    height: 17px;
    background: url("./../image/common/icon_search_close02.png") 0 0/100% auto no-repeat;
    margin-right: 6px;
}

.popup_container .layer_popup .popup_content {
    max-height: 686px;
    overflow-y: auto;
    padding: 20px 30px 20px;
}

.popup_content>.popup_content_title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 14px;
}

.popup_content>div>span {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
}

.popup_content>div>ul li {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    padding-left: 8px;
}

.popup_content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
}

.popup_btn {
    font-size: 16px;
    font-weight: 500;
}

.popup_btn:hover {
    text-underline-position: under;
    color: #0094e9;
    text-decoration: underline;
    cursor: pointer;
}

.popup_container .layer_popup.img-pop img {
    width: 100%;
}

/* =================== */


/* modal popup 01 */
.modal-popup {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* height:calc(100vh - 8%); */
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.18);
}

/* .modal-popup{ position: relative; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: 1360px; min-width: 984px; width: calc(100% - 40px); min-height: 765px; height: 100%; max-height:765px; background-color: #fff; border-radius: 4px; } */
/* .modal-popup{max-width: 1360px; min-width: 984px; width: calc(100% - 40px); min-height: 765px; height: calc(100% - 40px); max-height:765px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background-color: #fff; border-radius: 4px; } */

.modal-popup .popup_head {
    text-align: center;
    padding-bottom: 25px;
    margin: 0 40px;
}

.modal-popup .popup_head h3 {
    font-size: 34px;
    font-weight: 600;
    line-height: 76px;
    color: #222;
}

.modal-popup .popup_head p {
    font-size: 16px;
    line-height: 26px;
    color: #444;
    font-weight: 500;
}

.modal-popup .btn_popup_close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 17px;
    height: 17px;
    background: url('../image/modal-popup-close.png') no-repeat center center;
}

.modal-popup .popup_content {
    padding: 0 40px 40px;
    height: 100%;
}

.modal-popup .btn-wrap {
    margin-top: 30px;
}

.modal-popup .plus-box .btn-wrap {
    margin-top: 0;
}

/* 2023.10.24 이메일 수신 거부 팝업 */

.popup_btn.email_popup_btn:hover {
    text-decoration: none;
}

.email_popup_content img {
    margin: 0 auto;
    display: block;
    padding: 20px 0;
}

.popup_content p.email_content_center {
    padding: 20px;
    background: #f0f5fb;
    border-radius: 3px;
    color: #111111;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    text-align: center;
}

.popup_content p.email_content_bottom {
    padding: 20px;
    border-radius: 3px;
    color: #111111;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
}

/* 2023.11.01 메인 카카오톡 채널 추가, 2023.11.16 유튜브 바로가기 추가 */

.footer_btn_wrap {
    margin: 20px 0;
    overflow: hidden;
    display: flex;
    justify-content: end;
}

.btn.youtubequick_btn {
    margin-right: 12px;
}

.btn.kakaoch_btn,
.btn.youtubequick_btn {
    /* background-color: #fae100; */
    background-color: #c8c8c8;
    width: 45px;
    height: 45px;
    border-radius: 100%;
}

.kakaoch_btn a:after,
.youtubequick_btn a:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../image/kakaoch_icon.png) no-repeat center center;
    background-size: 75%;
    vertical-align: middle;
}

.youtubequick_btn a:after {
    background: url(../image/youtube_icon.png) no-repeat center center;
    background-size: 80%;
}

@media screen and (max-width:1024px) {

    /* body{min-width:1024px;} */
    .modal-popup {
        left: 20px;
        transform: translate(0, -50%);
    }

}

/* modal popup 02 */
.modal-popup02 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 500px;
    padding: 22px 30px 30px;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #999;
    background-color: #fff;
    box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.18);
}

.modal-popup02 .popup_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    padding-bottom: 16px;
    border-bottom: 2px solid #1047a1;
}

.modal-popup02 .popup_head h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1047a1;
}

.modal-popup02 .btn_popup_close {
    width: 17px;
    height: 17px;
    background: url('../image/modal-popup-close.png') no-repeat center center;
}


.modal-popup02 .popup_content {
    padding-top: 18px;
}

.modal-popup02 .popup_content>.txt-box p {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #111;
}

.modal-popup02 .popup_content>.btn-wrap {
    margin-top: 30px;
}

/* --------------------- // modal popup --------------------- */


/* --------------------- message popup --------------------- */
.dim {
    z-index: 2002;
    position: fixed;
    top: 0;
    left: 0;
    width: 1000%;
    min-width: 1024px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.dim.z {
    z-index: 2009;
}

.message-popup {
    display: none;
    z-index: 2010;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 320px;
    padding: 36px 26px 26px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #999;
    background-color: #fff;
    box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.18);
}

.message-popup .message-icon-area {
    margin: 3px auto 16px;
}

.message-popup .message-icon-area i.emailAuthentication-icon {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 42px;
    background: url('../image/emailAuthentication-icon.png') no-repeat center center;
}

.message-popup .message-icon-area i.restrict-icon {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 46px;
    background: url('../image/common/popup_need_login.png') no-repeat center center;
}

.message-popup .message-icon-area i.caution-icon {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 42px;
    background: url('../image/caution-icon.png') no-repeat center center;
}

.message-popup .message {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    color: #444;
}

.message-popup .btn-wrap {
    margin-top: 24px;
}

.message-popup02 {
    min-width: 450px;
}

.message-popup02 .message {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #444;
}

.message-popup02 .message strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
}

/* --------------------- // message popup --------------------- */


/* --------------------- toast popup --------------------- */

.toast-popup {
    visibility: hidden;
    opacity: 0;
    z-index: 2015;
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    min-width: 600px;
    padding: 23px 30px;
    border-radius: 6px;
    color: #fff;
    background-color: #1047a1;
    transition: all 1.2s ease-in-out;
}

.toast-popup.on {
    visibility: visible;
    top: 18%;
    opacity: 1;
}

.toast-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-popup .toast-message {
    padding-right: 10px;
    color: #fff;
}

.toast-popup .btn {
    border: 1px solid #fff;
    color: #fff;
}

/* --------------------- // toast popup --------------------- */


/* ============================================= // popup ======================================= */



/* ============================================= keyword ============================================= */

/* 추천 키워드 */
.top-keyword-area {
    display: flex;
    color: #1047a1;
    margin-bottom: 25px;
}

.top-keyword-area em {
    position: relative;
    padding-right: 14px;
    color: #1047a1;
}

.top-keyword-area em::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #d3d3d3;
}

.top-keyword-area ul {
    display: flex;
    color: #1047a1;
}

.top-keyword-area ul li {
    position: relative;
    color: #1047a1;
    margin-left: 14px;
    cursor: pointer;
}

.top-keyword-area ul li::before {
    content: '#';
}

/* 키워드 */
.k {
    padding: 12px !important;
}

.keyword-wrap {
    display: inline-block;
}

.keyword-area {
    border-bottom: 1px solid #bababa;
}

.keyword-area:hover,
.keyword-area:focus,
.keyword-area:active,
.keyword-area.on {
    border-bottom: 1px solid #0047bb;
}

.keyword_list {
    display: flex;
    flex-wrap: wrap;
}

.keyword {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: 36px;
    margin: 0 6px 9px 0;
    padding: 0;
    line-height: 34px;
    background-color: #fff;
    box-sizing: border-box;
}

.keyword.editing {
    border: 0;
    padding: 0;
    max-width: 100%;
}

span.keyword_val {
    display: block;
    height: 36px;
    border: 1px solid #bababa;
    border-radius: 3px;
    padding: 0 50px 0 10px;
    box-sizing: border-box;
}

.keyword_input {
    display: none;
    border: none;
    padding-right: 39px !important;
    padding-left: 10px !important;
    max-width: 100%;
    width: 100%;
}

.keyword.editing .keyword_input {
    border: 1px solid #0047bb;
    outline: none;
    box-sizing: border-box;
}

.inputLi {
    width: 270px;
}

.inputLi.type02 {
    width: 100%
}

.k_input {
    border: none !important;
    margin: 0 6px 9px 0;
    padding-right: 50px;
    height: 36px;
    outline: none;
}

.k_input.on::placeholder {
    color: transparent;
    opacity: 0;
}

.edit_btn {
    position: absolute;
    top: 11px;
    right: 31px;
    background: url('../image/edit_btn-icon.png') no-repeat center center;
    width: 13px;
    height: 13px;
}

.keyword.editing .edit_btn {
    right: 11px;
    background-image: url('../image/edit_btn-icon-on.png');
}

.keyword .remove_btn {
    position: absolute;
    top: 11px;
    right: 11px;
}

.keyword.editing .remove_btn {
    display: none;
}

#virtual_dom {
    display: inline-block;
}

/* ============================================= // keyword ============================================= */

/* ============================================= notice-area ============================================= */
.notice-area {
    padding: 30px 21px 27px 21px;
    border-bottom: 1px solid #e3e3e3;
}

.notice-area em {
    color: #111;
}

.notice-area>ul {
    margin: 15px 0 0 18px;
}

.notice-area>ul li {
    line-height: 24px;
    font-size: 15px;
    color: #666;
}

.notice-area ul ul {
    margin: 3px 0 8px 8px;
}

/* ============================================= // notice-area ============================================= */


/* ============================================= plus-box ============================================= */

.plus-box {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    font-size: 15px;
    line-height: 23px;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    box-sizing: border-box;
}

.plus-box .btn-wrap {
    margin-left: 20px;
}


.plus-box02 {
    max-width: 460px;
    margin: 40px auto 0;
    padding-top: 50px;
    border-top: 1px solid #ccc;
    justify-content: space-between;
    align-items: center;
}

.plus-box02 .txt-box {
    font-size: 14px;
}

.plus-box02 .btn {
    font-size: 14px;
}

/* ============================================= // plus-box ============================================= */


/* ============================================= sign_up-step-area , delete_account-step-area ============================================= */

.sign_up-step-area ul,
.delete_account-step-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign_up-step-area ul li,
.delete_account-step-area ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sign_up-step-area ul li:not(:first-child),
.delete_account-step-area ul li:not(:first-child) {
    position: relative;
    padding-left: 88px;
}

.sign_up-step-area ul li:not(:first-child)::before,
.delete_account-step-area ul li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 37px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e4e4e4;
}

.sign_up-step-area ul li i,
.delete_account-step-area ul li i {
    position: relative;
    display: inline-block;
    width: 74px;
    height: 74px;
    border-radius: 74px;
    background-color: #ccc;
}

.sign_up-step-area ul li.on i,
.delete_account-step-area ul li.on i {
    background-color: #0094e9;
}

.sign_up-step-area ul li:nth-child(1) .sign_up-step01-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/sign_up-step01-icon.png') no-repeat center center;
}

.sign_up-step-area ul li:nth-child(2) .sign_up-step02-icon:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    background: url('../image/sign_up-step02-icon.png') no-repeat center center;
}

.sign_up-step-area ul li:nth-child(3) .sign_up-step03-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    width: 100%;
    height: 100%;
    background: url('../image/sign_up-step03-icon.png') no-repeat center center;
}

.delete_account-step-area ul li:nth-child(1) .delete_account-step01-icon:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/delete_account-step01-icon.png') no-repeat center center;
}

.delete_account-step-area ul li:nth-child(2) .delete_account-step02-icon:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    background: url('../image/delete_account-step02-icon.png') no-repeat center center;
}

.delete_account-step-area ul li:nth-child(3) .delete_account-step03-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    width: 100%;
    height: 100%;
    background: url('../image/delete_account-step03-icon.png') no-repeat center center;
}

.sign_up-step-area ul li>span,
.delete_account-step-area ul li>span {
    margin-top: 13px;
    font-size: 17px;
    font-weight: 600;
    color: #ccc;
}

.sign_up-step-area ul li.on>span,
.delete_account-step-area ul li.on>span {
    color: #222;
}

/* ============================================= // sign_up-step-area , delete_account-step-area ============================================= */


.corporate_name {
    display: none;
    margin-left: 20px;
    padding: 0 15px;
    align-items: center;
    font-size: 15px;
    border-radius: 3px;
    background-color: #eee;
}

.corporate_name.on {
    display: inline-flex;
}

/* 스크롤 막기 */
body.scrollDisable {
    overflow: hidden !important;
    height: 100%;
}

/* 세로 스크롤 막기 */
body.scrollDisableY {
    /* overflow: hidden; */
    overflow-y: hidden;
    height: 100%;

}

/* @media screen and (max-width:1200px) { 

    body.scrollDisableY{
        overflow-x: auto; 
        min-width: 1200px;
    } 
    
}  */


/* 로그인이 필요합니다 팝업 */
.systemPopupBackground {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2001;
}

.systemPopupBackground .unLoginAlertPopup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    text-align: center;
    padding: 84px 20px 28px;
    background-image: url('./../image/common/popup_need_login.png');
    background-position: center 28px;
    background-repeat: no-repeat;
    background-color: #FFF;
    border-radius: 3px;
}

.systemPopupBackground .unLoginAlertPopup p {
    font-size: 15px;
    font-weight: 500;
    color: #444444;
    margin-top: 10px;
}

.systemPopupBackground .unLoginAlertPopup .buttonFlexWrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.systemPopupBackground .unLoginAlertPopup .buttonFlexWrap a,
.systemPopupBackground .unLoginAlertPopup .buttonFlexWrap button {
    display: block;
    width: 80px;
    font-size: 15px;
    font-weight: 500;
    height: 34px;
    line-height: 34px;
    margin: 0 5px;
    border-radius: 3px;
}

.systemPopupBackground .unLoginAlertPopupClose {
    border: 1px solid #555555;
}

.systemPopupBackground .unLoginAlertPopupLoginLink {
    color: #FFF;
    background: #0094e9;
}



/* ============================================= captcha-area ============================================= */
.captcha-area {
    margin-top: 30px;
}

/* Captcha 프로그램 영역 표시 */
.captcha-area .box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    height: 100px;
    background-color: pink;
}

/* Captcha 프로그램 영역 표시 */

/* ============================================= // captcha-area ============================================= */



/* ============================================= scrollTop 버튼 ============================================= */
/* 스크롤시 버튼 위치 변경 이벤트 적용시 적용할 CSS */
.fixedUpButton {
    position: absolute;
    /* position: fixed; */
    z-index: 302;
    width: 46px;
    height: 46px;
    background: #777;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    /* transition: opacity 0.5s,top 0.2s; */
    transition: opacity 0.5s;
    opacity: 0;
    right: 20px;
    /* left: 50%; */
    /* transform: translateX(634px); */
    /* bottom: 272px; */
    bottom: 0;
}

/* .fixedUpButton.ts{transition: opacity 0.5s,top 0.2s; } */
/* 스크롤시 버튼 위치 변경 이벤트 적용시 적용할 CSS */

.fixedUpButton .fixedUpButtonInner {
    color: #FFF;
    text-align: center;
    line-height: 47px;
}

.fixedUpButton.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================= // scrollTop 버튼 ============================================= */

/* ============================================= file-list ============================================= */

.file-list {
    position: relative;
    margin-left: 20px;
    font-size: 15px;
}

.file-list .remove_btn {
    right: -20px;
    top: 8px;
}



/* ============================================= // file-list ============================================= */

/* ============================================= tooltip-box ============================================= */
.tooltip-wrap {
    text-align: right
}

.tooltip-box {
    position: relative;
    align-items: center;
}

.tooltip-box a {
    vertical-align: baseline;
    text-underline-position: under;
    color: #0094e9;
    text-decoration: underline;
}

.tooltip-icon {
    display: block;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    font-size: 15px;
    background: url('../image/tooltip-icon.png') no-repeat right center;
    cursor: pointer;
}

.tooltip-icon.tooltip-icon02 {
    position: absolute;
    right: -23px;
    top: 9px;
}

.tooltip-area {
    visibility: hidden;
    opacity: 0;
    text-align: left;
    z-index: 1;
    position: absolute;
    bottom: 40px;
    right: -32px;
    min-width: 100px;
    padding: 12px 14px 15px 21px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 3px 5px 9px 0px rgba(0, 0, 0, 0.2);
    transition: all .4s ease-in-out;
}

.tooltip-area.tooltip-area02 {
    right: -55px;
}

.tooltip-area::before {
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: 0;
    background-color: transparent;
}

.tooltip-area::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 33px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    background-color: #fff;
}

.tooltip-area.on {
    visibility: visible;
    opacity: 1;
}

.tooltip-area .tooltip-head .tooltip-close {
    position: relative;
    top: 0;
    left: calc(100% - 12px);
    width: 12px;
    height: 12px;
    margin-bottom: 6px;
    background: url('../image/tooltip-close.png') no-repeat center center;
}

.tooltip-area .tooltip-head em {
    line-height: 22px;
    font-size: 14px;
    font-weight: 600;
    color: #1047a1;
}

.tooltip-area .tooltip-body {
    padding: 3px 8px 0 0;
    line-height: 20px;
    font-size: 13px;
}

/* ============================================= // tooltip-box ============================================= */

/* ============================================= captcha-area ============================================= */
.captcha-area {
    margin-top: 30px;
}

.captcha-area p {
    margin-left: 5px;
    font-size: 15px;
    color: #111;
}

.captcha-area .captcha {
    width: 256px;
    height: 44px;
    margin: 0 12px 0 46px;
}

.captcha-area .btn-wrap {
    display: block;
}

.captcha-area .btn-wrap button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 87px;
    height: 20px;
    font-size: 12px;
    border: 1px solid #7f7f7f;
    background-color: #f2f2f2;
}

.captcha-area .btn-wrap button:not(:last-child) {
    margin-bottom: 4px;
}

.captcha-area .btn-wrap .reload_btn-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background: url('./../image/captcha-reload.png') no-repeat right center;
}

.captcha-area .btn-wrap .audio_btn-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background: url('./../image/captcha-audio.png') no-repeat right 1px;
}

.captcha-area .bottom {
    margin-top: 17px;
    padding-left: 105px;
}

.captcha-area .bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.captcha-area .bottom input {
    max-width: 256px;
}

/* ============================================= // captcha-area ============================================= */


/* ============================================= video ============================================= */
/* .video-js {width: 100%;}
.vjs-control{color: #fff;}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before, .vjs-icon-pause:before{color: #fff;}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before, .vjs-icon-replay:before{color: #fff;}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .vjs-icon-play:before{color: #fff;}
.video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before, .vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before{color: #fff;}
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-enter{color: #fff;}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-enter:before{color: #fff;} */
#detach-button-host {
    display: none;
}

/* ============================================= // video ============================================= */


/* ======================================== sitemap_page00 ======================================== */
/* .sitemap_page00{ height: 100%;  background: url('../image/sitemap-back.png') no-repeat right center/calc(50% - 240px);}
.sitemap_page00 .layer_close-btn{width: 17px; height: 17px; background: url('../image/common/header_close.png') no-repeat center center/100%; position: absolute; top: 32px; left:50%; transform: translateX(664px); cursor: pointer;} */
.layer-popup {
    z-index: 2000;
    position: fixed;
    top: 0;
    left: calc(-100% - 1400px);
    min-width: 1400px;
    width: 100%;
    height: 100%;
    transition: left 1.6s ease-in-out;
}

.layer-popup.active {
    left: 0;
}

.layer-popup.sitemap_page00 {
    min-width: unset !important;
    width: 100%;
    height: 100%;
}

/* .sitemap_page00{ background-color: #fff;} */
.sitemap_page00 .appendDivision {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 1400px;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.sitemap_page00 .appendDivision::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 240px);
    height: 100%;
    min-height: 911px;
    background: url('../image/sitemap-back.png') no-repeat center center/cover;
}

.sitemap_page00 .close-area {
    z-index: 2;
    position: relative;
    top: 0;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    min-width: 1400px;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.sitemap_page00 .layer_close-btn {
    position: absolute;
    top: 32px;
    width: 17px;
    height: 17px;
    background: url('../image/common/header_close.png') no-repeat center center/cover;
    cursor: pointer;
}

.sitemap_page00 .contents {
    background-color: #fff;
    overflow: auto;
    width: 100%;
    height: 100%;
}

.sitemap_page00 .contents .container {
    z-index: 1;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.sitemap_page00 .contents-body {
    display: flex;
}

.sitemap_page00 .contents .contents-head {
    text-align: left;
    padding: 0;
    margin-bottom: 34px;
}

.sitemap_page00 .contents .contents-body {
    /*height:100%;*/
    justify-content: space-between;
}

.sitemap_page00 .site-list {
    max-width: 940px;
    padding-bottom: 32px;
}

.sitemap_page00 .site-list li a.on,
.sitemap_page00 .site-list li a:hover {
    color: #0094e9;
}

.sitemap_page00 .site-list .depth01 {
    display: flex;
    flex-wrap: wrap;
}

.sitemap_page00 .site-list .depth01>li {
    width: 50%;
    height: 50%;
    display: flex;
}

.sitemap_page00 .site-list .depth01>li:not(:nth-child(-n+2)) {
    margin-top: 88px;
}

.sitemap_page00 .site-list .depth01>li h2 {
    max-width: 140px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #1047a1;
}

.sitemap_page00 .site-list .depth02 {
    max-width: 294px;
    width: 100%;
}

.sitemap_page00 .site-list .depth02>li:not(:first-child) {
    margin-top: 12px;
}

.sitemap_page00 .site-list .depth02 li h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

.sitemap_page00 .site-list .depth03 {
    padding-top: 5px;
}

.sitemap_page00 .site-list .depth03 li:not(:first-child) {
    margin-top: 4px;
}

.sitemap_page00 .site-list .depth03 li a {
    position: relative;
    font-size: 14px;
    line-height: 18px;
    padding-left: 7px;
}

.sitemap_page00 .site-list .depth03 li a::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #444;
}

.sitemap_page00 .contents-body .company_info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 440px;
    padding-left: 68px;
}

.sitemap_page00 .contents-body .company_info .top>div:not(:first-child) {
    margin-top: 45px;
}

.sitemap_page00 .contents-body .company_info .top div em {
    display: block;
    margin-bottom: 15px;
    color: #fff;
}

.sitemap_page00 .contents-body .company_info .top div address {
    padding-right: 4px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
}

.sitemap_page00 .contents-body .company_info .top div p {
    line-height: 24px;
    color: #fff;
}

.sitemap_page00 .contents-body .company_info .top div a {
    font-weight: 400;
    color: #fff;
}

.sitemap_page00 .contents-body .company_info .bottom a {
    display: flex;
    max-width: 372px;
    width: 100%;
    display: inline-block;
    height: 86px;
    line-height: 22px;
    padding: 22px 25px;
    border-radius: 4px;
    background: url('../image/company_info-arrow.png') no-repeat calc(100% - 25px) center rgba(16, 71, 161, .9);
}

.sitemap_page00 .contents-body .company_info .bottom a:hover {
    background-color: rgba(16, 71, 161, 1);
}

.sitemap_page00 .contents-body .company_info .bottom a p {
    padding-left: 36px;
    line-height: 22px;
    color: #fff;
    background: url('../image/bell-icon.png') no-repeat left 10px;
}

@media screen and (max-height:911px) {
    .sitemap_page00 {
        height: 911px;
    }
}

@media screen and (max-height:858px) {

    /* .sitemap_page00{height: 800px; } */
    .sitemap_page00 .contents .container {
        padding: 48px 20px;
        top: 0;
        transform: translateY(0);
    }

}

/* ======================================== // sitemap_page00 ======================================== */
/* nowLoading */
body.nowLoading {
    overflow: hidden;
    height: 100%;
}

body.nowLoading::before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999999;
    background-color: rgba(255, 255, 255, 0.7);
}

body.nowLoading::after {
    content: "";
    display: block;
    position: fixed;
    z-index: 64781263182;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    animation: rollingLoading 2s 0s infinite linear;
    background-image: url(../image/common/nowLoading.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

@keyframes rollingLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* nowLoading */



/* 세로 스크롤 */
.x-scroll {
    overflow-x: auto;
    height: 100%;
}

.x-scroll::-webkit-scrollbar {
    width: 5px;
}

.x-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
}


/* 소개페이지 bottom */
.page-bottom-wrap.border {
    border-top: 1px solid #e3e3e3;
}



/* 서비스 준비 중 */
.coming-soon-box {
    position: relative !important;
    pointer-events: none;
}

.coming-soon-box::before {
    content: '';
    z-index: 300 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(16, 89, 208, 0.8) !important;
    border: 1px solid #1047a1 !important;
}

.coming-soon-box::after {
    content: '서비스 준비 중입니다.' !important;
    z-index: 301 !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: calc(100% - 20px) !important;
    height: calc(100% - 20px) !important;
    margin: 10px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    font-size: 16px !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

header .coming-soon-box:after {
    content: '' !important;
    border: none !important;
}


@media (max-width:980px) {
    /* 2023.12.07 설계데이터 AI 검색 페이지 브레드 크럼 blind*/
    .location_wrap_mo {
        display: none;
    }

    footer.footer_mo .footer_wrap .footer_content .footer_content_top span:nth-child(3) {
        padding-right: 0;
    }

    /* 2023.11.24 사이트맵 */
    footer.footer_mo .footer_wrap .footer_content .footer_content_top span:nth-child(4) {
        display: none;
    }

    footer.footer_mo .footer_btn_wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .basic-btn {
        font-size: 14px;
        height: 40px;
    }

    .in-table-btn {
        height: 30px;
        font-size: 13px;
    }

    input[type="checkbox"]+label {
        font-size: 14px;
        word-break: keep-all;
    }

    input[type='text'],
    input[type='search'],
    input[type='tel'],
    input[type='date'],
    input[type='email'],
    input[type='month'],
    input[type='number'],
    input[type='password'],
    input[type='time'],
    input[type='url'],
    input[type='week'],
    select {
        height: 30px;
    }

    input[type='text'],
    input[type='search'],
    input[type='tel'],
    input[type='date'],
    input[type='email'],
    input[type='month'],
    input[type='number'],
    input[type='password'],
    input[type='time'],
    input[type='url'],
    input[type='week'],
    select,
    textarea {
        font-size: 13px;
    }

    table {
        width: 170%;
    }

    tbody th {
        padding: 8px;
        font-size: 14px;
        word-break: keep-all;
    }

    td {
        font-size: 14px;
    }

    .board-write td .radio-area label {
        font-size: 14px;
    }

    .note {
        font-size: 13px;
    }

    .notice-area>ul li {
        font-size: 14px;
        word-break: keep-all;
    }

    /* 회원가입 - FO-020102 */
    .sign_up-step-area ul li:nth-child(1) .sign_up-step01-icon:after,
    .sign_up-step-area ul li:nth-child(2) .sign_up-step02-icon:after,
    .sign_up-step-area ul li:nth-child(3) .sign_up-step03-icon:after {
        background-size: 42%;
    }

    .sign_up-step-area ul li>span,
    .delete_account-step-area ul li>span {
        font-size: 15px;
        word-break: keep-all;
    }

    .sign_up-step-area ul li:not(:first-child)::before,
    .delete_account-step-area ul li:not(:first-child)::before {
        display: none;
    }

    .sign_up-step-area ul li:not(:first-child),
    .delete_account-step-area ul li:not(:first-child) {
        padding-left: 68px;
    }

    /* 아이디 찾기 - FO-020201 */
    .captcha-area p {
        font-size: 17px;
        font-weight: 600;
    }

    .captcha-area .top.df {
        flex-direction: column;
    }

    .captcha-area .captcha {
        margin: 15px auto;
        text-align: center;
    }

    .captcha-area .btn-wrap {
        display: flex;
        text-align: center;
        margin: 0 auto;
        align-items: baseline;
    }

    .captcha-area .btn-wrap button {
        width: 113px;
        height: 30px;
    }

    .captcha-area .btn-wrap button:not(:last-child) {
        margin-bottom: 0;
        margin-right: 30px;
    }

    .captcha-area .bottom {
        padding-left: 0;
        margin: 20px auto;
        text-align: center;
    }

    .plus-box02.df {
        flex-direction: column;
        padding: 20px 0;
    }

    .plus-box02 .txt-box {
        padding-bottom: 15px;
    }

    .btn.kakaoch_btn,
    .btn.youtubequick_btn {
        background-color: #c8c8c8;
        width: 32px;
        height: 32px;
        border-radius: 100%;
    }

    .kakaoch_btn a:after,
    .youtubequick_btn a:after {
        width: 32px;
        height: 32px;
        background-size: 65%;
    }


}