@charset "utf-8";

section.left {
    width: 280px; height: auto;
}

section.center {
    width: calc(100% - 360px); min-height: 100vh;
    margin: 0 auto;
}

aside.right {
    width: 236px; height: auto;
}

aside.right > * + * {
    margin-top: 64px;
}

/* 논문 상세검색 */`
.journalOption {
    width: 100%;
}
.journalOption .option_top {
    display: flex;
    justify-content: space-between;
	margin-bottom: 16px;
}
.journalOption .option_top > span {
    display: block;
    padding: 0 32px 0 0;
    text-align: left;
    background-color: #FFFFFF;
    border-bottom: 0;
    white-space: nowrap;
    color: #2D2D2D;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.144px;
}
.journalOption .option_top .refresh {
    background: none;
    font-size: 14px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
}
.journalOption .option_top .refresh::before {
    content: "";
    display: inline-block;
    width: 16px; height: 16px;
    background-image: url(../images/icon_refresh.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center ;
    margin-right: 4px;
}

.journalOption .option_cont {
    
}
.journalOption .option {
    width: 100%;
}
.journalOption .option > .title {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    background-color: #F0F0F0;
    border: 1px solid #D8D8D8;
    border-radius: 8px 8px 0px 0px;
    padding: 10px 16px;
    text-align: left;
    background-image: url(../images/icon_btn_arrow_up_02.svg);
    background-position: center right 10px;
    background-repeat: no-repeat;
}
.journalOption .option > .title:hover,
.journalOption .option > .title:focus-visible {
    background-image: url(../images/icon_btn_arrow_up_02_on.svg);
}
.journalOption .option > .title.close {
    background-image: url(../images/icon_btn_arrow_down_02.svg);
}
.journalOption .option > .title.close:hover,
.journalOption .option > .title.close:focus-visible {
    background-image: url(../images/icon_btn_arrow_down_02_on.svg);
}
.journalOption .option + .option > .title {
    border-top: 0;
    border-radius: 0;
}

.journalOption .option .option_wrap {
    background: #fff;
    padding: 12px 0 12px;
    border: 1px solid #d4d4d4;
    border-top: 0;
}
.journalOption .option:last-child .option_wrap {
    border-radius: 0 0 8px 8px;
}
.journalOption .option .close + .option_wrap {
    display: none;
}
.journalOption .option .option_wrap .option_list {
    max-height: 359px;
    overflow: auto;
    padding: 0 12px;
}
.journalOption .option .option_wrap.full .option_list {
    max-height: 551px;
}
.journalOption .option .option_wrap .option_list::-webkit-scrollbar {
    width: 8px;
}

.journalOption .option .option_wrap .option_list::-webkit-scrollbar-thumb {
    background-color: #eff1f5;
    border-left: 4px solid #707070;
	border-right:4px solid #fff;
}

.journalOption .option .option_wrap .option_list::-webkit-scrollbar-track {
    background-color: #eff1f5;
    border-left: 4px solid #D4D4D4;
	border-right:4px solid #fff;
}
.journalOption .option .option_wrap .list > .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 0;
    border-bottom: 1px solid #d5d8e1;
    width: 100%;
    gap: 8px;
}
.journalOption .option .option_wrap .list:has(.month.show) > .title {
    border-bottom: 0;
}
.journalOption .option .option_wrap .list:last-child > .title {
    border-bottom: 0;
}
.journalOption .option .option_wrap .list > .title .openCloseBtn {
    background-position: center right;
    background-repeat: no-repeat;
    background-color: initial;
    text-align: left;
    width: 100%;
}
.journalOption .option .option_wrap .list > .title .openCloseBtn span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.05em;
}
.journalOption .option .option_wrap .list > .title .openCloseBtn .total {
    color: #C23F07;
    margin-left: 4px;
}
.journalOption .option .option_wrap .list > .title .openCloseBtn:hover span,
.journalOption .option .option_wrap .list > .title .openCloseBtn:focus-visible span {
    text-decoration: underline;
}
.journalOption .option .option_wrap .list > .title .open {
    background-image: url(../images/icon_plus.svg);
}
.journalOption .option .option_wrap .list > .title .open:hover,
.journalOption .option .option_wrap .list > .title .open:focus-visible {
    background-image: url(../images/icon_plus_on.svg);    
}
.journalOption .option .option_wrap .list > .title .close {
    background-image: url(../images/icon_minus.svg);
}
.journalOption .option .option_wrap .list > .title .close:hover,
.journalOption .option .option_wrap .list > .title .close:focus-visible {
    background-image: url(../images/icon_minus_on.svg);    
}
.journalOption .option .option_wrap ul.month {
    display: none;
    width: 100%;
    column-count: 2;
    margin-top: 6px;
    padding: 8px 16px;
    background: #fbfbfc;
    border-radius: 4px;
}
.journalOption .option .option_wrap ul.month.show {
    display: block;
    margin-bottom: 6px;
}
.journalOption .option .option_wrap ul.month > li {
    height: 29px;
    display: flex;
    align-items: center;
}

.journalOption .option.field .option_wrap .option_list {
    
}
.journalOption .option.field .option_wrap .option_list .list {
    padding: 6px 0;
    border-bottom: 1px solid #d5d8e1;
}
.journalOption .option.field .option_wrap .option_list .list:first-child {
    border-top: 0;
    padding-top: 0;
}
.journalOption .option.field .option_wrap .option_list .list:last-child {
    border-bottom: 0;
}
.journalOption .option.field .option_wrap .option_list .list .inputCheck {
    width: 100%;
}
.journalOption .option.field .option_wrap .option_list .list .inputCheck label {
    width: 100%;
}
.journalOption .option.field .option_wrap .option_list .list .inputCheck label:hover span,
.journalOption .option.field .option_wrap .option_list .list .inputCheck label:focus-visible  span {
    text-decoration: underline;
}
.journalOption .option.field .option_wrap .option_list .list .inputCheck label:hover .total,
.journalOption .option.field .option_wrap .option_list .list .inputCheck label:focus-visible  .total {
    text-decoration: underline;
}
.journalOption .option.field .option_wrap .option_list .list .inputCheck label span {
    font-size: 14px;
    font-weight: 400;
}
.journalOption .option.field .option_wrap .option_list .list .inputCheck label span .total {
    margin-left: 4px;
    color: #C23F07;
}

.journalOption .option .option_wrap .btn-group {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
    padding: 0 12px;
}
.journalOption .option .option_wrap .btn-group .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.journalOption .option .option_wrap .btn-group .btn + .btn {
    margin-left: 0;
    margin-top: 8px;
}

.journalOption .option .option_wrap .btn-group .viewBtn::after {
    content: "";
    display: inline-block;
    width: 16px; height: 16px;
    background-image: url(../images/icon_btn_arrow_down_01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 2px;
}
.journalOption .option .option_wrap .btn-group .viewBtn.view::after {
    background-image: url(../images/icon_btn_arrow_up_01.svg);
}

/* .journalOption .option .option_wrap .btn-group .reSearch:hover,
.journalOption .option .option_wrap .btn-group .reSearch:focus-visible {
    background: #cbdcff;
    color: #1c1c1c;
} */

.journalOption .option .option_wrap .btn-group .reSearch::after {
    content: "";
    display: inline-block;
    width: 15px; height: 15px;
    background-image: url(../images/icon_btn_research.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 2px;
}
/* .journalOption .option .option_wrap .btn-group .reSearch:hover::after,
.journalOption .option .option_wrap .btn-group .reSearch:focus-visible::after {
    background-image: url(../images/icon_btn_research_on.svg);
}
 */

/* 논문 검색결과 */
.journalResult {
    
}
.journalResult .tbl {
    width: 100%;
}
.journalResult .tbl .tbl_set {

}
.journalResult .tbl .tbl_set .tit {
    font-size: 24px;
    font-weight: 700;
}
.journalResult .tbl .tbl_set .tit .keyword {
    color: #1E6B70;
}
.journalResult .tbl .tbl_set .tit .total {
    font-size: 18px;
    font-weight: 500;
}
.journalResult .tbl .tbl_set .tbl_service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    background: #F0F0F0;
    padding: 12px 12px;
    margin-top: 16px;
    
}
.journalResult .tbl .tbl_set .tbl_service .tbl_checkDownload {

}
.journalResult .tbl .tbl_set .tbl_service .tbl_checkDownload .download {
    background: none;
    font-size: 14px;
    font-weight: 300;
}
.journalResult .tbl .tbl_set .tbl_service .tbl_checkDownload > * + * {
    position: relative;
    margin-left: 12px;
    padding-left: 12px;
}
.journalResult .tbl .tbl_set .tbl_service .tbl_checkDownload > * + *::before{
    content: "";
    display: block;
    position: absolute;
    top: 6px; left: 0;
    width: 1px; height: 9px;
    background: #d4d4d4;
}
.journalResult .tbl .tbl_set .tbl_service .tbl_view .select{
    width: 89px; height: 31px;
}
.journalResult .tbl .tbl_set .tbl_service .tbl_view .select .selectbox > button {
    border: 1px solid #d4d4d4;
    background-color: #fff;
    background-image: url(../images/icon_select_arrow_down.svg);
    background-position: center right 5px;
    background-repeat: no-repeat;
    text-align: left;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 300;
}
.journalResult .tbl .tbl_set .tbl_service .tbl_view .select .selectbox > button:has(+ .show) {
    background-image: url(../images/icon_select_arrow_up.svg);
}
.journalResult .tbl .tbl_set .tbl_service .tbl_view .select .selectbox .option {
    border: 1px solid #d4d4d4;
}
.journalResult .tbl .tbl_set .tbl_service .tbl_view .select .selectbox .option ul > li button {
    font-size: 14px;
    font-weight: 300;
}

.journalResult .tbl .tbl_bot .tbl_service {
    margin-top: 0;
    border-top: 0;
}

.journalResult .tbl table {
    width: 100%;
}
.journalResult .tbl table:has(.null){
	margin-top: 16px;
	border-top: 1px solid #C6C6C6;
}
.journalResult .tbl table tbody {
    
}
.journalResult .tbl table tbody tr {
    
}
.journalResult .tbl table tbody tr:hover td.info .name,
.journalResult .tbl table tbody tr:focus-visible td.info .name {
/*    text-decoration: underline;*/
}
/*.journalResult .tbl table tbody tr td {*/
/*    border-bottom: 1px solid #d9d9d9;*/
/*    vertical-align: top;*/
/*    padding: 24px 0;*/
/*}*/
.journalResult .tbl table tbody tr td {
    border-bottom: 1px solid #d9d9d9;
    vertical-align: top;
    padding: 24px 0 20px
}
.journalResult .tbl table tbody tr td:has(.warringTxt){
    padding: 40px 0 24px;
}
.journalResult .tbl table tbody tr td .keyword {
    color: #013542;
}
.journalResult .tbl table tbody tr td.check {
    text-align: center;
}
.journalResult .tbl table tbody tr td.check .inputCheck {
    top: 2px;
}
.journalResult .tbl table tbody tr td.num {
    font-size: 20px;
}
.journalResult .tbl table tbody tr td.info p + p {
    margin-top: 12px;
}
.journalResult .tbl table tbody tr td.info .name {
    font-size: 20px;
}
.journalResult .tbl table tbody tr td.info .hastag {
    font-size: 14px;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.journalResult .tbl table tbody tr td.info .hastag:not(:has(.tag)) {
    margin-top: 0;
}
.journalResult .tbl table tbody tr td.info .hastag .tag {
    height: 25px;
    display: inline-block;
    line-height: 25px;
    padding: 0 6px;
    background: #eeeeee;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
    overflow: hidden;
}
.journalResult .tbl table tbody tr td.info .detail {
    margin-top: 12px;
}
.journalResult .tbl table tbody tr td.info .data {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #707070;
    font-weight: 300;
}
.journalResult .tbl table tbody tr td.info .data + .data {
    margin-top: 10px;
}
.journalResult .tbl table tbody tr td.info .data .tit {
    width: 42px;
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #2d2d2d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.7px;   
}
.journalResult .tbl table tbody tr td.info .data .tit::before {
    content: "·";
    display: inline-flex;
    width: 8px;
    justify-content: center;
    align-items: center;
    color: #2d2d2d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.7px;  
}
.journalResult .tbl table tbody tr td.info .data > p {
    margin-left: 10px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.journalResult .tbl table tbody tr td.info .data > p > span {
    padding-right: 8px;
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: -0.7px;
}
.journalResult .tbl table tbody tr td.info .data > span + span {
    font-size: 14px;
    color: #707070;
    font-weight: 300;
    padding-left: 8px;
    margin-left: 8px;
    position: relative;
}
.journalResult .tbl table tbody tr td.info .data > span + span::before {
    content: "";
    display: block;
    position: absolute;
    top: 1px; left: 0;
    width: 1px; height: 15px;
    background: #d4d4d4;
}
.journalResult .tbl table tbody tr td.download {
    /*vertical-align: middle;*/
}
.journalResult .tbl table tbody tr td.download .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 120px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50px;
    border: 1px solid #C6C6C6;
    background: #FFF;
    color: #1D1D1D;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.75px;
}
.journalResult .tbl table tbody tr td.download .btn + .btn {
    margin-left: 0;
    margin-top: 8px;
}

.journalResult .tbl table tbody tr td.download .btn::before {
    content: "";
    display: inline-block;
    width: 24px; height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/ico_download_black.svg);
}
/* .journalResult .tbl table tbody tr td.download .xml::before {
    background-image: url(../images/icon_xml.svg);
}
.journalResult .tbl table tbody tr td.download .pdf::before {
    background-image: url(../images/icon_pdf.svg);
} */

.journalResult .tbl table tbody tr td.download .btn[disabled='disabled'] {
    background: #E1E1E1;
    color: #666666;
    border: 0;
}
.journalResult .tbl table tbody tr td.download .btn[disabled='disabled']::before {
    background-image: url(../images/ico_download_gray.svg);
}
/* .journalResult .tbl table tbody tr td.download .xml[disabled='disabled']::before {
    background-image: url(../images/icon_xml_disabled.svg);
}
.journalResult .tbl table tbody tr td.download .pdf[disabled='disabled']::before {
    background-image: url(../images/icon_pdf_disabled.svg);
} */

.journalResult .tbl table tbody tr.warring td.info .name {
    text-decoration: line-through;
    text-decoration-color: #ff0000;
    position: relative;
}
.journalResult .tbl table tbody tr.warring td.info .name .warringTxt {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #ff0000;
    position: absolute;
    top: -16px;
    left: 0;
    display: flex;
    align-items: center;
}
.journalResult .tbl table tbody tr.warring td.info .name .warringTxt::before {
    content: "";
    display: inline-block;
    width: 16px; height: 16px;
    background-image: url(../images/icon_warring.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 4px;
}
.journalResult .tbl table tbody tr.warring td.info .data {
    text-decoration: line-through;
    text-decoration-color: #ff0000;
}

.journalResult .tbl table tbody tr.null {
    width: 100%;
}

.journalResult .tbl table tbody tr.null td .noSearch {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
}
.journalResult .tbl table tbody tr.null td .noSearch .keyword {
    color: #f17400;
    font-weight: 700;
}
.journalResult .tbl table tbody tr.null td .noSearchBox {
    background: #fbfbfc;
    margin-top: 24px;
    background-image: url(../images/bg_search.svg);
    background-position: bottom -55px right -22px;
    background-repeat: no-repeat;
    background-size: 237px;
    padding: 32px;
    border-radius: 16px;
}
.journalResult .tbl table tbody tr.null td .noSearchBox > p {
    font-size: 18px;
    font-weight: 700;
    color: #013542;
}
.journalResult .tbl table tbody tr.null td .noSearchBox > ul {
    margin-top: 20px;

}
.journalResult .tbl table tbody tr.null td .noSearchBox > ul > li {
    position: relative;
    padding-left: 12px;
}
.journalResult .tbl table tbody tr.null td .noSearchBox > ul > li + li {
    margin-top: 10px;
}
.journalResult .tbl table tbody tr.null td .noSearchBox > ul > li::before {
    content: "";
    display: block;
    position: absolute;
    top: 11px; left: -9px;
    width: 5px; height: 5px;
    border-radius: 10px;
    background: #f17400;
    position: relative;
}
/* 이미지 리스트 */
.journalResult .tbl .imgList {
    overflow: hidden;
}
.journalResult .tbl .imgList > ul {
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
}
.journalResult .tbl .imgList > ul > li {
    width: 25%;
    padding: 24px 20px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #D9D9D9;
}
.journalResult .tbl .imgList > ul > li > a {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.journalResult .tbl .imgList > ul > li > a .imgbox {
    border: 1px solid #D4D4D4;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 136.27%;
    box-sizing: border-box;
}
.journalResult .tbl .imgList > ul > li > a .imgbox > .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.journalResult .tbl .imgList > ul > li > a .txtbox {
    color: #212121;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.084px;
}
.journalResult .tbl .imgList > ul > li.null {
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbfbfc;
    box-sizing: border-box;
}
.journalResult .tbl .imgList > ul > li.null p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.journalResult .tbl .imgList > ul > li.null p span {
    color: #4075DF;
}

.journalResult .page_nate {
    margin-top: 60px;
}
.journalResult .page_nate {
    margin-top: 60px;
}
/* 목차 / 표치 다운로드 */
.journalContent {
    width: 100%;
}
.journalContent > p {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    border-bottom: 1px solid #484848;
    padding: 10px 0;
    padding-top: 0;
}
.journalContent .img {
    margin-top: 10px;
    height: 325px;
}
.journalContent .img img {
    max-width: 100%;
}
.journalContent .img:not(:has(img)){
    background-color: #eee;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/bg_null.svg);
}
.journalContent .download {
    margin-top: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.journalContent .download:after {
    content: "";
    display: inline-block;
    width: 16px; height: 16px;
    background-image: url(../images/icon_download.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: 4px;
}
.journalContent .download.none-download:after {
    content: unset;
}
nav.link {
	margin-top: 40px;
}
nav.link > p {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    border-bottom: 1px solid #484848;
    padding: 10px 0;
}
nav.link > ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 12px;
}
nav.link > ul > li {
    width: 100%;
}
nav.link > ul > li > a {
    position: relative;
    display: block;
    width: 100%; height: 60px;
    border: 1px solid #d4d4d4;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}
nav.link > ul > li > a:not(:has(img))::before {
    content: "LOGO";
    display: block;
    position: absolute;
    top:50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #717171;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
}
nav.link > ul > li > a:hover,
nav.link > ul > li > a:focus-visible {
    border: 1px solid #1E6B70;
}

nav.link > ul > li > a > img {
    width: 100%;
    max-height: 100%;
    max-width: 100%;
}



/* Dim Popup */
.dimPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    font-family: 'Pretendard';
}

.dimPopup-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    background-color: #17317B;
    padding: 0 24px;
    padding-right: 0;
}
.dimPopup-content-header .title {
    font-size: 16px; font-weight: 500;
    line-height: 16px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}


.dimPopup-content {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.dimPopup-content[data-popup="manual"] {padding: 0;}
.dimPopup-content[data-popup="manual"] .dimPopup-head {position: relative; display: flex; align-items: center; justify-content: space-between; height: 52px; background-color: #1E6B70; color: #fff; padding-left: 32px; border-radius: 10px 10px 0 0; overflow: hidden;}
.dimPopup-content[data-popup="manual"] .dimPopup-head button {    
    position: absolute;
    top: 0; right: 0;
    width: 51px; height: 51px;
    background-image: url(../../static/images/ico_closed_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: initial;
    border-radius: 0;
    color: #fff;
}
.dimPopup-content[data-popup="manual"] .dimPopup-cont {padding: 20px 32px; line-height: 24px;}
.dimPopup-content[data-popup="manual"] .dimPopup-cont .tit {font-weight: 700; line-height: 24px; font-size: 18px;}

.dimPopup-content[data-popup="warring"] {
    height: 234px;
}
.dimPopup-content[data-popup="warring"] .dimPopup-content-header .title::before {
    content: "";
    display: inline-block;
    margin-right: 2px;
    width: 21px; height: 21px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url( '${pageContext.request.contextPath }/images/sub/icon_warring.svg');
}

.dimPopup-content[data-popup="warring"] .dimPopup-cont {
    height: calc(100% - 114px);
    padding: 32px;
}
.dimPopup-content[data-popup="warring"] .dimPopup-cont > p {
    font-size: 16px;
    letter-spacing: -0.05em;
    font-family: 'Pretendard';
}
.dimPopup-content[data-popup="warring"] .dimPopup-cont > p + p {
    margin-top: 8px;
}
.dimPopup-content[data-popup="warring"] .dimPopup-cont > p span.name {
    font-weight: 500;
    text-decoration: underline;
}
.dimPopup-content[data-popup="warring"] .dimPopup-cont > p span.warring {
    color: #ff1414;
    font-weight: 500;
}

.dimPopup-content .btn-group.final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.dimPopup-content .btn-group.final .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 77px; height: 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.05em;
    border-radius: 4px;
    color: #fff;
}
.dimPopup-content .btn-group.final .btn.submit,
.dimPopup-content .btn-group.final .btn.close {
    border: 1px solid #17317B;
    color: #fff;
    background: #17317B;
}
.dimPopup-content .btn-group.final .btn.cancel {
    border: 1px solid #D8D8D8;
    background: #FFF;
    color: #1D1D1D;
}