@charset "UTF-8";
/******************************
    SCSS아닌 이 CSS에 바로 작성된 이력있음 !!!!!
    
    현재는 이 css에서 바로 수정 요망
    scss 동기화 이후 scss > 컴파일 > 해당 css 사용 가능
    
******************************/

/**
input 에서 type=number 일 때 자동으로 생기는 화살표 제거
 */
:lang(ko) {
    word-break: keep-all;
}

img {
    max-width: 100%;
    height: auto;
}

[class] {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[class]::before,
[class]::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[class]:where(ol, ul) {
    list-style: none;
}

[class]:where(button, fieldset, iframe, input, select, textarea) {
    border: 0;
}

[class]:where(button, dialog, input, mark, meter, progress) {
    background-color: transparent;
}

[class]:where(table) {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

[class]:where(button, input, meter, progress, select, textarea) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: "notokr-regular", "Noto Sans KR", "Apple SD Gothic Neo", Verdana, "Malgun Gothic", dotum, sans-serif;
}

[class]:where(a) {
    text-decoration: none;
}
[class]:where(a):hover {
    text-decoration: underline;
}

.ko-KR {
    font-family: "notokr-regular", "Noto Sans KR", "Source Sans Pro", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", dotum, "돋움", "Roboto", sans-serif;
    word-break: keep-all;
}

.a11y {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

[class][pc-hidden] {
    display: none !important;
}

[class][pcf-hidden] {
    display: none !important;
}

[class$=__check]:where(input) {
    width: 17px;
    height: 17px;
    border: 1px solid #c8c8c8;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    background-color: #fff;
}
[class$=__check]:where(input):checked {
    background-color: #db3a3f;
    border-color: #db3a3f;
}
[class$=__check]:where(input):checked:after {
    content: "";
    display: block;
    width: 11px;
    height: 7px;
    border: 2px solid #fff;
    border-top: 0;
    border-right: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 2px;
    top: 3px;
}

.pcBr {
    display: block;
}

.mBr {
    display: none;
}

.bgDimmed {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    inset: 0;
    z-index: 102;
}
.bgDimmed[data-visible=visible] {
    display: block;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    min-height: 100vh;
    overflow-wrap: break-word;
}

.dpMain {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 1080px;
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.banner-container {
    position: fixed;
    right: 21px; /* 원하는 위치 조정 */
    bottom: 130px; /* 원하는 위치 조정 */
    z-index: 1000;
}

.close-icon {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    z-index: 10000;
}

.close-icon:hover {
    background: rgba(0, 0, 0, 0.5);
}

.banner-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}


@media screen and (max-width: 960px) {
    .ko-KR {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }
    [class][m-hidden] {
        display: none !important;
    }
    [class][pc-hidden] {
        display: block !important;
    }
    [class][pcf-hidden] {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    html {
        height: 100%;
    }
    body {
        display: block;
        height: auto;
    }
    .pcBr {
        display: none;
    }
    .mBr {
        display: block;
    }
    .dpMain {
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
        width: 100%;
        margin-top: 20px;
        min-height: calc(100vh - 226px - 60px);
    }
}
html.focus {
    height: 100vh;
    overflow: hidden;
}

.dimLayer {
    display: none;
    inset: 0;
    overflow: scroll;
    position: fixed;
    z-index: 1001;
}

.skipToMain {
    display: block;
    height: 1px;
    margin-bottom: -1px;
    overflow: hidden;
    text-align: center;
    line-height: 48px;
}
.skipToMain:focus {
    height: auto;
    margin-bottom: 0;
}

.topBanner {
    height: 60px;
}
.topBanner.dpSkeleton {
    position: relative;
}
.topBanner.dpSkeleton:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #dadada;
}
.topBanner__link {
    display: block;
    max-width: 940px;
    margin: 0 auto;
}
.topBanner__img {
    width: 100%;
}
.topBanner__img img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
@media screen and (max-width: 960px) {
    .topBanner__img img {
        height: 60px;
        width: auto;
    }
}
.topBanner__closed {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
}
.topBanner__closed:before {
    content: "";
    background: url(/images/v2/banner/btn_topBanner_closed.png) no-repeat 0/cover;
    cursor: pointer;
    position: absolute;
    inset: 15px;
}

.dpHeader {
    padding: 30px 0 0;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 101;
}
.dpHeader:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 125px;
    background-color: #efefef;
}
.dpHeader:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 173px;
    background-color: #ccc;
    -webkit-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15);
}
.dpHeader.up {
    padding-top: 20px;
}
.dpHeader.up:after {
    display: block;
    top: 138px;
}
.dpHeader.up .dpHeader__navWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpHeader.up .dpHeader__btnDetail {
    display: none;
}
.dpHeader.up .dpHeader__inner {
    margin-bottom: 20px;
}
.dpHeader.up:before {
    top: 90px;
}
.dpHeader.up .dpAllMenuWrap {
    top: 138px;
}
.dpHeader.down {
    padding-top: 20px;
}
.dpHeader.down:after {
    display: none;
}
.dpHeader.down:before {
    top: 90px;
}
.dpHeader.down .dpHeader__navWrap {
    display: none;
}
.dpHeader.down .dpHeader__btnDetail {
    display: none;
}
.dpHeader.down .dpHeader__inner {
    margin-bottom: 20px;
}
.dpHeader.sticky {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dpHeader__inner {
    margin: 0 auto 45px;
    max-width: 1080px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 210px 0 55px;
    position: relative;
    z-index: 1;
}
@media (min-width: 960px) and (max-width: 1147px) {
    .dpHeader__inner {
        max-width: 100%;
        padding: 0 25px;
    }
}
.dpHeader__logo {
    display: block;
    width: 169px;
    height: 25px;
    background: url(/images/common/logo_dbpia.png) no-repeat 0 0/contain;
    margin-right: 46px;
    -ms-flex-item-align: center;
    align-self: center;
}
.dpHeader__back {
    display: none;
}
.dpHeader__searchWrap {
    width: 100%;
    max-width: 600px;
    height: 50px;
    border: 2px solid #EF4348;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}
.dpHeader__selectWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 110px;
    height: 100%;
    position: relative;
}
.dpHeader__btnDetail {
    position: absolute;
    right: 0;
    bottom: -45px;
    font-size: 13px;
    color: #ef4348;
    padding: 12px 0;
    cursor: pointer;
}
.dpHeader__btnDetail:hover {
    text-decoration: underline;
}
.dpHeader__selectTit {
    position: absolute;
    top: 0px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 10px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.dpHeader__selectTit:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: auto;
    height: auto;
    border-style: solid;
    border-color: #000 transparent;
    border-width: 5px 4px 0;
}
.dpHeader__selectTit:before {
    content: "";
    display: block;
    width: 1px;
    height: 19px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dpHeader__select {
    opacity: 0;
    height: 100%;
    width: 100%;
    padding: 6px 9px 7px;
    font-size: 13px;
    color: #333;
    outline: none;
}
.dpHeader__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    outline: none;
    font-size: 16px;
    color: #222;
}
.dpHeader__search::-webkit-search-decoration, .dpHeader__search::-webkit-search-cancel-button, .dpHeader__search::-webkit-search-results-button, .dpHeader__search::-webkit-search-results-decoration {
    display: none;
}
.dpHeader__search:focus + .dpHeader__btnReset {
    display: block;
}
.dpHeader__btnSearch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
    height: 48px;
    background-color: #ef4348;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}
.dpHeader__btnSearch:after, .dpHeader__btnSearch:before {
    content: "";
    display: block;
    position: absolute;
}
.dpHeader__btnSearch:after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    left: 12px;
    top: 13px;
}
.dpHeader__btnSearch:before {
    width: 7px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    right: 10px;
    bottom: 16px;
}
.dpHeader__btnReset {
    display: none;
    position: absolute;
    width: 46px;
    height: 46px;
    right: 46px;
    top: 0;
}
.dpHeader__btnReset.active {
    display: block;
}
.dpHeader__btnReset::before {
    content: "";
    background: url(/images/v2/banner/btn_topBanner_closed.png) no-repeat 0/cover;
    cursor: pointer;
    position: absolute;
    inset: 15px;
}
.dpHeader__service {
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}
@media (min-width: 960px) and (max-width: 1147px) {
    .dpHeader__service {
        right: 25px;
    }
}
.dpHeader__mobileService {
    display: none;
}
.dpHeader__svcTit {
    font-size: 14px;
    color: #111;
}
.dpHeader__count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 17px;
    min-height: 15px;
    position: absolute;
    top: -3px;
    left: 22px;
    font-size: 11px;
    padding: 2px 5px;
    background-color: #EF4348;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    font-style: normal;
    font-family: dotum, "돋움", "notokr-regular", "맑은 고딕", sans-serif;
}
.dpHeader__myLibrary {
    position: relative;
    padding-top: 37px;
    background: url(/images/common/icon_bookmark.svg) no-repeat 50% 0/auto 32px;
}
.dpHeader__myLibrary:hover {
    text-decoration: none;
}
.dpHeader__myNews {
    position: relative;
    padding-top: 37px;
    background: url(/images/common/bell.svg) no-repeat 50% 0/auto 32px;
}
.dpHeader__myNews:hover {
    text-decoration: none;
}
.dpHeader__navWrap {
    max-width: 1080px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 48px;
}
.dpHeader__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.dpHeader__allBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 16px;
    height: 16px;
    background: url(/images/navigation/global-menu-normal.svg) no-repeat 0 0/contain;
    margin-right: 8px;
}
.dpHeader__allBtn.active {
    background: url(/images/navigation/global-menu-close.svg) no-repeat 0 0/contain;
}
.dpHeader__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    height: 100%;
    font-size: 14px;
    color: #111;
    font-weight: 400;
}
.dpHeader__link.myLibrary {
    display: none;
}
.dpHeader__link.main {
    font-weight: 500;
}
.dpHeader__link.end {
    position: relative;
    margin-right: 20px;
}
.dpHeader__link.end:after {
    content: "";
    display: block;
    background-color: #dfdfdf;
    width: 1px;
    height: 15px;
    position: absolute;
    right: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dpHeader__link:hover, .dpHeader__link.active {
    color: #db3a3f;
    text-decoration: none;
}
.dpHeader__link.beta {
    position: relative;
}
.dpHeader__link.beta:after {
    content: "";
    display: block;
    width: 25px;
    height: 14px;
    background: url(/images/navigation/beta.svg) no-repeat 0 0/cover;
    position: absolute;
    top: 2px;
    right: -7px;
}
.dpHeader__utils {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    height: 100%;
    position: relative;
}
.dpHeader__util {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    color: #666;
    position: relative;
    height: 100%;
}
.dpHeader__util__b2bName {
    max-width: 120px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: unset !important;
}
.dpHeader__util__b2cName {
    max-width: 120px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: unset !important;
}
.dpHeader__util > b {
    font-weight: 500;
    color: #111;
}
.dpHeader__util:not(:last-child):after {
    content: "";
    display: block;
    width: 1px;
    height: 11px;
    background-color: #d1d1d1;
    position: absolute;
    right: -10px;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dpHeader__util:hover + .tooltip:not(.tool-clear),
.dpHeader__util:hover .tooltip:not(.tool-clear) {
    display: block;
    z-index: 10;
}
.dpHeader__util:hover + .tooltip:not(.tool-clear):where(.tool-user),
.dpHeader__util:hover .tooltip:not(.tool-clear):where(.tool-user) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpHeader__util.count {
    padding: 0 5px;
    border: solid 1px #db3a3f;
    border-radius: 9.5px;
    height: 20px;
    background-color: #fff;
    font-size: 11px;
    color: #db3a3f;
    cursor: pointer;
    margin-left: -10px;
    font-family: Roboto;
}
.dpHeader__util.count.b2c {
    border-color: #3C63E0;
    color: #3C63E0;
}
.dpHeader__util.user {
    color: #111;
    cursor: pointer;
}
.dpHeader__util.not:after {
    display: none;
}
.dpHeader__language {
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
    background: url(/images/navigation/language.svg) no-repeat 0 0/contain;
}
.dpHeader__language.eng {
    background: url(/images/navigation/language-korean.svg) no-repeat 0 0/contain;
}
.dpHeader .tooltip {
    display: none;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border: solid 1px #ececec;
    position: absolute;
    top: 41px;
    letter-spacing: -0.02em;
    line-height: 1.64;
    border-radius: 3px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.dpHeader .tooltip.open {
    display: block;
    z-index: 10;
}
.dpHeader .tooltip.open:where(.tool-user) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpHeader .tooltip .color_blue {
    color: #1F8BD8;
}
.dpHeader .tooltip .txtBold {
    font-weight: bold;
}
.dpHeader .tool-la {
    font-size: 13px;
    padding: 15px 20px;
    right: 0;
    background: #fafafa;
    color: #666;
}
.dpHeader .tool-la .medium {
    font-weight: 500;
}
.dpHeader .tool-count {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    padding: 15px 12px;
    right: 0;
    background: #fff;
}
.dpHeader .tool-agency {
    font-size: 13px;
    color: #666;
    padding: 10px 10px;
    background: #fafafa;
    width: 332px;
    font-weight: 500;
    right: 0;
}
.dpHeader .tool-clear {
    z-index: 10;
    top: 35px;
    left: 0;
    padding: 7px 10px 10px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #fff;
    text-align: center;
    width: 75px;
    line-height: 1;
    color: #666;
    text-decoration: underline;
    font-size: 10px;
    cursor: pointer;
}
.dpHeader .tool-user {
    padding: 10px 15px 20px 10px;
    border: 1px solid #e0e0e0;
    width: 300px;
    font-weight: 500;
    font-size: 13px;
    color: #555;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    background: #fff;
    z-index: 10;
    gap: 10px;
    cursor: auto;
}
.dpHeader .tool-user__logout {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #666;
    font-size: 10px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}
.dpHeader .tool-user__nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dpHeader .tool-user__link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}
.dpHeader .tool-user__link:not(:first-child) {
    margin-top: 5px;
}
.dpHeader .tool-b2c {
    padding: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #fff;
    width: 150px;
    font-family: "notokr-medium", sans-serif;
    font-size: 12px;
    color: #111;
    -webkit-box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.2);
    line-height: 20px;
    text-align: left;
    font-weight: 500;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: auto;
}
.dpHeader .tool-b2c:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    border-left: 0;
    border-bottom: 0;
    background: #fff;
    position: absolute;
    left: 50%;
    top: -9px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}
.dpHeader .tool-b2c__tit {
    font-size: 16px;
    font-weight: 700;
    padding-left: 15px;
    margin-bottom: 7px;
}
.dpHeader .tool-b2c__tit strong {
    display: block;
    font-size: 16px;
    color: #EF4348;
}
.dpHeader .tool-b2c__refresh {
    font-size: 12px;
    color: #777;
    padding-left: 13px;
    background: url(/images/v2/filter/ico_deslect.svg) no-repeat 0 40%/10px 12px;
    cursor: pointer;
}
.dpHeader .tool-b2c__period-txt {
    color: #8E8E8E;
}
.dpHeader .tool-b2c__period-txt span {
    color: #EF4348;
    padding-left: 15px;
    margin-right: 5px;
    font-family: Roboto;
}
.dpHeader .tool-b2c__nav {
    border-top: 1px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    margin: 20px 0 15px;
    gap: 15px;
}
.dpHeader .tool-b2c__link {
    color: #111;
}
.dpHeader .tool-b2c__logout {
    padding-left: 15px;
    color: #999;
}

.accredit-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 65px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    border-radius: 3px;
    text-decoration: none;
    padding: 0 10px;
}
.accredit-box:hover {
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    border-color: #165c92;
}
.accredit-box__tit {
    color: #3C63E0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}
.accredit-box.col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.accredit-box.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.accredit-box.between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.accredit-box__txt {
    color: #666;
    font-size: 12px;
}
.accredit-box__txt.xs {
    font-size: 10px;
}
.accredit-box__txt.s {
    font-size: 11px;
}
.accredit-box__txt.m {
    font-size: 13px;
}
.accredit-box__txt.l {
    font-size: 14px;
}
.accredit-box__txt .b2bName {
    color: #111;
    margin-right: 2px;
    font-weight: 500;
}
.accredit-box__txt.extend {
    line-height: 1.5;
    color: #111;
}
.accredit-box__txt.extend span {
    font-weight: 700;
}
.accredit-box__ok {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 35px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    background-color: #3C63E0;
    cursor: pointer;
}
.accredit-box__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.8;
}
.accredit-box__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.accredit-box .day-count {
    font-size: 13px;
    color: #3C63E0;
    font-weight: 500;
    font-family: Roboto;
}
.accredit-box .day-count:before {
    content: "D-";
}
.accredit-box .extension {
    font-size: 12px;
    color: #111;
    text-decoration: underline;
}
.accredit-box .extension.xs {
    font-size: 10px;
}
.accredit-box .again {
    margin-left: auto;
    font-size: 10px;
    color: #3C63E0;
}
.accredit-box .again:after {
    content: "";
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #3C63E0;
}

.dpAlarmWrap {
    position: absolute;
    top: 40px;
    right: 0;
    width: 260px;
    height: 412px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #555;
    -webkit-box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: none;
}
.dpAlarmWrap.new .dpAlarmWrap__list {
    display: block;
}
.dpAlarmWrap.new .dpAlarmWrap__noNews {
    display: none;
}
.dpAlarmWrap:hover {
    text-decoration: none;
}
.dpAlarmWrap:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    display: inline-block;
    border-color: transparent;
    border-style: solid;
    right: 19px;
    top: -7px;
    border-width: 0 7px 7px;
    border-bottom-color: #cccccc;
}
.dpAlarmWrap:after {
    position: absolute;
    width: 0;
    height: 0;
    display: inline-block;
    content: "";
    border-color: transparent;
    border-style: solid;
    right: 19px;
    top: -6px;
    border-width: 0 7px 7px;
    border-bottom-color: #fff;
}
.dpAlarmWrap__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 14px 9px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}
.dpAlarmWrap__txt {
    font-size: 13px;
    color: #111;
}
.dpAlarmWrap__txt .day {
    color: #ef4348;
}
.dpAlarmWrap__setting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 40px;
    padding: 6px 7px 4px;
    border: 1px solid #c8c8c8;
    cursor: pointer;
    line-height: 1.2;
    font-size: 12px;
    color: #222;
}
.dpAlarmWrap__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    height: 42px;
    font-size: 13px;
    color: #111;
    position: relative;
}
.dpAlarmWrap__link:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border: 0.5px solid #333;
    border-left: 0;
    border-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: 5px;
}
.dpAlarmWrap__cont {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.dpAlarmWrap__noNews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.dpAlarmWrap__noNews .t1 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 500;
}
.dpAlarmWrap__noNews .t1:before {
    content: "";
    display: block;
    margin: 0 auto 15px;
    width: 50px;
    height: 56px;
    background: url(/images/mypage/img_nodata_bell.png) no-repeat 0 0/50px 50px;
}
.dpAlarmWrap__noNews .t2 {
    font-size: 13px;
    color: #999;
}
.dpAlarmWrap__list {
    display: none;
}
.dpAlarmWrap__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 34px 10px 32px;
    border-bottom: 1px solid #eee;
    position: relative;
    height: 77px;
}
.dpAlarmWrap__row.view:before {
    background: #e9e9e9;
}
.dpAlarmWrap__row:before {
    position: absolute;
    left: 14px;
    top: 16px;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4348;
}
.dpAlarmWrap__row .date {
    font-size: 12px;
    margin-top: 2px;
    color: #999;
    display: block;
}
.dpAlarmWrap__row .btnDelete {
    position: absolute;
    right: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.dpAlarmWrap__row .btnDelete:before, .dpAlarmWrap__row .btnDelete:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpAlarmWrap__row .btnDelete:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.dpAlarmWrap__row .btnDelete:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.dpAlarmWrap__news {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 192px;
    max-height: 36px;
    font-size: 13px;
    color: #222;
}

.dpAllMenuWrap {
    width: 100%;
    max-height: 400px;
    position: absolute;
    left: 0;
    top: 174px;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.dpAllMenuWrap__inner {
    width: 1080px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpAllMenuWrap__list {
    display: none;
    height: 360px;
    width: 180px;
    position: relative;
    border-right: 1px solid #ececec;
}
.dpAllMenuWrap__list.subject {
    width: 360px;
    border-left: 1px solid #ececec;
}
.dpAllMenuWrap__list.subject .dpAllMenuWrap__links {
    display: none;
    width: 50%;
    position: absolute;
    right: 0;
    top: 33px;
    height: 347px;
    overflow-y: auto;
    margin-top: 0;
}
.dpAllMenuWrap__list.active {
    display: block;
}
.dpAllMenuWrap__list.info {
    max-width: 100%;
    padding: 0 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.dpAllMenuWrap__list.info .dpAllMenuWrap__h2 {
    padding-left: 28px;
}
.dpAllMenuWrap__list.info .btnWrap {
    position: absolute;
    right: 20px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 10px;
}
.dpAllMenuWrap__list.info .btnWrap__link {
    position: initial;
}
.dpAllMenuWrap__list .btnWrap__link {
    position: absolute;
    max-width: 140px;
    left: 20px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 30px;
    border: solid 1px #ececec;
    background-color: #fff;
    font-size: 11px;
    color: #666;
    padding: 5px 15px;
}
.dpAllMenuWrap__list .btnWrap__link:hover {
    text-decoration: none;
    border-color: #999;
}
.dpAllMenuWrap__h2 {
    font-size: 14px;
    color: #111;
    padding: 0 0 0 20px;
}
.dpAllMenuWrap__h2 .link {
    color: #111;
}
.dpAllMenuWrap__h2 + .dpAllMenuWrap__h2 {
    margin-top: 30px;
}
.dpAllMenuWrap__h2.subscription {
    background: url(/images/navigation/subscription.svg) no-repeat 0 50%/contain;
}
.dpAllMenuWrap__h2.benefit {
    background: url(/images/navigation/benefit.svg) no-repeat 0 50%/contain;
}
.dpAllMenuWrap__h2.akaroot {
    background: url(/images/navigation/akaroot.svg) no-repeat 0 50%/contain;
}
.dpAllMenuWrap__h2.wordvice {
    background: url(/images/navigation/wordvice.svg) no-repeat 0 50%/contain;
}
.dpAllMenuWrap__h2.tip {
    background: url(/images/navigation/tip.svg) no-repeat 0 50%/contain;
}
.dpAllMenuWrap__txt {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    line-height: 1.67;
}
.dpAllMenuWrap__h2Link {
    display: block;
}
.dpAllMenuWrap__h2Link:not(:first-child) {
    margin-top: 20px;
}
.dpAllMenuWrap__h2Link:hover {
    text-decoration: none;
}
.dpAllMenuWrap__h2Link:hover .dpAllMenuWrap__h2 {
    color: #db3a3f;
}
.dpAllMenuWrap__category:first-of-type {
    margin-top: 13px;
}
.dpAllMenuWrap__category:hover .dpAllMenuWrap__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dpAllMenuWrap__category:hover .dpAllMenuWrap__tit {
    background-color: #db3a3f;
    color: #fff;
    position: relative;
}
.dpAllMenuWrap__category:hover .dpAllMenuWrap__tit:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-left: 0;
    border-top: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
.dpAllMenuWrap__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    min-height: 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 20px;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.05em;
}
.dpAllMenuWrap__tit.active {
    background-color: #db3a3f;
    color: #fff;
    position: relative;
}
.dpAllMenuWrap__tit.active:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-left: 0;
    border-top: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
.dpAllMenuWrap__links {
    margin-top: 13px;
}
.dpAllMenuWrap__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 34px;
    padding: 5px 10px 5px 20px;
    color: #666;
    font-size: 12px;
}
.dpAllMenuWrap__link:hover {
    background-color: #fff1f1;
    color: #db3a3f;
    text-decoration: none;
}
.dpAllMenuWrap.openMenu .dpAllMenuWrap__inner {
    padding: 20px 0;
}
.dpAllMenuWrap.openMenu .dpAllMenuWrap__list {
    display: block;
}
.dpAllMenuWrap.openMenu .dpAllMenuWrap__tit.active + .dpAllMenuWrap__links {
    display: block !important;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject {
    display: block;
    width: 450px;
    height: 395px;
    margin-left: 33px;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__h2 {
    display: none;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit {
    width: 140px;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit.active + .dpAllMenuWrap__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__links {
    width: 305px;
    height: 385px;
    top: 13px;
    right: auto;
    left: 141px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__link {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 50%;
}
.dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__link:hover {
    background-color: #fff;
    text-decoration: underline;
    color: #666;
}

.recentSchTerms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% + 4px);
    min-height: 332px;
    position: absolute;
    left: -2px;
    top: 46px;
    border: 2px solid #EF4348;
    background: #fff;
    overflow: hidden;
    z-index: 10;
    padding: 12px 0 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    display: none;
}
.recentSchTerms.recent .recentSchTerms__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.recentSchTerms.recent .recentSchTerms__itemDelete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.recentSchTerms.recent .recentSchTerms__item.recent:before {
    display: none;
}
.recentSchTerms__top {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20px;
    padding: 0 12px;
    margin-bottom: 7px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.recentSchTerms__tit {
    font-size: 14px;
    font-weight: 400;
}
.recentSchTerms__deleteAll {
    font-size: 10px;
    color: #bfbfbf;
    cursor: pointer;
}
.recentSchTerms__list {
    margin-bottom: auto;
}
.recentSchTerms__item {
    height: 28px;
    padding: 0 56px 0 36px;
    font-size: 12px;
    line-height: 28px;
    color: #231815;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.recentSchTerms__item:hover {
    text-decoration: none;
}
.recentSchTerms__item:before {
    content: "";
    display: block;
    position: absolute;
    right: 12px;
    top: 9px;
    width: 10px;
    height: 10px;
    background: url(/images/v2/header/ico_link.svg) no-repeat 0 0/10px 10px;
}
.recentSchTerms__item.recent {
    background: url(/images/v2/header/ico_recent.svg) no-repeat 12px 50%/14px 14px;
}
.recentSchTerms__item.recent b {
    font-weight: 700;
}
.recentSchTerms__item.recent:hover, .recentSchTerms__item.recent.selectedItem {
    background-color: #f2f2f2;
}
.recentSchTerms__item.recent:before {
    display: none;
}
.recentSchTerms__item.keyword {
    background: url(/images/v2/header/ico_keyword.svg) no-repeat 12px 50%/14px 14px;
}
.recentSchTerms__item.keyword b {
    font-weight: 700;
    color: #DB3A3F;
}
.recentSchTerms__item.keyword:hover, .recentSchTerms__item.keyword.selectedItem {
    background-color: #f2f2f2;
}
.recentSchTerms__itemDelete {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 12px;
    top: 9px;
    cursor: pointer;
    background: url(/images/v2/header/ico_delete.svg) no-repeat 0 0/10px 10px;
}
.recentSchTerms__toggleWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 12px auto 0;
    width: calc(100% - 24px);
    height: 53px;
    border-top: 1px solid #CFCFCF;
    font-size: 13px;
    color: #75797E;
}
.recentSchTerms__label {
    position: relative;
    margin-left: 6px;
    cursor: pointer;
}
.recentSchTerms__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 50px;
    height: 20px;
    padding: 0 8px;
    background-color: #c4c4c4;
    border-radius: 10px;
}
.recentSchTerms__toggle:after {
    content: "OFF";
    font-size: 10px;
    color: #75797E;
    opacity: 1;
    cursor: pointer;
}
.recentSchTerms__toggle:before {
    opacity: 0;
}
.recentSchTerms__toggle:checked {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #db3a3f;
}
.recentSchTerms__toggle:checked:after {
    opacity: 0;
}
.recentSchTerms__toggle:checked:before {
    opacity: 1;
    content: "ON";
    font-size: 10px;
    color: #fff;
    cursor: pointer;
}
.recentSchTerms__toggle:checked + i {
    left: 32px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.recentSchTerms__toggle + i {
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 4px;
    top: 3px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.dpMobileMenu {
    display: none;
}

@media screen and (max-width: 960px) {
    html {
        -ms-scroll-chaining: none;
        overscroll-behavior: none;
    }
    html.focus {
        overflow: hidden;
    }
    @supports (-webkit-touch-callout: none) {
        html.focus {
            overflow: hidden;
        }
    }
    html.fixed {
        overflow: hidden;
    }
    @supports (-webkit-touch-callout: none) {
        html.fixed {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
    }
    .topBanner.focus {
        display: none;
    }
    .dpHeader {
        padding: 0;
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 30;
        border-bottom: 1px solid #ccc;
        -webkit-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
    }
    .dpHeader.up {
        padding-top: 0;
    }
    .dpHeader.up .dpHeader__inner {
        margin-bottom: 0;
    }
    .dpHeader.up .dpHeader__btnDetail {
        display: none;
    }
    .dpHeader.up:after {
        display: none;
    }
    .dpHeader.down {
        padding-top: 0;
    }
    .dpHeader.down .dpHeader__inner {
        margin-bottom: 0;
    }
    .dpHeader.down .dpHeader__logo,
    .dpHeader.down .dpHeader__mobileService {
        display: none;
    }
    .dpHeader.down .dpHeader__searchWrap {
        margin: 0;
    }
    .dpHeader:after {
        display: none;
    }
    .dpHeader:before {
        display: none;
    }
    .dpHeader.sticky {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .dpHeader__inner {
        margin: 0 auto;
        padding: 0 20px;
        height: 64px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #cfcfcf;
        z-index: 10;
    }
    .dpHeader__inner.focus {
        z-index: 101;
        background-color: #fff;
    }
    .dpHeader__inner.focus .dpHeader__logo,
    .dpHeader__inner.focus .dpHeader__mobileService {
        display: none;
    }
    .dpHeader__inner.focus .dpHeader__searchWrap {
        margin: 0;
    }
    .dpHeader__inner.focus .dpHeader__back {
        display: block;
    }
    .dpHeader__logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 90px;
        height: 34px;
        margin: 0;
        background: url(/images/common/logo_dbpia.png) no-repeat 0 50%/contain;
        -ms-flex-item-align: center;
        align-self: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
    .dpHeader__back {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        position: relative;
    }
    .dpHeader__back:before {
        content: "";
        display: block;
        width: 15px;
        height: 2px;
        background-color: #75797E;
        position: absolute;
        left: 6px;
        top: 12px;
        border-radius: 10px;
    }
    .dpHeader__back:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        border: 2px solid #75797E;
        border-top: 0;
        border-right: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        left: 5px;
        top: 7px;
    }
    .dpHeader__mobileService {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 24px;
        height: 24px;
        background: url(/images/navigation//mymenu.svg) no-repeat 50% 50%/contain;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
    .dpHeader__searchWrap {
        width: auto;
        max-width: 100%;
        height: 36px;
        border: 1px solid #EF4348;
        border-radius: 18px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin: 0 16px;
    }
    .dpHeader__selectWrap {
        display: none;
    }
    .dpHeader__btnDetail {
        position: absolute;
        right: 0;
        bottom: -45px;
        font-size: 13px;
        color: #ef4348;
        padding: 12px 0;
    }
    .dpHeader__selectTit {
        position: absolute;
        top: 0px;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0px 10px;
        width: 100%;
        height: 100%;
        font-size: 14px;
        color: #555;
        cursor: pointer;
    }
    .dpHeader__selectTit:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 13px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
        width: auto;
        height: auto;
        border-style: solid;
        border-color: #000 transparent;
        border-width: 5px 4px 0;
    }
    .dpHeader__selectTit:before {
        content: "";
        display: block;
        width: 1px;
        height: 19px;
        background-color: #ddd;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .dpHeader__select {
        opacity: 0;
        height: 100%;
        width: 100%;
        padding: 6px 9px 7px;
        font-size: 13px;
        color: #333;
        outline: none;
    }
    .dpHeader__search {
        width: 100%;
        padding-left: 20px;
        font-size: 17px;
        padding-right: 70px;
    }
    .dpHeader__search__mo {
        font-size: 17px;
    }
    .dpHeader__btnReset {
        width: 33px;
        height: 33px;
        right: 40px;
    }
    .dpHeader__btnReset:before {
        inset: 10px;
    }
    .dpHeader__btnSearch {
        background-color: transparent;
        position: absolute;
        width: 34px;
        height: 34px;
        right: 5px;
        top: 0;
    }
    .dpHeader__btnSearch:after {
        width: 17px;
        height: 17px;
        border: 1.5px solid #666;
        left: 7px;
        top: 7px;
    }
    .dpHeader__btnSearch:before {
        width: 5px;
        height: 1px;
        bottom: 12px;
        background-color: #666;
        right: 7px;
    }
    .dpHeader__btnDetail {
        display: none;
    }
    .dpHeader__service {
        display: none;
    }
    .dpHeader__navWrap {
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 48px;
        position: relative;
    }
    .dpHeader__navWrap:before, .dpHeader__navWrap:after {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        top: 0;
        width: 30px;
        height: 48px;
    }
    .dpHeader__navWrap:after {
        right: 0;
        background: rgb(255, 255, 255);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    }
    .dpHeader__navWrap:before {
        left: 0;
        background: rgb(255, 255, 255);
        background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
        background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    }
    .dpHeader__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        gap: 20px;
        padding-right: 16px;
        overflow-x: auto;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .dpHeader__nav::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
    .dpHeader__allBtn {
        display: none;
    }
    .dpHeader__link {
        white-space: nowrap;
        padding: 0;
    }
    .dpHeader__link:nth-child(2) {
        margin-left: 16px;
    }
    .dpHeader__link:nth-child(2).active {
        position: relative;
    }
    .dpHeader__link:nth-child(2).active:after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #db3a3f;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .dpHeader__link.end {
        margin-right: 0;
    }
    .dpHeader__link.end:after {
        display: none;
    }
    .dpHeader__link.myLibrary {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
    }
    .dpHeader__link.myLibrary .count {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 15px;
        padding: 0 5px;
        border-radius: 6px;
        background-color: #ef4348;
        font-size: 11px;
        color: #fff;
        font-style: normal;
        position: absolute;
        right: 0;
        top: 1px;
    }
    .dpHeader__link:hover {
        color: #db3a3f;
        text-decoration: none;
    }
    .dpHeader__utils {
        position: fixed;
        width: 90%;
        right: 0;
        display: none;
    }
    .dpHeader__language {
        display: block;
        width: 14px;
        height: 14px;
        cursor: pointer;
        background: url(/images/navigation/language.svg) no-repeat 0 0/contain;
    }
    .dpHeader__language.eng {
        background: url(/images/navigation/language-korean.svg) no-repeat 0 0/contain;
    }
    .dpAllMenuWrap {
        height: auto;
        top: 50px;
    }
    .dpAllMenuWrap.active {
        display: block;
    }
    .dpAllMenuWrap__inner {
        width: 100%;
        position: relative;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject {
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 50px 10px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto;
        position: unset;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__h2 {
        position: absolute;
        left: 20px;
        top: 20px;
        display: block;
        font-size: 16px;
        font-weight: 500;
        padding: 0;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit {
        width: auto;
        border-radius: 25px;
        background-color: #f6f6f6;
        padding: 0 12px;
        margin: 0 5px;
        white-space: nowrap;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit.active {
        background-color: #db3a3f;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit.active:after {
        display: none;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit.active + .dpAllMenuWrap__links {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        background: #fff;
        border-top: 1px solid #dadada;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__tit.active + .dpAllMenuWrap__links:after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #dadada;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__links {
        width: 100%;
        height: auto;
        left: 0;
        top: 104px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__link {
        width: 50%;
        height: 42px;
        border-bottom: solid 1px #dadada;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .dpAllMenuWrap.openSubMenu .dpAllMenuWrap__list.subject .dpAllMenuWrap__link:nth-child(odd) {
        border-right: solid 1px #dadada;
    }
    .dpAllMenuWrap__category {
        padding: 10px 0;
    }
    .dpAllMenuWrap__category:first-of-type {
        margin-top: 0;
    }
    .recentSchTerms {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100vw;
        inset: 0;
        border: 0;
        background: #fff;
        overflow: scroll;
        position: fixed;
        z-index: -1;
        padding: 84px 0 0 0;
        display: none;
    }
    .recentSchTerms:before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 64px;
        left: 0;
        background-color: #cfcfcf;
    }
    .recentSchTerms.recent .recentSchTerms__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .recentSchTerms.recent .recentSchTerms__itemDelete {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .recentSchTerms.recent .recentSchTerms__item.recent:before {
        display: none;
    }
    .recentSchTerms__top {
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 20px;
        padding: 0 12px;
        margin-bottom: 7px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .recentSchTerms__tit {
        font-size: 14px;
        font-weight: 400;
    }
    .recentSchTerms__deleteAll {
        font-size: 12px;
    }
    .recentSchTerms__list {
        margin-bottom: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
    }
    .recentSchTerms__item {
        height: 32px;
        padding: 0 56px 0 36px;
        font-size: 14px;
        line-height: 32px;
        color: #231815;
        position: relative;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .recentSchTerms__item:hover {
        text-decoration: none;
    }
    .recentSchTerms__item:before {
        content: "";
        display: block;
        position: absolute;
        right: 20px;
        top: 9px;
        width: 10px;
        height: 10px;
        background: url(/images/v2/header/ico_link.svg) no-repeat 0 0/10px 10px;
    }
    .recentSchTerms__item.recent {
        background: url(/images/v2/header/ico_recent.svg) no-repeat 12px 50%/14px 14px;
    }
    .recentSchTerms__item.recent b {
        font-weight: 700;
    }
    .recentSchTerms__item.recent:hover {
        background-color: #f2f2f2;
    }
    .recentSchTerms__item.recent:before {
        display: none;
    }
    .recentSchTerms__item.keyword {
        background: url(/images/v2/header/ico_keyword.svg) no-repeat 12px 50%/14px 14px;
    }
    .recentSchTerms__item.keyword b {
        font-weight: 700;
        color: #DB3A3F;
    }
    .recentSchTerms__item.keyword:hover {
        background-color: #f2f2f2;
    }
    .recentSchTerms__itemDelete {
        width: 32px;
        height: 32px;
        position: absolute;
        right: 10px;
        top: 0;
        cursor: pointer;
        background: url(/images/v2/header/ico_delete.svg) no-repeat 50%/10px 10px;
    }
    .recentSchTerms__toggleWrap {
        width: 100%;
        padding: 0 20px;
        height: 53px;
        font-size: 13px;
        margin: 10px 0 0;
        border-bottom: 1px solid #CFCFCF;
    }
    .recentSchTerms__label {
        position: relative;
        margin-left: 6px;
        cursor: pointer;
    }
    .recentSchTerms__toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 50px;
        height: 20px;
        padding: 0 8px;
        background-color: #c4c4c4;
        border-radius: 10px;
    }
    .recentSchTerms__toggle:after {
        content: "OFF";
        font-size: 10px;
        color: #75797E;
        opacity: 1;
        cursor: pointer;
    }
    .recentSchTerms__toggle:before {
        opacity: 0;
    }
    .recentSchTerms__toggle:checked {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background-color: #db3a3f;
    }
    .recentSchTerms__toggle:checked:after {
        opacity: 0;
    }
    .recentSchTerms__toggle:checked:before {
        opacity: 1;
        content: "ON";
        font-size: 10px;
        color: #fff;
        cursor: pointer;
    }
    .recentSchTerms__toggle:checked + i {
        left: 32px;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }
    .recentSchTerms__toggle + i {
        display: block;
        width: 14px;
        height: 14px;
        position: absolute;
        left: 4px;
        top: 3px;
        border-radius: 50%;
        background-color: #fff;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }
    .dpMobileMenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 80%;
        height: 100%;
        overflow-y: auto;
        position: fixed;
        left: 20%;
        top: 0;
        background-color: #fff;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-animation: transform 0.5s ease-in;
        animation: transform 0.5s ease-in;
        z-index: 101;
    }
    .dpMobileMenu[data-slide=in] {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        -webkit-box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.3);
        box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.3);
        -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    }
    .dpMobileMenu__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 20px 0 15px;
        border-bottom: 1px solid #c8c8c8;
        height: 57px;
    }
    .dpMobileMenu__userName {
        font-size: 14px;
        font-weight: 700;
        color: #111;
    }
    .dpMobileMenu__closed {
        width: 25px;
        height: 25px;
        position: relative;
    }
    .dpMobileMenu__closed:after, .dpMobileMenu__closed:before {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background-color: #666;
        position: absolute;
        left: 50%;
        top: 50%;
    }
    .dpMobileMenu__closed:after {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .dpMobileMenu__closed:before {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .dpMobileMenu__nav {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        overflow-y: scroll;
        -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    }
    .dpMobileMenu__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 19px 0 15px;
        height: 46px;
        font-weight: 500;
        font-size: 14px;
        color: #707070;
        border-bottom: 1px solid #efefef;
    }
    .dpMobileMenu__item.certification {
        font-weight: 700;
        color: #111;
    }
    .dpMobileMenu__item.login {
        font-weight: 700;
        color: #3C63E0;
    }
    .dpMobileMenu__btn {
        width: 100%;
        cursor: pointer;
        position: relative;
    }
    .dpMobileMenu__btn:after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        border: 1px solid #888;
        border-top: 0;
        border-right: 0;
        position: absolute;
        right: 25px;
        top: 15px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .dpMobileMenu__btn.open:after {
        top: 20px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .dpMobileMenu__btn.open + .dpMobileMenu__items {
        display: block;
        height: auto;
        padding: 9px 0 7px;
        border-bottom: 1px solid #efefef;
    }
    .dpMobileMenu__items {
        overflow: hidden;
        height: 0;
    }
    .dpMobileMenu__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 29px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 37px;
        color: #555;
        font-size: 14px;
    }
    .dpMobileMenu__subscribing {
        width: calc(100% - 34px);
        margin: 3px 17px 30px;
        padding: 18px 16px 17px;
        border-radius: 4px;
        border: 1px solid #ECECEC;
        background-color: #F8F8F8;
        position: relative;
    }
    .dpMobileMenu__subscribing:before {
        content: "";
        display: block;
        width: calc(100% + 34px);
        height: 3px;
        background-color: #fff;
        position: absolute;
        left: -17px;
        top: -6px;
    }
    .dpMobileMenu__subscribing:after {
        content: "";
        display: block;
        width: calc(100% + 34px);
        height: 1px;
        background-color: #efefef;
        position: absolute;
        left: -17px;
        bottom: -30px;
    }
    .dpMobileMenu__refresh {
        position: absolute;
        font-size: 12px;
        color: #777;
        padding-left: 13px;
        background: url(/images/v2/filter/ico_deslect.svg) no-repeat 0 40%/10px 12px;
        cursor: pointer;
        top: 20px;
        right: 15px;
    }
    .dpMobileMenu .subscribing__product {
        font-size: 9px;
        color: #fff;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 2px 5px 3px;
        background-color: #3C63E0;
    }
    .dpMobileMenu .subscribing__box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 5px;
    }
    .dpMobileMenu .subscribing__tit {
        font-size: 16px;
        font-weight: 500;
        color: #060606;
    }
    .dpMobileMenu .subscribing__tit strong {
        color: #EF4348;
    }
    .dpMobileMenu .subscribing__date {
        font-size: 11px;
        color: #8E8E8E;
    }
    .dpMobileMenu .subscribing__date span {
        color: #EF4348;
        margin-right: 1px;
    }
    .dpMobileMenu__login {
        padding: 15px;
        border-bottom: 1px solid #efefef;
    }
    .dpMobileMenu .accredit-box {
        height: auto;
        min-height: 65px;
    }
    .dpMobileMenu .accredit-box:hover {
        text-decoration: none;
    }
    .dpMobileMenu .accredit-box__tit {
        color: #3C63E0;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        text-decoration: underline;
    }
    .dpMobileMenu .accredit-box__txt {
        line-height: 1.2;
        letter-spacing: -0.05em;
    }
    .dpMobileMenu .accredit-box__ok {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 60px;
        height: 35px;
        color: #fff;
        font-size: 10px;
        text-align: center;
        background-color: #3C63E0;
        cursor: pointer;
    }
    .dpMobileMenu .accredit-box__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        line-height: 1.8;
    }
    .dpMobileMenu .accredit-box__right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .dpMobileMenu .accredit-box .day-count {
        font-size: 13px;
        color: #3C63E0;
        font-weight: 500;
        font-family: Roboto;
    }
    .dpMobileMenu .accredit-box .day-count:before {
        content: "D-";
    }
    .dpMobileMenu .accredit-box .extension {
        font-size: 12px;
        color: #111;
        text-decoration: underline;
    }
    .dpMobileMenu .accredit-box .extension.xs {
        font-size: 10px;
    }
    .dpMobileMenu .accredit-box .again {
        margin-left: auto;
        font-size: 10px;
        color: #3C63E0;
    }
    .dpMobileMenu .accredit-box .again:after {
        content: "";
        margin-left: 5px;
        display: inline-block;
        vertical-align: middle;
        height: 4px;
        border-top: 4px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid #3C63E0;
    }
    .dpMobileMenu__footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        min-height: 45px;
        padding: 0 15px;
        border-top: 1px solid #e7e7e7;
    }
    .dpMobileMenu__logout {
        font-size: 14px;
        font-weight: 500;
        color: #666;
        text-decoration: underline;
    }
    .dpMobileMenu__language {
        width: 27px;
        height: 27px;
        background: url(/images/common/language_g.svg) no-repeat center/22px 22px;
    }
    .dpMobileMenu__language.eng {
        background-image: url(/images/common/language_koreag.svg);
    }
}
.dbFooter {
    background-color: #F2F2F2;
    border-top: 1px solid #DCDCDC;
    font-size: 13px;
    color: #000;
}
.dbFooter__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-areas: "footer-top footer-top" "footer-left footer-right-top" "footer-left footer-right-btm";
    grid-template-columns: auto 150px;
}
.dbFooter__info {
    grid-area: footer-top;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #DCDCDC;
    color: #000;
}
.dbFooter__left {
    grid-area: footer-left;
}
.dbFooter__link {
    padding: 0 15px;
    position: relative;
    color: #000;
    font-weight: 400;
}
.dbFooter__link:not(:last-child)::after {
    position: absolute;
    top: 5px;
    right: 0;
    display: block;
    content: "";
    width: 1px;
    height: 11px;
    background: #DCDCDC;
}
.dbFooter__family {
    position: relative;
    min-width: 132px;
    margin-right: 15px;
}
.dbFooter__family::after {
    content: "";
    border: 5px solid;
    border-color: #c4c4c4 transparent transparent transparent;
    position: absolute;
    right: 10px;
    top: 60%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}
.dbFooter__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
    border: 1px solid #DCDCDC;
    height: 30px;
    position: relative;
    background-color: #fff;
    color: #666;
    width: 100%;
}
.dbFooter__addressWrap {
    grid-area: footer-left;
    padding: 10px 15px 0;
    margin-bottom: 12px;
}
.dbFooter__address {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}
.dbFooter__address:not(:last-child) {
    margin-bottom: 5px;
}
.dbFooter__copy {
    grid-area: footer-left;
    font-size: 11px;
    color: #999;
    margin-left: 15px;
}
.dbFooter__prize {
    grid-area: footer-left;
    padding: 15px 15px 20px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dbFooter__prizeItem {
    text-decoration: none;
    display: inline-block;
}
.dbFooter__prizeItem:not(:last-child) {
    margin-right: 20px;
}
.dbFooter__prizeItem img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.dbFooter__prizeItem.gcs {
    width: 72px;
}
.dbFooter__prizeItem.rightOk {
    width: 50px;
}
.dbFooter__prizeItem.kepa {
    width: 49px;
}
.dbFooter__prizeItem.aws {
    width: 93px;
}
.dbFooter__prizeItem.isms {
    width: 42px;
}
.dbFooter__customer {
    grid-area: footer-right-top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 5px;
}
.dbFooter__customer h3 {
    margin-right: 8px;
}
.dbFooter__customer a {
    font-size: 11px;
    color: #666;
    text-decoration: none;
}
.dbFooter__customer a:hover {
    text-decoration: underline;
}
.dbFooter__workTime {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}
.dbFooter__help > a {
    font-size: 13px;
    font-weight: 400;
}
.dbFooter__qna {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}
.dbFooter__qna a:first-child:after {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1px;
    height: 10px;
    background-color: #666;
    margin-left: 5px;
}
.dbFooter__qna > a {
    font-size: 12px;
}
.dbFooter__notice {
    grid-area: footer-right-btm;
}
.dbFooter__notice h3 a {
    position: relative;
    padding-right: 12px;
}
.dbFooter__notice h3 a:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border: 1px solid #666;
    border-left: 0;
    border-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 0;
    top: 7px;
}
.dbFooter__h3 {
    margin: 0;
    display: inline-block;
}
.dbFooter__h3 a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}
.dbFooter__h3 a:hover {
    text-decoration: underline;
}
.dbFooter__sns {
    margin-top: 10px;
}
.dbFooter__sns a {
    text-decoration: none;
}
.dbFooter__sns a:not(:last-child) {
    margin-right: 8px;
}
.dbFooter__business {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 5px;
    height: 14px;
    color: #666;
    font-size: 10px;
    border: 1px solid #666;
    cursor: pointer;
}

@media screen and (max-width: 960px) {
    .dbFooter__inner {
        display: block;
        padding-bottom: 20px;
    }
    .dbFooter__info {
        height: auto;
    }
    .dbFooter__links {
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
        padding: 20px 0;
    }
    .dbFooter__link {
        display: inline-block;
    }
    .dbFooter__link:nth-child(n+4) {
        margin-top: 10px;
    }
    .dbFooter__link:nth-child(3):after {
        display: none;
    }
    .dbFooter__family {
        display: none;
    }
    .dbFooter__prize {
        display: none;
    }
    .dbFooter__customer {
        display: none;
    }
    .dbFooter__notice {
        display: none;
    }
}
/**
input 에서 type=number 일 때 자동으로 생기는 화살표 제거
 */
.phraseBanner__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 100px;
}
.phraseBanner__link__read {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    background: #f3f5ff;
    border-radius: 3px;
    padding: 15px;
    position: relative;
    cursor: pointer;
}
.phraseBanner__link__read:focus, .phraseBanner__link__read:active {
    text-decoration: none;
    color: transparent;
}
.phraseBanner__link__read:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 80px;
}
.phraseBanner__link__read.beforeApply:after {
    background-size: 160px !important;
    background: url(/images/service/trial_link_before.png) no-repeat center bottom;
    max-height: 94px;
}
.phraseBanner__link__read.personalApply:after {
    background-size: 85px !important;
    background: url(/images/service/trial_link_personal.png) no-repeat center bottom;
}
.phraseBanner__link__read:hover {
    text-decoration: underline;
}
.phraseBanner__link__btn {
    font-size: 10px;
    color: #999;
    position: relative;
    /* margin-top: 10px; */
    /* display: inline-block; */
}
.phraseBanner__link__btn:after {
    content: "";
    display: block;
    position: absolute;
    right: -20px;
    top: 3px;
    background: url(/images/service/trial_link_btn.svg) no-repeat 50%/15px;
    width: 19px;
    height: 8px;
}

.phraseBannerRead__desc {
    font-size: 13px;
    color: #111;
    display: block;
}

.topBanner2 {
    width: 100%;
    position: relative;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.topBanner2__leftWrap, .topBanner2__rightWrap {
    width: 50%;
    position: relative;
    height: 60px;
    cursor: pointer;
}
.topBanner2__rightWrap__content {
    right: 60px;
    position: absolute;
    height: 100%;
}
.topBanner2__leftWrap__content {
    left: 60px;
    position: absolute;
    height: 100%;
}
.topBanner2__closed {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
}
.topBanner2__closed::before {
    content: "";
    background: url(/images/v2/banner/btn_topBanner_closed.png) no-repeat 0/cover;
    cursor: pointer;
    position: absolute;
    inset: 15px;
}

@media screen and (max-width: 960px) {
    .topBanner2__leftWrap {
        width: 100% !important;
        display: block;
        right: 0;
    }
    .topBanner2__leftWrap__content {
        max-width: 100%;
        left: 0;
    }
    .topBanner2__rightWrap {
        display: none;
    }
}
dialog[class] {
    display: none;
}

dialog[open],
dialog[open=open] {
    display: block;
}

.BannerFloating {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
}
.BannerFloating.scroll {
    position: fixed;
    top: 200px;
}

.bgDimmed {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    inset: 0;
    z-index: 102;
}
.bgDimmed[data-visible=visible] {
    display: block;
}

.dpPartnership {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 0.5px));
    transform: translateX(calc(-50% + 0.5px));
    width: 526px;
    top: 45px;
    padding: 30px;
    background-color: #fff;
    border: 0;
}
.dpPartnership__tit {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
}
.dpPartnership__txt {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}
.dpPartnership__closed {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.dpPartnership__closed:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.dpPartnership__closed:before, .dpPartnership__closed:after {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.dpPartnership__closed:after {
    -webkit-transform: rotate(45deg) translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: rotate(45deg) translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
}
.dpPartnership__closed:before {
    -webkit-transform: rotate(-45deg) translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: rotate(-45deg) translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
}
.dpPartnership .partnershipWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.dpPartnership .partnershipLy {
    border: 1px solid #efefef;
    width: 100%;
}
.dpPartnership .partnershipLy:not(:first-child) {
    width: 50%;
    border-top: 0;
}
.dpPartnership .partnershipLy:last-child {
    border-left: 0;
}
.dpPartnership .partnershipLy__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding-left: 12px;
    background-color: #fafafa;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    border-bottom: 1px solid #efefef;
}
.dpPartnership .partnershipLy__dl {
    padding: 22px 15px 21px;
    font-size: 12px;
    color: #666;
}
.dpPartnership .partnershipLy__dt {
    display: inline-block;
}
.dpPartnership .partnershipLy__dd {
    display: inline-block;
}
.dpPartnership .partnershipLy__dd + dd {
    display: block;
    margin-top: 7px;
}
.dpPartnership .partnershipLy__mail a {
    text-decoration: none;
    padding-left: 20px;
    background: url(/images/v2/common/ico_mail.svg) no-repeat 0 80%/15px;
    color: #3c63e0;
}
.dpPartnership .partnershipLy__mail a:hover {
    text-decoration: underline;
}

.dpAlert {
    z-index: 110;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    width: 336px;
    background-color: #fff;
    border: 0;
    padding-top: 25px;
}
.dpAlert:before {
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    border: 5px solid #fff;
    background-color: #3C63E0;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -42px;
    -webkit-transform: translateX(calc(-50% + 0.5px));
    transform: translateX(calc(-50% + 0.5px));
}
.dpAlert:after {
    content: "";
    display: block;
    width: 10px;
    height: 25px;
    position: absolute;
    -webkit-transform: translateX(calc(-50% + 0.5px)) rotate(180deg);
    transform: translateX(calc(-50% + 0.5px)) rotate(180deg);
    left: 50%;
    top: -24px;
    background-color: #fff;
    -webkit-box-shadow: 0 -8px 0 0 #fff;
    box-shadow: 0 -8px 0 0 #fff;
    border-top: 2px solid #3C63E0;
}
.dpAlert__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    margin: 25px 20px 20px;
}
.dpAlert__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    padding: 12px 10px;
    border-top: 1px solid #EFEFEF;
}
.dpAlert__closed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
}
.dpAlert__closed:after, .dpAlert__closed:before {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpAlert__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpAlert__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpAlert__optionBtnWrap {
    display: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    padding: 12px 10px 0 10px;
    border-top: 1px solid #EFEFEF;
}
.dpAlert__optionBtnWrap__checkWrap {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.dpAlert__optionBtnWrap__bottomWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 10px;
    font-size: 14px;
}
.dpAlert__optionBtnWrap__bottomWrap__dontShowAgain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 10px 12px 10px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.dpAlert__optionBtnWrap__bottomWrap__dontShowAgain a {
    font-size: 11px;
    color: #999999;
    -webkit-text-decoration: auto;
    text-decoration: auto;
}
.dpAlert__optionBtnWrap__topWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 10px;
    font-size: 14px;
}
.dpAlert .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 37px;
    font-size: 16px;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    cursor: pointer;
    background-color: #555;
    margin-right: 10px;
    outline: none;
}
.dpAlert .btn:last-child {
    background-color: #3C63E0;
    margin-right: 0;
}

.noBeforeAfter:before {
    display: none !important;
}
.noBeforeAfter:after {
    display: none !important;
}

.noSectionBorder section {
    border: none !important;
}

.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.dpLogin {
    z-index: 100;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    background-color: #fff;
    width: 524px;
    border: 0;
}
.dpLogin__header {
    padding: 13px 16px;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.dpLogin__header img {
    width: 100px;
    height: 30px;
}
.dpLogin__closed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}
.dpLogin__closed:after, .dpLogin__closed:before {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpLogin__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpLogin__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpLogin__h2 {
    font-size: 20px;
    text-align: center;
    margin: 10px 0 20px;
}
.dpLogin__form {
    padding: 0 110px 0;
}
.dpLogin__info {
    font-size: 12px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 15px;
}
.dpLogin__inputBox {
    position: relative;
}
.dpLogin__inputBox:not(:first-child) {
    margin-top: 15px;
}
.dpLogin__inputBox.focus label {
    top: 2px;
    font-size: 7px;
    color: #666;
}
.dpLogin__inputBox label {
    position: absolute;
    top: 13px;
    left: 12px;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    cursor: text;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    color: #666;
}
.dpLogin__inputBox .btnDelete {
    display: none;
    position: absolute;
    top: 22px;
    right: 15px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: #fafafa;
    border-radius: 50%;
    border: 1px solid #cecece;
    -webkit-transform: translateY(calc(-50% + 0.5px));
    transform: translateY(calc(-50% + 0.5px));
}
.dpLogin__inputBox .btnDelete.on {
    display: block;
}
.dpLogin__inputBox .btnDelete:after, .dpLogin__inputBox .btnDelete:before {
    content: "";
    display: block;
    width: 80%;
    height: 0.5px;
    background-color: #cecece;
    left: 50%;
    top: 50%;
    position: absolute;
}
.dpLogin__inputBox .btnDelete:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpLogin__inputBox .btnDelete:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpLogin__inputBox .btnTogglePassword {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 1px;
    right: -45px;
    width: 43px;
    height: 40px;
    background: url(/images/common/eye_off2.svg) no-repeat 50% 50%/22px 22px;
}
.dpLogin__inputBox .btnTogglePassword.show {
    display: block;
}
.dpLogin__inputBox .btnTogglePassword.on {
    background: url(/images/common/eye_on.svg) no-repeat 50% 50%/22px 22px;
}
.dpLogin__input {
    width: 100%;
    height: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #111;
    border: 1px solid #ccc;
    outline: none;
    padding: 0 13px;
    background: #fff;
    border-radius: 3px;
}
.dpLogin__input:focus, .dpLogin__input__hasText {
    outline: 1px solid #999DFF;
}
.dpLogin__input:focus + label, .dpLogin__input__hasText + label {
    top: 2px;
    font-size: 7px;
    color: #666;
}
.dpLogin__linkBox {
    padding: 10px 110px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.dpLogin__linkBox span {
    margin: 0 5px;
}
.dpLogin__saveId {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.dpLogin__saveId label {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
    cursor: pointer;
}
.dpLogin__saveId label + input {
    margin-left: 10px;
}
.dpLogin .autoLogin-tooltip {
    display: none;
    padding: 5px 0 0 20px;
    font-size: 12px;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: -35px;
    font-size: 12px;
    color: #666;
    background: #fff;
    border: 1px solid #ECECEC;
    padding: 5px 15px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    letter-spacing: -0.05em;
}
.dpLogin .autoLogin-tooltip.info {
    display: block;
}
.dpLogin .autoLogin-tooltip.keep {
    display: none;
}
.dpLogin .autoLogin-tooltip:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 30px;
    bottom: -5px;
}
.dpLogin .autoLogin-tooltip b {
    font-weight: 400;
    color: #3c63e0;
}
.dpLogin__login {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 45px;
    background-color: #ef4348;
    border-radius: 3px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.dpLogin__login:hover {
    background-color: #c03639;
}
.dpLogin__snsLogin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    height: 45px;
    border: 1px solid #ccc;
    -webkit-transition: -webkit-box-shadow 0.5s ease, -webkit-transform 0.2s ease;
    transition: -webkit-box-shadow 0.5s ease, -webkit-transform 0.2s ease;
    transition: box-shadow 0.5s ease, transform 0.2s ease;
    transition: box-shadow 0.5s ease, transform 0.2s ease, -webkit-box-shadow 0.5s ease, -webkit-transform 0.2s ease;
    border-radius: 3px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}
.dpLogin__snsLogin:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.dpLogin__snsLogin.kakao {
    background: url(/images/member/sns_kakao.svg) no-repeat 25px 50%/30px 30px;
}
.dpLogin__snsLogin.naver {
    background: url(/images/member/sns_naver.svg) no-repeat 25px 50%/30px 30px;
}
.dpLogin__snsLogin.google {
    background: url(/images/member/sns_google.svg) no-repeat 25px 50%/30px 30px;
}
.dpLogin__snsLogin.apple {
    background: url(/images/member/sns_apple.svg) no-repeat 25px 50%/30px 30px;
}
.dpLogin__snsLogin.displayShow {
    position: relative;
}
.dpLogin__snsLogin.displayShow::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 20px;
    width: 18px;
    height: 18px;
    background: url(../images/common/log_cheki.svg) no-repeat center;
}
.dpLogin__link {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
}
.dpLogin__logChecking {
    color: #666;
    font-size: 13px;
    display: none;
    margin: 10px 0 20px;
    width: 100%;
    text-align: left;
}
.dpLogin__logChecking::before {
    content: "";
    display: inline-block;
    background: url(../images/common/log_cheki.svg) no-repeat center;
    width: 15px;
    height: 15px;
    vertical-align: bottom;
    margin-right: 5px;
}
.dpLogin__capsLockText {
    display: none;
    position: relative;
    color: rgb(219, 58, 63);
    font-size: 12px;
    text-align: left;
    padding-top: 10px;
}

.dpSnsFloating {
    position: absolute;
    margin-left: auto;
    top: 46px;
    right: -134px;
    width: 80px;
    border-top: 1px solid #efefef;
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.dpSnsFloating.scroll {
    position: fixed;
    left: 50%;
    top: 200px;
    right: auto;
    -webkit-transform: translateX(595px);
    transform: translateX(595px);
}
.dpSnsFloating__h2 {
    font-size: 12px;
    color: #333;
}
.dpSnsFloating__snsWrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
}
.dpSnsFloating__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
}
.dpSnsFloating__sns img {
    opacity: 0.7;
}
.dpSnsFloating__sns:hover img {
    opacity: 1;
}
.dpSnsFloating__topBtn {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    font-weight: 700;
    cursor: pointer;
}

.dpReportReview {
    width: 600px;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    background-color: #fff;
    padding: 30px 30px 10px;
    border: 0;
    z-index: 100;
}
@media screen and (max-width: 960px) {
    .dpReportReview {
        width: 100%;
    }
}
.dpReportReview__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}
.dpReportReview__tit {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
}
.dpReportReview__closed {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.dpReportReview__closed:after, .dpReportReview__closed:before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpReportReview__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpReportReview__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpReportReview__txt {
    font-size: 14px;
    color: #666;
}
.dpReportReview__textarea {
    padding: 7px 9px;
    font-size: 14px;
    color: #111;
    border: 1px solid #ccc;
    margin-top: 10px;
    width: 100%;
    resize: none;
}
.dpReportReview .btnWrap {
    border-top: 1px solid #efefef;
    margin-top: 10px;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 6px;
}
.dpReportReview .btnWrap button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 110px;
    height: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
}
.dpReportReview .btnWrap .btnCancel {
    background-color: #555;
}
.dpReportReview .btnWrap .btnCancel:hover {
    background-color: #444;
}
.dpReportReview .btnWrap .btnOk {
    background-color: #3c63e0;
}
.dpReportReview .btnWrap .btnOk:hover {
    background-color: #304fb3;
}

.dpReplyInfo {
    z-index: 100;
    background-color: #fff;
    border: 0;
    position: absolute;
    right: 0%;
    top: 25px;
    width: 300px;
    padding: 30px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    text-align: left;
}
.dpReplyInfo__tit {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
    text-align: center;
}
.dpReplyInfo__txt {
    font-size: 12px;
    color: #666;
    line-height: 17px;
}
.dpReplyInfo__cont {
    margin-top: 10px;
}
.dpReplyInfo__list {
    margin-top: 16px;
    counter-reset: list-number;
}
.dpReplyInfo__item {
    counter-increment: list-number;
    font-size: 11px;
    color: #666;
    line-height: 16px;
    padding-left: 20px;
    position: relative;
}
.dpReplyInfo__item:before {
    position: absolute;
    left: 0;
    top: 0;
    content: counter(list-number) ".";
}

.dpJudicial {
    background-color: #fff;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    width: 600px;
    padding: 30px 30px 0;
    z-index: 100;
}
.dpJudicial__tit {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}
.dpJudicial__closed {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.dpJudicial__closed:after, .dpJudicial__closed:before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpJudicial__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpJudicial__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpJudicial .btnWrap {
    border-top: 1px solid #efefef;
    margin-top: 10px;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 6px;
}
.dpJudicial .btnWrap button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 110px;
    height: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
}
.dpJudicial .btnWrap .btnOk {
    background-color: #1F8BD8;
}
.dpJudicial .btnWrap .btnOk:hover {
    background-color: #165C92;
}
.dpJudicial__h2 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 20px 0 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #EFEFEF;
}
.dpJudicial__txt {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    margin-top: 10px;
}
.dpJudicial__stxt {
    font-size: 12px;
    color: #666;
    line-height: 17px;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.dpCart {
    z-index: 100;
    width: 526px;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    background-color: #fff;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 960px) {
    .dpCart {
        width: 100%;
    }
}
.dpCart button {
    cursor: pointer;
}
.dpCart__header {
    padding: 13px 15px;
}
.dpCart__tit {
    font-size: 16px;
    color: #111;
    font-weight: 500;
}
.dpCart__closed {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
}
.dpCart__closed:before, .dpCart__closed:after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #111;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpCart__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpCart__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpCart__txt {
    font-size: 15px;
    color: #111;
    padding: 27px 20px 27px;
    text-align: center;
}
.dpCart__btnWrap {
    border-top: 1px solid #e7e7e7;
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 7px;
}
.dpCart__btnWrap button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 110px;
    height: 34px;
    font-size: 14px;
    color: #fff;
}
.dpCart__btnWrap .btnCancel {
    background-color: #555;
}
.dpCart__btnWrap .btnCancel:hover {
    background-color: #444;
}
.dpCart__btnWrap .btnOk {
    background-color: #3c63e0;
}
.dpCart__btnWrap .btnOk:hover {
    background-color: #304fb3;
}

.thesisPreviewPopup {
    position: fixed;
    left: 50%;
    top: 45px;
    -webkit-transform: translateX(calc(-50% + 0.5px));
    transform: translateX(calc(-50% + 0.5px));
    width: 100%;
    max-width: 813px;
    background-color: #fff;
    z-index: 100;
    border: 0;
}
.thesisPreviewPopup__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #F5F5F5;
}
.thesisPreviewPopup__tit {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.thesisPreviewPopup__closed {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}
.thesisPreviewPopup__closed:before, .thesisPreviewPopup__closed:after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #999;
    position: absolute;
    left: 50%;
    top: 50%;
}
.thesisPreviewPopup__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.thesisPreviewPopup__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.thesisPreviewPopup__cont {
    height: 76px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.thesisPreviewPopup__item {
    font-size: 13px;
    color: #606060;
    line-height: 20px;
}
.thesisPreviewPopup__item:before {
    content: "·";
    margin-right: 2px;
}
.thesisPreviewPopup__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.thesisPreviewPopup__link {
    border: 1px solid #EF4348;
    border-radius: 3px;
    width: 205px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 18px;
    background-color: #EF4348;
}
.thesisPreviewPopup__link:hover {
    text-decoration: none;
}
.thesisPreviewPopup__aTit {
    font-size: 14px;
    color: #fff;
}
.thesisPreviewPopup__div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}
.thesisPreviewPopup__div p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.thesisPreviewPopup__div del {
    font-size: 10px;
}
.thesisPreviewPopup__div strong {
    font-size: 16px;
    margin-left: 5px;
}
.thesisPreviewPopup__div b {
    font-size: 16px;
    font-weight: 500;
}
.thesisPreviewPopup__txt {
    font-size: 10px;
    margin-bottom: 5px;
}
.thesisPreviewPopup__buy {
    background-color: #fff;
}
.thesisPreviewPopup__buy span {
    color: #EF4348;
}
.thesisPreviewPopup__buy p {
    color: #606060;
}
.thesisPreviewPopup__buy b {
    color: #000;
}

.quickViewWrap {
    background: #f4f4f4;
    border-top: 1px solid #cccccc;
    padding: 25px 0 25px;
    overflow-y: auto;
    height: 700px;
}

.quickViewWrap .quickViewBox {
    width: 744px;
    margin: 0 auto;
    overflow: hidden;
}
@media screen and (max-width: 960px) {
    .quickViewWrap .quickViewBox {
        width: 100%;
    }
}

.quickViewWrap .quickViewBox .quickViewList {
    position: relative;
    overflow: hidden;
    width: 100% !important;
}

.quickViewWrap .quickViewBox .quickViewList .quickViewItem {
    width: 100%;
}

.quickViewWrap .quickViewBox .quickViewList .quickViewItem p {
    background-color: #fff;
}

.quickViewWrap .quickViewBox .quickViewList .quickViewItem .img {
    border: 1px solid #e1e1e1;
}

.quickViewWrap .quickViewBox .quickViewList .quickViewItem .img img {
    width: 100%;
}

.quickViewWrap .quickViewBox .quickViewList .quickViewItem .pageNum {
    font-size: 12px;
    color: #666666;
    text-align: center;
    padding: 13px 0;
    background-color: transparent;
}

.quickViewWrap .quickViewBox .jcarousel-wrapper .jcarousel-control-prev {
    background: none;
    left: 0px;
    top: 0px;
    width: 86px;
    height: 100%;
}

.quickViewWrap .quickViewBox .jcarousel-wrapper .jcarousel-control-next {
    background: none;
    right: 0;
    top: 0px;
    width: 86px;
    height: 100%;
}

.quickViewWrap .quickViewBox .jcarousel-wrapper .jcarousel-control-prev:before,
.quickViewWrap .quickViewBox .jcarousel-wrapper .jcarousel-control-next:before {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 27px;
    height: 50px;
    content: "";
    background: url(/images/common/jcarosel_arrow_black.png) no-repeat;
    opacity: 1;
}

.quickViewWrap .quickViewBox .jcarousel-wrapper .jcarousel-control-prev:before {
    margin-left: 30px;
}

.quickViewWrap .quickViewBox .jcarousel-wrapper .jcarousel-control-next:before {
    margin-left: 30px;
}

.downloadPurchasePopup {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    max-width: 584px;
    background-color: #fff;
    z-index: 100;
    border: 0;
}
@media screen and (max-width: 960px) {
    .downloadPurchasePopup {
        width: 100%;
    }
}
.downloadPurchasePopup button {
    cursor: pointer;
}
.downloadPurchasePopup__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    padding: 0 20px;
}
.downloadPurchasePopup__tit {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.downloadPurchasePopup__closed {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}
.downloadPurchasePopup__closed:before, .downloadPurchasePopup__closed:after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #999;
}
.downloadPurchasePopup__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.downloadPurchasePopup__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.downloadPurchasePopup__cont {
    width: 584px;
    padding: 20px 0 35px;
}
.downloadPurchasePopup__cont.premium {
    width: 370px;
    padding: 30px 0 30px;
    text-align: center;
}
.downloadPurchasePopup__cont.premium .t1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 35px;
}
.downloadPurchasePopup__cont.premium .t1 + .t2 {
    margin-top: 7px;
}
.downloadPurchasePopup__cont.premium .t2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    color: #EF4348;
}
.downloadPurchasePopup__cont.premium .t2 + .t1 {
    margin-top: 5px;
}
.downloadPurchasePopup__cont.premium .t2 i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #EF4348;
    border-radius: 15px;
    padding: 0 7px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
    font-style: normal;
}
.downloadPurchasePopup__cont.premium .t3 {
    margin: 15px auto 0;
    background-color: #F9F9F9;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 284px;
    height: 45px;
    font-size: 13px;
    color: #606060;
}
.downloadPurchasePopup__cont.premium .box {
    display: none;
}
.downloadPurchasePopup__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    border-top: 1px solid #D4D4D4;
    gap: 10px;
    padding: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.downloadPurchasePopup__btnWrap .buttonBox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.downloadPurchasePopup__btnWrap [class^=btn] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 54px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid #707070;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 18px;
    cursor: pointer;
}
.downloadPurchasePopup__btnWrap [class^=btn] span {
    font-size: 14px;
}
.downloadPurchasePopup__btnWrap [class^=btn] div {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.downloadPurchasePopup__btnWrap [class^=btn] div p {
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #606060;
    margin: 0;
}
.downloadPurchasePopup__btnWrap [class^=btn] div b {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.downloadPurchasePopup__btnWrap [class^=btn] div strong {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 700;
    margin-left: 5px;
}
.downloadPurchasePopup__btnWrap .btnCart {
    background-color: #707070;
    border-color: #707070;
    color: #fff;
}
.downloadPurchasePopup__btnWrap .btnSubscribe {
    border-color: #EF4348;
    background-color: #EF4348;
}
.downloadPurchasePopup__btnWrap .btnSubscribe div p, .downloadPurchasePopup__btnWrap .btnSubscribe span {
    color: #fff;
}
.downloadPurchasePopup__btnWrap .btnPurchase {
    border-color: #EF4348;
}
.downloadPurchasePopup__btnWrap .btnPurchase span {
    color: #EF4348;
}
.downloadPurchasePopup__txt {
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 20px;
}
.downloadPurchasePopup__txt a {
    text-decoration: underline;
    color: #111;
}
.downloadPurchasePopup__list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 500px;
    margin: 20px auto 0;
    font-size: 12px;
    color: #EF4348;
    line-height: 17px;
}
.downloadPurchasePopup__info {
    display: none;
}

.dpRecommendThesis {
    position: relative;
    width: 100%;
    max-width: 700px;
    background-color: #fff;
    top: 50px;
    z-index: 100;
    border: 0;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    margin: 0 auto;
}
@media screen and (max-width: 960px) {
    .dpRecommendThesis {
        top: 0;
        -webkit-transform: unset;
        transform: unset;
        left: 0;
        max-height: 100%;
        overflow-y: scroll;
    }
}
.dpRecommendThesis button {
    cursor: pointer;
}
.dpRecommendThesis__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    padding: 0 20px;
    border-bottom: 1px solid #dfdfdf;
}
.dpRecommendThesis__tit {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    font-weight: 700;
}
.dpRecommendThesis__closed {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}
.dpRecommendThesis__closed:before, .dpRecommendThesis__closed:after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #111;
}
.dpRecommendThesis__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpRecommendThesis__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpRecommendThesis__wrap {
    padding: 0 25px;
    border-bottom: 10px solid #f5f5f5;
    position: relative;
}
.dpRecommendThesis__label {
    border-top: 1px solid #e7e7e7;
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dpRecommendThesis__labelTxt {
    font-size: 13px;
    color: #111;
    margin-left: 9px;
    cursor: pointer;
    line-height: 1;
}
.dpRecommendThesis__h2 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    padding: 13px 70px 13px 0;
}
.dpRecommendThesis__h2 span {
    color: #1f8bd8;
}
.dpRecommendThesis__h2 span:before {
    content: '"';
    color: #111;
}
.dpRecommendThesis__h2 span:after {
    content: '"';
    color: #111;
}
.dpRecommendThesis .no-data {
    font-size: 13px;
    color: #999;
    padding: 10px 0 7px;
}
.dpRecommendThesis__list {
    border-top: 1px solid #d9d9d9;
    counter-reset: number;
}
.dpRecommendThesis__item {
    border-bottom: 1px solid #efefef;
    padding-right: 10px;
    height: 82px;
    counter-increment: number;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dpRecommendThesis__item:before {
    content: "0" counter(number);
    display: block;
    width: 38px;
    color: #ccc;
    font-size: 20px;
    font-weight: 700;
}
.dpRecommendThesis__item .thesis__btnWrap {
    position: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: auto;
    gap: 15px;
    width: 95px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.dpRecommendThesis__item.hide:nth-child(n+3) {
    display: none;
}
.dpRecommendThesis__link {
    color: #111;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 40px;
    font-weight: 500;
}
.dpRecommendThesis__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0 12px;
}
.dpRecommendThesis__more span {
    font-size: 13px;
    color: #666;
    position: relative;
}
.dpRecommendThesis__more span:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border: 1px solid #666;
    border-top: 0;
    border-right: 0;
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
    margin-left: 5px;
}
.dpRecommendThesis__more.open span:after {
    -webkit-transform: translateY(0) rotate(135deg);
    transform: translateY(0) rotate(135deg);
}
.dpRecommendThesis__best {
    padding: 20px 30px;
}
.dpRecommendThesis .seeLotThesis {
    padding: 20px 10px 30px;
    border-bottom: 1px dashed #d9d9d9;
    position: relative;
}
.dpRecommendThesis .seeLotThesis__tit {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.dpRecommendThesis .seeLotThesis__tit b {
    color: #1f8bd8;
}
.dpRecommendThesis .seeLotThesis__tit b:after, .dpRecommendThesis .seeLotThesis__tit b:before {
    content: '"';
    color: #111;
}
.dpRecommendThesis .seeLotThesis__tit span {
    display: inline-block;
    background: #e6f0fb;
    width: 24px;
    padding: 2px;
    border-radius: 3px;
    color: #165c92;
    text-align: center;
    margin: 0 2px;
}
.dpRecommendThesis .seeLotThesis__login {
    position: absolute;
    right: 10px;
    top: 36px;
}
.dpRecommendThesis .seeLotThesis__login span {
    position: relative;
    background: #165c92;
    padding: 13px 55px 13px 23px;
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    display: block;
}
.dpRecommendThesis .seeLotThesis__login span::before {
    position: absolute;
    right: 21px;
    top: 23px;
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
}
.dpRecommendThesis .seeLotThesis__login span:after {
    position: absolute;
    right: 21px;
    top: 19px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.dpRecommendThesis .seeLotThesis__info {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}
.dpRecommendThesis .seeLotThesis__info b {
    color: #111;
    font-size: 14px;
}
.dpRecommendThesis .bestThesis {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dpRecommendThesis .bestThesis__tit {
    font-size: 16px;
    color: #111;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-weight: 500;
}
.dpRecommendThesis .bestThesis__tit:before {
    content: "#";
    font-size: 20px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    font-weight: 700;
}
.dpRecommendThesis .bestThesis__tit:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    display: inline;
    height: 10px;
    background: #e6f0fb;
    z-index: -1;
}
.dpRecommendThesis .bestThesis__list {
    counter-reset: number;
}
.dpRecommendThesis .bestThesis__item {
    counter-increment: number;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 7px;
}
.dpRecommendThesis .bestThesis__item a {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #111;
    font-size: 16px;
    text-decoration: none;
}
.dpRecommendThesis .bestThesis__item a:hover {
    color: #027bd1;
    text-decoration: underline;
    font-weight: 500;
}
.dpRecommendThesis .bestThesis__item:before {
    content: "0" counter(number);
    border-radius: 3px;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
}
.dpRecommendThesis .bestThesis__item:nth-child(1)::before {
    background-color: #111;
}
.dpRecommendThesis .bestThesis__item:nth-child(2)::before {
    background-color: #434343;
}
.dpRecommendThesis .bestThesis__item:nth-child(3)::before {
    background-color: #707070;
}
.dpRecommendThesis .bestThesis__item:nth-child(4)::before {
    background-color: #a0a0a0;
}
.dpRecommendThesis .bestThesis__item:nth-child(5)::before {
    background-color: #bfbfbf;
}

.bookToolAll {
    position: absolute;
    width: 120px;
    height: 60px;
    border: 1px solid #9DC7E5;
    border-radius: 4px;
    color: #1F8BD8;
    font-family: "notokr-medium", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    padding: 12px 7px;
    background-color: #fff;
    top: -16px;
    right: 62px;
    display: none;
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.bookToolAll.bookTool-n {
    border-color: #9DC7E5;
    height: 40px;
    line-height: 1.2;
    padding: 12px 6px 12px 13px;
    top: -7px;
    font-size: 13px;
    color: #1F8BD8;
}
.bookToolAll.bookTool-n:before {
    top: 15px;
    border-bottom-color: #9DC7E5;
}
.bookToolAll.bookTool-n:after {
    border-bottom-color: #fff;
}
.bookToolAll.bookTool-1 {
    border-color: #9DC7E5;
    padding: 12px 3px;
    padding-left: 10px;
}
.bookToolAll.bookTool-1:before {
    top: 25px;
    border-bottom-color: #9DC7E5;
}
.bookToolAll.bookTool-1:after {
    top: 25px;
    border-bottom-color: #fff;
}
.bookToolAll.bookTool-2 {
    border-color: #E39E95;
    color: #111;
    padding: 12px 15px;
}
.bookToolAll.bookTool-2:before {
    top: 25px;
    border-bottom-color: #E39E95;
}
.bookToolAll.bookTool-2:after {
    top: 25px;
    border-bottom-color: #fff;
}
.bookToolAll.bookTool-3 {
    border-color: #C8C8C8;
    color: #111111;
    padding: 12px 12px;
}
.bookToolAll.bookTool-3:before {
    top: 25px;
    border-bottom-color: #C8C8C8;
}
.bookToolAll.bookTool-3:after {
    top: 25px;
    border-bottom-color: #fff;
}
.bookToolAll:before {
    position: absolute;
    width: 0;
    height: 0;
    display: inline-block;
    content: "";
    border-color: transparent;
    border-style: solid;
    right: -11px;
    top: 25px;
    border-width: 0 7px 7px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.bookToolAll:after {
    position: absolute;
    width: 0;
    height: 0;
    display: inline-block;
    content: "";
    border-color: transparent;
    border-style: solid;
    right: -10px;
    top: 15px;
    border-width: 0 7px 7px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.dpAuthorInfo {
    background-color: #fff;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    width: 100%;
    max-width: 600px;
    padding: 30px 30px 40px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
}
.dpAuthorInfo__tit {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
}
.dpAuthorInfo__closed {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.dpAuthorInfo__closed:after, .dpAuthorInfo__closed:before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpAuthorInfo__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpAuthorInfo__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpAuthorInfo__cont {
    padding: 10px 0;
    border-bottom: 1px solid #EFEFEF;
    max-height: 285px;
    overflow-y: auto;
}
.dpAuthorInfo .authorList {
    font-size: 14px;
}
.dpAuthorInfo .authorList__item:not(:last-child) {
    margin-bottom: 8px;
}
.dpAuthorInfo .authorList__author {
    color: #3C63E0;
}
.dpAuthorInfo .authorList__agency {
    color: #666;
}
.dpAuthorInfo .authorList__link {
    font-size: 14px;
    color: #3C63E0;
    position: relative;
    cursor: pointer;
}

.dpSnsShare {
    background-color: #fff;
    border: 0;
    position: fixed;
    left: 50%;
    right: auto;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    width: 100%;
    max-width: 280px;
    padding: 30px;
    z-index: 100;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
}
.dpSnsShare__tit {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
}
.dpSnsShare__closed {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.dpSnsShare__closed:after, .dpSnsShare__closed:before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpSnsShare__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpSnsShare__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpSnsShare__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px;
}
.dpSnsShare__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
}
.dpSnsShare .urlWrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}
.dpSnsShare .urlWrap__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    height: 28px;
    font-size: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #C8C8C8;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
@media screen and (max-width: 960px) {
    .dpSnsShare .urlWrap__input {
        width: 150px;
    }
}
.dpSnsShare .urlWrap__btn {
    cursor: pointer;
    margin-left: auto;
    width: 68px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #C8C8C8;
    font-size: 12px;
    color: #75797E;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.dpQuoteThesis {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    border: 0;
    width: 450px;
    margin: 0 auto;
    padding: 25px 20px 20px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
}
.dpQuoteThesis button {
    cursor: pointer;
}
.dpQuoteThesis__closed {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    cursor: pointer;
    right: 24px;
    top: 31px;
}
.dpQuoteThesis__closed:after, .dpQuoteThesis__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpQuoteThesis__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpQuoteThesis__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpQuoteThesis__tit {
    font-size: 18px;
    font-weight: 700;
    color: #060606;
}
.dpQuoteThesis__selectWrap {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #EFEFEF;
}
.dpQuoteThesis__radioWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}
.dpQuoteThesis__label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.dpQuoteThesis__label span {
    font-size: 12px;
    color: #111;
}
.dpQuoteThesis__radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid #ACACAC;
    border-radius: 50%;
}
.dpQuoteThesis__radio:checked {
    border-color: #EF4348;
}
.dpQuoteThesis__radio:checked:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: #EF4348;
    border-radius: 50%;
}
.dpQuoteThesis__stit {
    font-size: 14px;
    color: #606060;
    position: relative;
}
.dpQuoteThesis__question {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 15px;
    height: 15px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background: #F9F9F9 url(/images/v2/btn/ico_question.svg) no-repeat 50% 50%;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    margin-left: 3px;
}
.dpQuoteThesis__question:hover + .dpQuoteThesis__questionLayer {
    display: block;
}
.dpQuoteThesis__questionLayer {
    display: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: 25px;
    left: 0;
    border-radius: 3px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
    background: #fff;
    border: 1px solid #ECECEC;
    font-size: 12px;
    color: #666;
    padding: 12px 10px;
    z-index: 1;
}
.dpQuoteThesis__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 7px;
    margin-top: 20px;
}
.dpQuoteThesis__export {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #E9E9E9;
    height: 24px;
    font-size: 12px;
    color: #666;
    padding: 0 10px;
}
.dpQuoteThesis__export:hover {
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.dpQuoteThesis__basic {
    margin-top: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #EFEFEF;
    display: none;
}
.dpQuoteThesis__basicWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.dpQuoteThesis__basicWrap button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    border-radius: 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.dpQuoteThesis__basicWrap button span {
    color: #fff;
    font-size: 13px;
}
.dpQuoteThesis__basicWrap button:hover {
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.dpQuoteThesis__basicKor {
    background: #34AEE7;
}
.dpQuoteThesis__basicKor span {
    padding-left: 28px;
    background: url(/images/v2/btn/ico_hangeul.svg) no-repeat 0 0/15px 20px;
}
.dpQuoteThesis__basicWord {
    background: #2A5696;
}
.dpQuoteThesis__basicWord span {
    padding-left: 27px;
    background: url(/images/v2/btn/ico_word.svg) no-repeat 0 0/20px 20px;
}
.dpQuoteThesis__tip {
    margin-top: 15px;
    color: #8E8E8E;
    padding-left: 27px;
    position: relative;
    font-size: 12px;
}
.dpQuoteThesis__tip:before {
    content: "Tip :";
    font-size: 11px;
    position: absolute;
    left: 0;
}
.dpQuoteThesis__h2 {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
}
.dpQuoteThesis__form {
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-inline-box;
    width: 175px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
.dpQuoteThesis__etc {
    position: relative;
    margin-top: 16px;
}
.dpQuoteThesis__btnChange {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #E9E9E9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #4C86B6;
    padding: 0 10px;
    height: 26px;
}
.dpQuoteThesis__btnChange:hover {
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.dpQuoteThesis .quoteWrap {
    min-height: 120px;
    max-height: 220px;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid #E9E9E9;
    background: #FBFBFB;
}
.dpQuoteThesis .quoteWrap__txt {
    font-size: 13px;
    color: #165C92;
    line-height: 19px;
}
.dpQuoteThesis .quoteWrap__copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    background-color: #4c86b6;
    color: #fff;
    font-size: 13px;
    padding: 0 13px;
    position: absolute;
    right: 25px;
    bottom: 10px;
}
.dpQuoteThesis .quoteWrap__copy:hover {
    background: #3d6b92;
}

.dpQuoteThesisChange {
    background-color: #fff;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    width: 100%;
    max-width: 520px;
    padding: 15px 20px 20px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 101;
}
.dpQuoteThesisChange button {
    cursor: pointer;
}
.dpQuoteThesisChange__closed {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    cursor: pointer;
    right: 24px;
    top: 20px;
}
.dpQuoteThesisChange__closed:after, .dpQuoteThesisChange__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpQuoteThesisChange__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpQuoteThesisChange__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpQuoteThesisChange__tit {
    font-size: 18px;
    font-weight: 700;
    color: #060606;
}
.dpQuoteThesisChange__tit span {
    font-size: 12px;
    font-weight: 400;
}
.dpQuoteThesisChange__cont {
    border: 1px solid #efefef;
    height: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 20px;
}
.dpQuoteThesisChange__listWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 150px;
}
.dpQuoteThesisChange__list {
    height: 190px;
    overflow-y: auto;
}
.dpQuoteThesisChange__btnQuo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}
.dpQuoteThesisChange__btnQuo.addBtn {
    padding-left: 25px;
    margin-top: auto;
    position: relative;
    height: 48px;
    border-top: 1px solid #efefef;
}
.dpQuoteThesisChange__btnQuo.addBtn:before, .dpQuoteThesisChange__btnQuo.addBtn:after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    left: 12px;
    top: 50%;
    background-color: #666;
    -webkit-transform: translateY(calc(-50% + 0.5px));
    transform: translateY(calc(-50% + 0.5px));
}
.dpQuoteThesisChange__btnQuo.addBtn:before {
    -webkit-transform: translateY(calc(-50% + 0.5px)) rotate(90deg);
    transform: translateY(calc(-50% + 0.5px)) rotate(90deg);
}
.dpQuoteThesisChange__btnQuo:hover {
    background-color: #f1f1f1;
    text-decoration: none;
}
.dpQuoteThesisChange__btnQuo.select {
    font-weight: 700;
    color: #111;
    background-color: #f9f9f9;
    position: relative;
}
.dpQuoteThesisChange__btnQuo.select:hover {
    background-color: #f9f9f9;
}
.dpQuoteThesisChange__btnQuo.select:before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1F8BD8;
}
.dpQuoteThesisChange__quo {
    width: 328px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #FBFBFB;
    border-left: 1px solid #efefef;
}
.dpQuoteThesisChange__quoStyle {
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
    color: #111;
    border-bottom: 1px solid #efefef;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 30px;
}
.dpQuoteThesisChange__quoExam {
    height: 160px;
    overflow-y: auto;
    color: #165C92;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #efefef;
}
.dpQuoteThesisChange__quoBtnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 13px;
}
.dpQuoteThesisChange__save {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    background-color: #4c86b6;
    color: #fff;
    margin-left: auto;
    font-size: 12px;
}
.dpQuoteThesisChange__save:hover {
    background-color: #3d6b92;
}
.dpQuoteThesisChange__label {
    width: 34px;
    height: 24px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
}
.dpQuoteThesisChange__txt {
    font-size: 12px;
    color: #111;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.dpQuoteThesisChange__radio {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    cursor: pointer;
}
.dpQuoteThesisChange__radio:checked {
    background-color: #666;
}
.dpQuoteThesisChange__radio:checked + .dpQuoteThesisChange__txt {
    color: #fff;
}
.dpQuoteThesisChange__h2 {
    font-size: 14px;
    font-weight: 500;
}
.dpQuoteThesisChange__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #efefef;
}
.dpQuoteThesisChange__export {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #E9E9E9;
    height: 24px;
    font-size: 12px;
    color: #666;
    padding: 0 10px;
}
.dpQuoteThesisChange__export:hover {
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.dpOrganization {
    background-color: #fff;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(calc(-50% + 0.5px));
    transform: translateY(calc(-50% + 0.5px));
    width: 100%;
    max-width: 520px;
    margin-left: -260px;
    padding: 15px 28px 20px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
}
@media screen and (max-width: 960px) {
    .dpOrganization {
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin-left: 0;
        max-width: 100%;
    }
}
.dpOrganization .selectedItem {
    background: rgb(240, 240, 240);
}
.dpOrganization button {
    cursor: pointer;
}
.dpOrganization__closed {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    cursor: pointer;
    right: 24px;
    top: 20px;
}
.dpOrganization__closed:after, .dpOrganization__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpOrganization__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpOrganization__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpOrganization__tit {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.dpOrganization__tit span {
    font-size: 12px;
    font-weight: 400;
}
.dpOrganization__cont {
    margin-top: 40px;
}
.dpOrganization__txt {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 13px;
}
.dpOrganization__stxt {
    font-size: 13px;
    color: #777;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
}
.dpOrganization__search {
    width: 370px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 960px) {
    .dpOrganization__search {
        width: 100%;
    }
}
.dpOrganization__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 43px;
    padding: 0 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #e7e7e7;
    border-right: 0;
    border-radius: 3px;
    font-size: 14px;
    color: rgb(17, 17, 17);
    outline: none;
}
.dpOrganization__input::-webkit-input-placeholder {
    color: #ccc;
}
.dpOrganization__input::-moz-placeholder {
    color: #ccc;
}
.dpOrganization__input:-ms-input-placeholder {
    color: #ccc;
}
.dpOrganization__input::-ms-input-placeholder {
    color: #ccc;
}
.dpOrganization__input::placeholder {
    color: #ccc;
}
.dpOrganization__input:-moz-read-only {
    background-color: #c4c4c4;
    opacity: 0.5;
}
.dpOrganization__input:read-only {
    background-color: #c4c4c4;
    opacity: 0.5;
}
.dpOrganization__searchBtn {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 43px;
    width: 43px;
    background-color: #DB3A3F;
    cursor: pointer;
    position: relative;
}
.dpOrganization__searchBtn:after, .dpOrganization__searchBtn:before {
    content: "";
    display: block;
    position: absolute;
}
.dpOrganization__searchBtn:after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    left: 12px;
    top: 10px;
}
.dpOrganization__searchBtn:before {
    width: 7px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    right: 8px;
    bottom: 14px;
}
.dpOrganization__searchList {
    width: 370px;
    margin: -1px auto 0;
    border: 1px solid #e7e7e7;
    max-height: 153px;
    overflow-y: auto;
}
@media screen and (max-width: 960px) {
    .dpOrganization__searchList {
        width: 100%;
    }
}
.dpOrganization__searchItem {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #111;
    padding: 0 10px;
    height: 36px;
}
.dpOrganization__searchItem .searchText {
    color: #DB3A3F;
}
.dpOrganization__infoText {
    margin: 7px auto;
    width: 370px;
    font-size: 13px;
    color: #999;
}
@media screen and (max-width: 960px) {
    .dpOrganization__infoText {
        width: 100%;
    }
}
.dpOrganization__form {
    margin: 7px auto;
    width: 370px;
}
@media screen and (max-width: 960px) {
    .dpOrganization__form {
        width: 100%;
    }
}
.dpOrganization__ex {
    font-size: 12px;
    color: #999;
}
.dpOrganization__info {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}
.dpOrganization__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dpOrganization__check:checked + span {
    font-weight: 700;
    color: #111;
}
.dpOrganization__labelTxt {
    font-size: 12px;
    margin-left: 9px;
    color: #999;
    cursor: pointer;
}
.dpOrganization__btnWrap {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid #efefef;
}
.dpOrganization__btnWrap .btnWrap__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    height: 36px;
    margin: 0 auto;
    background-color: #ef4348;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
}
.dpOrganization__btnWrap .btnWrap__link:hover {
    background-color: #c03639;
    text-decoration: none;
}
.dpOrganization__noOran {
    width: 370px;
    margin: 25px auto 0;
}
@media screen and (max-width: 960px) {
    .dpOrganization__noOran {
        width: 100%;
    }
}
.dpOrganization__noOranTxt {
    padding: 10px 0;
    font-size: 14px;
    color: #DB3A3F;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}
.dpOrganization__linkWrap {
    margin-top: 15px;
    padding-bottom: 30px;
}
.dpOrganization__linkWrap .linkWrap__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 49px;
    border: 1px solid #ccc;
    padding: 0 15px;
    font-size: 13px;
    color: #666;
    position: relative;
    border-radius: 3px;
}
.dpOrganization__linkWrap .linkWrap__link:not(:first-child) {
    margin-top: 15px;
}
.dpOrganization__linkWrap .linkWrap__link:before {
    content: "";
    width: 44px;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    right: 3%;
    top: 50%;
}
.dpOrganization__linkWrap .linkWrap__link:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-top: 0;
    border-left: 0;
    position: absolute;
    right: 3%;
    top: 19px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.dpOrganization__linkWrap .linkWrap__link:hover {
    text-decoration: none;
}
.dpOrganization__certification {
    margin-top: 15px;
    padding: 60px 0 30px;
    border-top: 1px solid #efefef;
}
.dpOrganization__crtfcTit {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 30px;
}
.dpOrganization__crtfcWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dpOrganization .btnCrtfc__link {
    padding: 20px 35px;
    height: auto;
    border: 1px solid #666;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
}
.dpOrganization .btnCrtfc__link:hover {
    text-decoration: none;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #DB3A3F;
}
.dpOrganization .btnCrtfc__link:after, .dpOrganization .btnCrtfc__link:before {
    content: "";
    display: block;
    position: absolute;
}
.dpOrganization .btnCrtfc__link:before {
    width: 44px;
    height: 1px;
    background-color: #ddd;
    right: 3%;
    bottom: 20px;
}
.dpOrganization .btnCrtfc__link:after {
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-top: 0;
    border-left: 0;
    right: 3%;
    bottom: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.dpOrganization .btnCrtfc__info {
    padding: 20px 35px;
    height: auto;
    border: 1px dashed #ccc;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dpOrganization .btnCrtfc__tit {
    font-size: 16px;
    color: #666;
    font-weight: 700;
}
.dpOrganization .btnCrtfc__txt {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    line-height: 22px;
    letter-spacing: -0.05px;
}
@media screen and (max-width: 960px) {
    .dpOrganization .btnCrtfc__link {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        height: auto;
        padding: 15px;
    }
    .dpOrganization .btnCrtfc__info {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-bottom: 15px;
        height: auto;
        padding: 15px;
    }
    .dpOrganization .btnCrtfc__tit {
        font-size: 14px;
    }
    .dpOrganization .btnCrtfc__txt {
        font-size: 12px;
    }
}
.dpOrganization .btnBack {
    padding: 15px;
    padding-left: 0;
    margin-bottom: 50px;
    font-size: 14px;
    color: #666;
}
.dpOrganization .btnBack span {
    position: relative;
    padding-left: 25px;
}
.dpOrganization .btnBack span:after, .dpOrganization .btnBack span:before {
    content: "";
    display: block;
    position: absolute;
}
.dpOrganization .btnBack span:before {
    width: 20px;
    height: 1px;
    background-color: #111;
    left: 1px;
    top: 10px;
}
.dpOrganization .btnBack span:after {
    width: 6px;
    height: 6px;
    border: 1px solid #111;
    border-top: 0;
    border-left: 0;
    left: 0;
    top: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.dpOrganization__usedTit {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}
.dpOrganization__usedList {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 20px;
    counter-reset: number;
}
.dpOrganization__usedItem {
    counter-increment: number;
    color: #111;
    font-size: 16px;
    position: relative;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpOrganization__usedItem:last-child:after {
    display: none;
}
.dpOrganization__usedItem:before {
    content: counter(number);
    font-weight: 500;
    margin-right: 15px;
}
.dpOrganization__usedItem:after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #C4C4C4;
    position: absolute;
    top: 87%;
    left: -0.8%;
}
.dpOrganization__usedLink {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: auto;
    font-size: 14px;
    color: #666;
    text-decoration: underline;
}
.dpOrganization__qnaWrap {
    margin: 40px 0 35px;
    padding-top: 40px;
    border-top: 1px solid #efefef;
}
.dpOrganization .qnaWrap__tit {
    padding: 19px 0px 10px 20px;
    font-size: 16px;
    color: #666;
    font-weight: 700;
    border-bottom: 2px solid #ccc;
}
.dpOrganization .qnaWrap__details:not(:last-child) {
    border-bottom: 1px solid #ccc;
}
.dpOrganization .qnaWrap__details[open] .qnaWrap__summary:after {
    top: 60%;
    -webkit-transform: translateY(calc(-50% + 0.5px)) rotate(135deg);
    transform: translateY(calc(-50% + 0.5px)) rotate(135deg);
}
.dpOrganization .qnaWrap__summary {
    list-style: none;
    padding: 20px 40px 20px 40px;
    font-size: 14px;
    color: #666;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}
.dpOrganization .qnaWrap__summary::-webkit-details-marker {
    display: none;
}
.dpOrganization .qnaWrap__summary:before {
    content: "Q";
    position: absolute;
    top: 31%;
    left: 4%;
    font-size: 16px;
}
.dpOrganization .qnaWrap__summary:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-top: 0;
    border-right: 0;
    position: absolute;
    right: 10px;
    top: 40%;
    -webkit-transform: translateY(calc(-50% + 0.5px)) rotate(-45deg);
    transform: translateY(calc(-50% + 0.5px)) rotate(-45deg);
}
.dpOrganization .qnaWrap__answer {
    border-top: 1px dotted #ccc;
    position: relative;
    padding: 15px 38px 15px 50px;
}
.dpOrganization .qnaWrap__txt {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #666;
}
.dpOrganization .qnaWrap__txt:before {
    content: "A";
    position: absolute;
    top: 9%;
    left: 4.2%;
    font-size: 16px;
}
.dpOrganization__certWrap {
    margin: 20px 16px;
}
.dpOrganization .certWrap__tit {
    padding: 20px 0;
    border-top: 1px solid #e7e7e7;
    font-size: 16px;
    color: #111;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}
.dpOrganization .certWrap__txt {
    font-size: 12px;
    color: #111;
}
.dpOrganization .certWrap__stxt {
    font-size: 13px;
    color: #999;
    line-height: 30px;
}
.dpOrganization .certWrap__form {
    margin-bottom: 15px;
    padding-right: 90px;
    position: relative;
}
.dpOrganization .certWrap__inputBox {
    position: relative;
}
.dpOrganization .certWrap__inputBox:not(:first-child) {
    margin-top: 12px;
}
.dpOrganization .certWrap__inputBox.focus label {
    top: 2px;
    font-size: 7px;
    color: #666;
}
.dpOrganization .certWrap__inputBox label {
    position: absolute;
    top: 13px;
    left: 12px;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    cursor: text;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    color: #666;
}
.dpOrganization .certWrap__inputBox .btnDelete {
    display: none;
    position: absolute;
    top: 50%;
    right: 15px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: #fafafa;
    border-radius: 50%;
    border: 1px solid #cecece;
    -webkit-transform: translateY(calc(-50% + 0.5px));
    transform: translateY(calc(-50% + 0.5px));
}
.dpOrganization .certWrap__inputBox .btnDelete.on {
    display: block;
}
.dpOrganization .certWrap__inputBox .btnDelete:after, .dpOrganization .certWrap__inputBox .btnDelete:before {
    content: "";
    display: block;
    width: 80%;
    height: 0.5px;
    background-color: #cecece;
    left: 50%;
    top: 50%;
    position: absolute;
}
.dpOrganization .certWrap__inputBox .btnDelete:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpOrganization .certWrap__inputBox .btnDelete:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpOrganization .certWrap__inputBox .btnTogglePassword {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 1px;
    right: 45px;
    width: 43px;
    height: 40px;
    background: url(/images/common/eye_off2.svg) no-repeat 50% 50%/22px 22px;
}
.dpOrganization .certWrap__inputBox .btnTogglePassword.show {
    display: block;
}
.dpOrganization .certWrap__inputBox .btnTogglePassword.on {
    background: url(/images/common/eye_on.svg) no-repeat 50% 50%/22px 22px;
}
.dpOrganization .certWrap__input {
    width: 100%;
    height: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #111;
    border: 1px solid #ccc;
    outline: none;
    padding: 0 13px;
    background: #fff;
    border-radius: 3px;
}
.dpOrganization .certWrap__input:focus, .dpOrganization .certWrap__input__hasText {
    outline: 1px solid #999DFF;
}
.dpOrganization .certWrap__input:focus + label, .dpOrganization .certWrap__input__hasText + label {
    top: 2px;
    font-size: 7px;
    color: #666;
}
.dpOrganization .certWrap__btnCert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 78px;
    height: 102px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #165C92;
    color: #fff;
    font-size: 12px;
}

.dpDetailSearch {
    background-color: #fff;
    border: 0;
    position: relative;
    left: 50%;
    top: 10%;
    width: 100%;
    width: 700px;
    margin-left: -350px;
    padding: 15px 0 0;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
}
.dpDetailSearch button {
    cursor: pointer;
}
.dpDetailSearch__closed {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}
.dpDetailSearch__closed:after, .dpDetailSearch__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpDetailSearch__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpDetailSearch__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpDetailSearch__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 46px;
    padding: 0 20px;
}
.dpDetailSearch__tit {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.dpDetailSearch__cont {
    padding: 20px;
}
.dpDetailSearch__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 13px;
    position: relative;
}
.dpDetailSearch__multiBtn {
    position: absolute;
    right: 0;
    top: -3px;
    padding: 6px 9px 5px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #666;
}
.dpDetailSearch__multiBtn:hover {
    border: 1px solid #c8c8c8;
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.dpDetailSearch__h2 {
    font-size: 15px;
    color: #111;
    font-weight: 500;
}
.dpDetailSearch__stit {
    font-size: 13px;
    color: #999;
    margin-left: 10px;
}
.dpDetailSearch__stit2 {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
    padding-top: 18px;
}
.dpDetailSearch__mutilLanguageWrap {
    margin-bottom: 10px;
}
.dpDetailSearch__conditionWrap {
    margin-bottom: 10px;
}
.dpDetailSearch__condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
}
.dpDetailSearch__condition:not(:first-child) {
    margin-top: 3px;
}
.dpDetailSearch__select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 105px;
    height: 34px;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0 9px;
    font-size: 13px;
    color: #333;
    background: url(/images/v2/common/ico_select.svg) no-repeat right 10px top 50%/7px;
    cursor: pointer;
}
.dpDetailSearch__select:focus {
    outline: none;
}
.dpDetailSearch__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0 9px;
    outline: none;
    font-size: 13px;
    border-radius: 3px;
    font-family: "돋움", Dotum, 새굴림, 한컴바탕, sans-serif;
}
.dpDetailSearch__addBtn {
    display: block;
    width: 34px;
    height: 34px;
    position: relative;
    background-color: #555;
}
.dpDetailSearch__addBtn:hover {
    background-color: #444;
}
.dpDetailSearch__addBtn:before, .dpDetailSearch__addBtn:after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpDetailSearch__addBtn:after {
    width: 14px;
    height: 1px;
    margin-left: -7px;
}
.dpDetailSearch__addBtn:before {
    height: 14px;
    width: 1px;
    margin-top: -7px;
}
.dpDetailSearch__deleteBtn {
    display: block;
    width: 34px;
    height: 34px;
    position: relative;
    background-color: #555;
}
.dpDetailSearch__deleteBtn:hover {
    background-color: #444;
}
.dpDetailSearch__deleteBtn:after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpDetailSearch__deleteBtn:after {
    width: 14px;
    height: 1px;
    margin-left: -7px;
}
.dpDetailSearch__advancedOption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 45px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    margin-bottom: 10px;
}
.dpDetailSearch__advancedOption label {
    font-size: 13px;
    color: #111;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.dpDetailSearch__check {
    margin-right: 9px;
}
.dpDetailSearch__labelWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 25px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 2px;
}
.dpDetailSearch__h3 {
    width: 154px;
    font-size: 15px;
    color: #111;
    font-weight: 500;
    letter-spacing: -0.05em;
}
.dpDetailSearch__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    height: 65px;
    padding: 0 20px;
}
.dpDetailSearch__searchBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 110px;
    min-height: 34px;
    background-color: #ef4348;
    font-size: 14px;
    color: #fff;
}
.dpDetailSearch__searchBtn:hover {
    background-color: #c03639;
}
.dpDetailSearch__resetBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 34px;
    font-size: 12px;
    color: #333;
}
.dpDetailSearch__resetBtn:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    background: url(/images/v2/common/refresh.png) no-repeat 0 50%/cover;
    opacity: 0.5;
}

.dpMultiLanguage {
    border: 1px solid #e0e0e0;
    padding: 10px;
}
.dpMultiLanguage__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.dpMultiLanguage__input {
    width: 200px;
    height: 30px;
    border: 1px solid #dbdbdb;
    padding: 0 5px;
    font-size: 12px;
    color: #111;
    border-radius: 3px;
    font-family: "돋움", Dotum, 새굴림, 한컴바탕, sans-serif;
}
.dpMultiLanguage__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    height: 30px;
    padding: 0 10px;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.dpMultiLanguage__btn:hover {
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.dpMultiLanguage__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
    gap: 1px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}
.dpMultiLanguage__tablink {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    min-height: 30px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-bottom: 0;
    color: #111;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.dpMultiLanguage__tablink.active {
    background-color: #fff;
    font-weight: 700;
}
.dpMultiLanguage__tablink.active:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
}
.dpMultiLanguage__result {
    border-top: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 20px;
}
.dpMultiLanguage__resultTxt {
    padding-top: 10px;
    font-family: "돋움", Dotum, 새굴림, 한컴바탕, sans-serif;
    font-size: 13px;
    color: #111;
}
.dpMultiLanguage__resultTxt strong {
    font-size: 40px;
    color: #d03838;
}
.dpMultiLanguage__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 10px;
    padding: 0 10px;
    margin-bottom: 20px;
}
.dpMultiLanguage__txt {
    font-family: "돋움", Dotum, 새굴림, 한컴바탕, sans-serif;
    font-size: 14px;
    color: #111;
}
.dpMultiLanguage__stit {
    font-family: "돋움", Dotum, 새굴림, 한컴바탕, sans-serif;
    font-size: 20px;
    color: #111;
    font-weight: 700;
}
.dpMultiLanguage__number {
    font-size: 14px;
    font-weight: 400;
}
.dpMultiLanguage__tit {
    font-size: 13px;
    color: #3c63e0;
    margin-left: 10px;
    margin-bottom: 10px;
}
.dpMultiLanguage__tit + .dpMultiLanguage__group, .dpMultiLanguage__tit + .dpMultiLanguage__group + .dpMultiLanguage__group {
    margin-bottom: 10px;
}

.dpReport {
    background-color: #fff;
    border: 0;
    position: relative;
    left: 50%;
    top: 20%;
    width: 100%;
    width: 524px;
    margin-left: -262px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 10000;
}
.dpReport button {
    cursor: pointer;
}
.dpReport__header {
    padding: 15px;
}
.dpReport__tit {
    font-size: 16px;
    color: #111;
    font-weight: 700;
    margin-bottom: 30px;
}
.dpReport__txt {
    font-size: 13px;
    color: #999;
    position: relative;
    padding-left: 10px;
}
.dpReport__txt:before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background-color: #999;
    position: absolute;
    left: 3px;
    top: 7px;
}
.dpReport__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0 9px;
    outline: none;
    font-size: 14px;
    border-radius: 3px;
}
.dpReport__input:disabled {
    background-color: #f2f2f2;
}
.dpReport__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 148px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 7px 9px;
    outline: none;
    font-size: 14px;
    line-height: 22px;
    resize: none;
}
.dpReport__closed {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}
.dpReport__closed:after, .dpReport__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpReport__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpReport__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpReport .btnWrap {
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 6px;
}
.dpReport .btnWrap button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 110px;
    height: 35px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
}
.dpReport .btnWrap .btnCancel {
    background-color: #555;
}
.dpReport .btnWrap .btnCancel:hover {
    background-color: #444;
}
.dpReport .btnWrap .btnOk {
    background-color: #3c63e0;
}
.dpReport .btnWrap .btnOk:hover {
    background-color: #304fb3;
}
.dpReport__cont {
    max-height: 540px;
    overflow-y: auto;
}
.dpReport__rows .dpReport__row {
    border-top: 0;
}
.dpReport__rows .dpReport__row:first-child {
    border-top: 0;
}
.dpReport__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 50px;
    border-bottom: 1px solid #e7e7e7;
}
.dpReport__row:first-child {
    border-top: 1px solid #e7e7e7;
}
.dpReport__th {
    font-size: 13px;
    min-width: 125px;
    background-color: #fafafa;
    padding: 15px 9px 7px 20px;
    color: #111;
    font-weight: 400;
}
.dpReport__td {
    padding: 7px 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.dpReport__td.half:last-child {
    border-left: 1px solid #e7e7e7;
}
.dpReport__td.end {
    padding: 0;
}
.dpReport__td.end .dpReport__t1 {
    padding: 12px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dpReport__td.end .dpReport__t1 .dpReport__input {
    margin-left: 20px;
    width: auto;
}
.dpReport__td.end .dpReport__t1:last-child {
    border-top: 1px solid #e7e7e7;
}
.dpReport__t1 {
    font-size: 14px;
    color: #999;
    padding-top: 8px;
}
.dpReport__t1 span {
    color: #111;
}
.dpReport__h2 {
    padding: 16px 0px 13px 20px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
}
.dpReport__h2 + .dpReport__row {
    border-top: 1px solid #e7e7e7;
}
.dpReport__select {
    position: relative;
    width: 200px;
}
.dpReport__select:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    right: 9px;
    top: 14px;
    border: 5px solid transparent;
    border-top-color: #999;
}
.dpReport__select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0 9px;
    outline: none;
    font-size: 13px;
    border-radius: 3px;
    background-color: transparent;
}

.dpReferences {
    background-color: #fff;
    border: 0;
    position: relative;
    left: 50%;
    top: 20%;
    width: 100%;
    width: 524px;
    margin-left: -262px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
}
.dpReferences button {
    cursor: pointer;
}
.dpReferences__header {
    padding: 15px;
}
.dpReferences__tit {
    font-size: 16px;
    color: #111;
    font-weight: 700;
    margin-bottom: 30px;
}
.dpReferences__txt {
    font-size: 13px;
    color: #999;
    position: relative;
    padding-left: 10px;
}
.dpReferences__txt:before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background-color: #999;
    position: absolute;
    left: 3px;
    top: 7px;
}
.dpReferences__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 0 9px;
    outline: none;
    font-size: 13px;
    border-radius: 3px;
}
.dpReferences__input.error {
    border-color: #EF4348;
}
.dpReferences__addBtn {
    display: block;
    width: 34px;
    height: 34px;
    position: relative;
    background-color: #555;
}
.dpReferences__addBtn:before, .dpReferences__addBtn:after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpReferences__addBtn:before {
    height: 14px;
    width: 1px;
    margin-top: -7px;
}
.dpReferences__addBtn:after {
    width: 14px;
    height: 1px;
    margin-left: -7px;
}
.dpReferences__addBtn:hover {
    background-color: #444;
}
.dpReferences__deleteBtn {
    display: block;
    width: 34px;
    height: 34px;
    position: relative;
    background-color: #555;
}
.dpReferences__deleteBtn:after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1px;
    margin-left: -7px;
}
.dpReferences__deleteBtn:hover {
    background-color: #444;
}
.dpReferences__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #efefef;
    min-height: 48px;
}
.dpReferences__row:first-child .dpReferences__items {
    padding-top: 13px;
}
.dpReferences__h2 {
    background: #fafafa;
    min-width: 125px;
    font-size: 13px;
    font-weight: 400;
    color: #111;
    padding: 13px 9px 7px 20px;
}
.dpReferences__items {
    padding: 7px;
    padding-right: 20px;
    width: calc(100% - 125px);
    font-size: 14px;
}
.dpReferences__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}
.dpReferences__item:not(:first-child) {
    margin-top: 5px;
}
.dpReferences__closed {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}
.dpReferences__closed:after, .dpReferences__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpReferences__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpReferences__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpReferences .btnWrap {
    border-top: 1px solid #efefef;
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 6px;
}
.dpReferences .btnWrap button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 110px;
    height: 35px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
}
.dpReferences .btnWrap .btnCancel {
    background-color: #555;
}
.dpReferences .btnWrap .btnCancel:hover {
    background-color: #444;
}
.dpReferences .btnWrap .btnOk {
    background-color: #3c63e0;
}
.dpReferences .btnWrap .btnOk:hover {
    background-color: #304fb3;
}
.dpReferences__infoText {
    font-size: 13px;
    color: #EF4348;
    padding: 10px 20px;
    border-top: 1px solid #efefef;
}

.dpUserChart {
    background-color: #fff;
    border: 0;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 524px;
    margin-left: -262px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
}
.dpUserChart button {
    cursor: pointer;
}
.dpUserChart__header {
    padding: 15px 20px;
}
.dpUserChart__tit {
    font-size: 16px;
    color: #111;
    font-weight: 700;
    margin-bottom: 30px;
}
.dpUserChart__txt {
    padding: 11px 14px;
    font-size: 15px;
    color: #111;
    font-weight: 700;
    line-height: 22px;
    border: 1px solid #e1e1e1;
}
.dpUserChart__closed {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}
.dpUserChart__closed:after, .dpUserChart__closed:before {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpUserChart__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpUserChart__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpUserChart__cont {
    padding: 0 0 20px;
}
.dpUserChart__tbl {
    width: 100%;
    border-top: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
}
.dpUserChart__th, .dpUserChart__td {
    width: 120px;
    border-bottom: 1px solid #e7e7e7;
}
.dpUserChart__th:last-child, .dpUserChart__td:last-child {
    width: calc(100% - 240px);
}
.dpUserChart__th {
    background-color: #fafafa;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1;
}
.dpUserChart__th:first-child {
    border-left: 1px solid #e7e7e7;
}
.dpUserChart__td {
    border-left: 1px solid #e7e7e7;
    padding: 7px 0 6px;
}
.dpUserChart__thead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpUserChart__thead .dpUserChart__th:last-child {
    padding-right: 17px;
}
.dpUserChart__tbody {
    height: 385px;
    overflow-y: auto;
}
.dpUserChart__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dpUserChart__tabs {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.dpUserChart__tab {
    cursor: pointer;
    font-size: 13px;
    color: #999;
}
.dpUserChart__tab:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    margin: 0 10px;
    background-color: #ccc;
}
.dpUserChart__tab:last-child:after {
    display: none;
}
.dpUserChart__tab.active {
    color: #222;
}
.dpUserChart__tab.active:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 6px;
    border: 2px solid #db3a3f;
    border-top: 0;
    border-right: 0;
    margin-right: 4px;
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
}
.dpUserChart__tab.on {
    color: #222;
}
.dpUserChart__tab.on:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 6px;
    border: 2px solid #db3a3f;
    border-top: 0;
    border-right: 0;
    margin-right: 4px;
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
}
.dpUserChart__area {
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    height: 371px;
    max-height: 371px !important;
    padding: 5px;
}
.dpUserChart .nuriSlider__container {
    overflow: hidden;
    padding: 0 20px;
}
.dpUserChart .nuriSlider__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.dpUserChart .nuriSlider__item {
    width: 484px;
}
.dpUserChart .nuriSlider__btnContainer {
    position: absolute;
    width: 100%;
    top: 50%;
}
.dpUserChart .nuriSlider__btnContainer button {
    position: absolute;
    display: block;
    top: 0;
    background-color: #000;
}
.dpUserChart .nuriSlider__btnContainer button:disabled {
    opacity: 0.1;
    cursor: default;
}
.dpUserChart .nuriSlider__btnContainer button:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border: 5px solid #fff;
    border-left: 0;
    border-top: 0;
    position: absolute;
    top: 50%;
    margin-top: -10px;
}
.dpUserChart .nuriSlider__nextBtn {
    right: -40px;
}
.dpUserChart .nuriSlider__nextBtn:before {
    right: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.dpUserChart .nuriSlider__prevBtn {
    left: -40px;
}
.dpUserChart .nuriSlider__prevBtn:before {
    left: 50%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.dpUserChart .nuriSlider__pageContainer {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    bottom: -30px;
    width: 100%;
}
.dpUserChart .nuriSlider__pageBullet {
    width: 13px;
    height: 13px;
    border-width: 3px;
    border-color: #fff;
}
.dpUserChart .nuriSlider__pageBullet_active {
    background-color: #fff;
}

.dpNotice {
    position: fixed;
    width: 100%;
    max-width: 500px;
    left: 100px;
    top: 100px;
    display: block;
    border: 2px solid #111;
    background: #fff;
    z-index: 1000;
}
.dpNotice__header {
    height: 50px;
    border-bottom: 1px solid #e7e7e7;
    padding: 13px 60px 13px 20px;
}
.dpNotice__tit {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #111;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.dpNotice__closed {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    width: 51px;
    height: 50px;
    border-left: 1px solid #e7e7e7;
    cursor: pointer;
}
.dpNotice__closed:before, .dpNotice__closed:after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background-color: #111;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -13px;
    margin-top: -1px;
}
.dpNotice__closed:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.dpNotice__closed:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.dpNotice__cont {
    padding: 20px;
    overflow-y: auto;
    line-height: 18px;
}
.dpNotice__cont p {
    margin: 0;
    font-size: 13px;
}
.dpNotice__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 15px 20px;
    border-top: 1px solid #e7e7e7;
}
.dpNotice__footer label {
    font-size: 13px;
    margin-left: 5px;
    cursor: pointer;
}

.dpUsageStatusLayer {
    position: relative;
    left: 50%;
    top: 25px;
    width: 1000px;
    margin-left: -500px;
    background-color: #fff;
    z-index: 100;
    border: 0;
    padding: 30px 20px;
    letter-spacing: -0.05em;
}
.dpUsageStatusLayer__tit {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}
.dpUsageStatusLayer__closed {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 34px;
    right: 20px;
    cursor: pointer;
}
.dpUsageStatusLayer__closed:before, .dpUsageStatusLayer__closed:after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #656565;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 2px;
}
.dpUsageStatusLayer__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpUsageStatusLayer__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpUsageStatusLayer__h2 {
    font-size: 22px;
    color: #222;
    font-weight: 500;
}
.dpUsageStatusLayer__cont {
    display: grid;
    grid-gap: 33px 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 325px 150px;
}
.dpUsageStatusLayer__cont article {
    border: 1px solid #DADDDF;
    border-radius: 2px;
    padding: 13px 24px 0;
}
.dpUsageStatusLayer__cont article:nth-child(2) {
    width: 560px;
}
.dpUsageStatusLayer__cont article:nth-child(n+3) {
    grid-column: span 2;
    padding: 0;
    border: 0;
}
.dpUsageStatusLayer__usageList {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
}
.dpUsageStatusLayer__usageItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dpUsageStatusLayer__usageItem .usageCount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #E8ECEF;
    font-family: Roboto;
    font-size: 32px;
    color: #222;
    font-weight: 400;
}
.dpUsageStatusLayer__usageItem .usageTit {
    margin-top: 18px;
    font-size: 13px;
    color: #656565;
}
.dpUsageStatusLayer__recently {
    position: relative;
}
.dpUsageStatusLayer__recently .btnMore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 16px;
    color: #565656;
    padding-right: 40px;
}
.dpUsageStatusLayer__recently .btnMore:before, .dpUsageStatusLayer__recently .btnMore:after {
    content: "";
    position: absolute;
}
.dpUsageStatusLayer__recently .btnMore:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #9C9C9C;
}
.dpUsageStatusLayer__recently .btnMore:after {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 13px;
    top: 11px;
    border-radius: 2px;
}
.dpUsageStatusLayer__recently .no-data {
    text-align: center;
    margin: 76px auto 0;
    font-size: 18px;
    color: #666;
}
.dpUsageStatusLayer__thesisList {
    margin-top: 12px;
    counter-reset: list-number;
}
.dpUsageStatusLayer__thesisItem {
    counter-increment: list-number;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
}
.dpUsageStatusLayer__thesisItem:before {
    content: "0" counter(list-number);
    font-family: Roboto;
    font-size: 26px;
    font-weight: 500;
    color: #BCBCBC;
    margin-right: 15px;
}
.dpUsageStatusLayer__thesisItem:not(:first-child) {
    border-top: 1px solid #DCDADA;
}
.dpUsageStatusLayer__thesisLink {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    color: #222;
}
.dpUsageStatusLayer__statistics {
    position: relative;
}
.dpUsageStatusLayer__statistics .dpUsageStatusLayer__h2 {
    margin-left: 10px;
}
.dpUsageStatusLayer__statistics .chartLegend {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: #656565;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: center;
    align-self: center;
    gap: 20px;
}
.dpUsageStatusLayer__statistics .chartLegend p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
}
.dpUsageStatusLayer__statistics .chartLegend p:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 3px;
}
.dpUsageStatusLayer__statistics .chartLegend__visit:before {
    background-color: #165C92;
}
.dpUsageStatusLayer__statistics .chartLegend__usage:before {
    background-color: #EF4348;
}
.dpUsageStatusLayer__chart {
    width: 100%;
    margin-top: 13px;
    height: 280px;
}
.dpUsageStatusLayer__keyword {
    padding: 0 10px;
}
.dpUsageStatusLayer__keyword .keywordWrap {
    overflow: hidden;
    height: 90px;
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 5px;
}
.dpUsageStatusLayer__keyword .btnKeyword {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    border-radius: 20px;
    background-color: #eee;
    max-width: 250px;
    height: 40px;
    font-size: 14px;
    color: #165C92;
    padding: 0 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: default;
}
.dpUsageStatusLayer__keyword .btnKeyword:before {
    content: "#";
}
.dpUsageStatusLayer__keyword .no-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 20px;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 18px;
    color: #666;
}
.dpUsageStatusLayer__login {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    height: 162px;
    padding-left: 38px;
    border: 1px solid #E8ECEF;
    border-radius: 2px;
}
.dpUsageStatusLayer__loginTxt {
    font-size: 28px;
    font-weight: 700;
    line-height: 44px;
    color: #222;
    padding-left: 120px;
    background: url(/images/v2/main/ico_research.png) no-repeat 0 0/contain;
}
.dpUsageStatusLayer__btnLogin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 192px;
    height: 62px;
    background: #EF4348;
    border-radius: 2px;
    font-size: 22px;
    color: #fff;
    position: absolute;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

.dpPaymentPriceList {
    z-index: 100;
    padding: 20px 16px 30px;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -365px;
    margin-top: -153px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dpPaymentPriceList button {
    cursor: pointer;
}
.dpPaymentPriceList__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: content;
    -ms-flex-pack: content;
    justify-content: content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
}
.dpPaymentPriceList__closed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}
.dpPaymentPriceList__closed:after, .dpPaymentPriceList__closed:before {
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpPaymentPriceList__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpPaymentPriceList__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpPaymentPriceList__Tit {
    font-size: 20px;
    font-weight: bold;
    color: #111;
}
.dpPaymentPriceList__Txt {
    width: 100%;
    padding: 20px 0;
    font-size: 13px;
    color: #606060;
    white-space: nowrap;
    display: block;
}
.dpPaymentPriceList__form {
    width: 100%;
    border-top: 1px solid #DFDFDF;
}
.dpPaymentPriceList__form form {
    margin-bottom: 0;
}
.dpPaymentPriceList__Optiontxt {
    font-size: 16px;
    font-weight: 500;
    color: #606060;
    padding-bottom: 10px;
}
.dpPaymentPriceList__tbl {
    white-space: nowrap;
    font-size: 13px;
    color: #000;
    width: 710px;
    text-align: center;
    border-top: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
}
.dpPaymentPriceList__tbl th {
    color: #606060;
    border-bottom: 1px solid #DFDFDF;
    height: 49px;
    font-weight: 400;
}
.dpPaymentPriceList__tbl td {
    border-top: 1px solid #DFDFDF;
    height: 59px;
}
@media screen and (max-width: 960px) {
    .dpPaymentPriceList {
        margin-left: 0;
        z-index: 110;
        margin-top: 0px;
        -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
        transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
        width: 320px;
        padding: 20px 16px;
    }
    .dpPaymentPriceList__form {
        width: 100%;
        overflow-x: scroll;
        border-top: 1px solid #dfdfdf;
        padding-bottom: 16px;
    }
    .dpPaymentPriceList__form::-webkit-scrollbar {
        height: 10px; /*스크롤바의 너비*/
    }
    .dpPaymentPriceList__form::-webkit-scrollbar-thumb {
        border-radius: 30px;
        background-color: #E4E4E4; /*스크롤바의 색상*/
    }
    .dpPaymentPriceList__form::-webkit-scrollbar-thumb:hover {
        background-color: #CFCFCF;
    }
    .dpPaymentPriceList__form::-webkit-scrollbar-track {
        background-color: #fff; /*스크롤바 트랙 색상*/
    }
    .dpPaymentPriceList__Optiontxt {
        font-weight: 600;
    }
}

.dpPaymentPolicy {
    z-index: 100;
    width: 730px;
    padding: 20px 16px 30px;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -365px;
    margin-top: -153px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 960px) {
    .dpPaymentPolicy {
        width: 100%;
        margin-left: 0;
        left: 0;
    }
}
.dpPaymentPolicy button {
    cursor: pointer;
}
.dpPaymentPolicy__tit {
    font-size: 20px;
    color: #111;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #DFDFDF;
    margin-bottom: 20px;
}
.dpPaymentPolicy__closed {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
}
.dpPaymentPolicy__closed:before, .dpPaymentPolicy__closed:after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #6D7385;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpPaymentPolicy__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpPaymentPolicy__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpPaymentPolicy__txt {
    font-size: 13px;
    color: #606060;
    margin-bottom: 3px;
}

.milliePolicy {
    z-index: 100;
    width: 730px;
    padding: 20px 16px 30px;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -365px;
    margin-top: -153px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 960px) {
    .milliePolicy {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        margin-left: 0;
        margin-top: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
.milliePolicy button {
    cursor: pointer;
}
.milliePolicy__tit {
    font-size: 20px;
    color: #111;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #DFDFDF;
    margin-bottom: 20px;
}
.milliePolicy__stit {
    font-size: 15px;
    color: #111;
    font-weight: 500;
    margin-bottom: 10px;
}
.milliePolicy__stit:nth-child(n+2) {
    margin-top: 20px;
}
.milliePolicy__closed {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
}
.milliePolicy__closed:before, .milliePolicy__closed:after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #6D7385;
    position: absolute;
    left: 50%;
    top: 50%;
}
.milliePolicy__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.milliePolicy__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.milliePolicy__txt {
    font-size: 13px;
    color: #606060;
    margin-bottom: 3px;
}

.MillieBuy {
    z-index: 110;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
    width: 336px;
    background-color: #fff;
    border: 0;
    padding-top: 25px;
}
.MillieBuy:after, .MillieBuy::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
}
.MillieBuy::before {
    width: 64px;
    height: 64px;
    border: 5px solid #fff;
    background-color: #3c63e0;
    border-radius: 50%;
    top: -42px;
    -webkit-transform: translateX(calc(-50% + 0.5px));
    transform: translateX(calc(-50% + 0.5px));
}
.MillieBuy:after {
    width: 10px;
    height: 25px;
    -webkit-transform: translateX(calc(-50% + 0.5px)) rotate(180deg);
    transform: translateX(calc(-50% + 0.5px)) rotate(180deg);
    top: -24px;
    background-color: #fff;
    -webkit-box-shadow: 0 -8px 0 0 #fff;
    box-shadow: 0 -8px 0 0 #fff;
    border-top: 2px solid #3c63e0;
}
.MillieBuy__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    margin: 25px 20px 20px;
}
.MillieBuy__btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    padding: 12px 10px;
    border-top: 1px solid #efefef;
}
.MillieBuy .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 37px;
    font-size: 16px;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    cursor: pointer;
    background-color: #555;
    margin-right: 10px;
    outline: 0;
}
.MillieBuy .btn:last-child {
    background-color: #3c63e0;
    margin-right: 0;
}

.dpNotificationRegister {
    z-index: 100;
    width: 430px;
    padding: 20px 16px 30px;
    border: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -215px;
    margin-top: -180px;
    background-color: #fff;
}
@media screen and (max-width: 960px) {
    .dpNotificationRegister {
        width: 100%;
        margin-left: 0;
        left: 0;
    }
}
.dpNotificationRegister button {
    cursor: pointer;
}
.dpNotificationRegister__tit {
    font-size: 20px;
    color: #111;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #DFDFDF;
    margin-bottom: 20px;
}
.dpNotificationRegister__closed {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
}
.dpNotificationRegister__closed:before, .dpNotificationRegister__closed:after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #6D7385;
    position: absolute;
    left: 50%;
    top: 50%;
}
.dpNotificationRegister__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dpNotificationRegister__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.dpNotificationRegister__stit {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}
.dpNotificationRegister__inputWrap {
    position: relative;
    background: url(/images/common/phone.svg) no-repeat 12px 50%/18px 22px;
    margin-bottom: 30px;
}
.dpNotificationRegister__placeholder {
    font-size: 13px;
    position: absolute;
    left: 53px;
    top: 50%;
    color: #ccc;
    z-index: -1;
    margin-top: -9px;
}
.dpNotificationRegister__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    padding: 6px 9px 7px 53px;
    border: 1px solid #ccc;
    width: 100%;
    color: #111;
    outline: 0;
    border-radius: 3px;
}
.dpNotificationRegister__input:focus {
    border-color: #999dff;
}
.dpNotificationRegister__input.text + .dpNotificationRegister__placeholder {
    font-size: 9px;
    top: 11px;
}
.dpNotificationRegister__txt {
    font-size: 14px;
    color: #111;
    line-height: 24px;
}
.dpNotificationRegister__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    height: 48px;
    background-color: #3C63E0;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.dpNotificationRegister__btn:disabled {
    background-color: #ccc;
    cursor: auto;
}

@media screen and (max-width: 960px) {
    #dimLayer .dpOrganization {
        margin: auto !important;
    }
    .thesisPreviewPopup {
        left: unset;
        top: unset;
        -webkit-transform: unset;
        transform: unset;
        max-width: 100%;
    }
    .dpPartnership {
        z-index: 100;
        left: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        width: 100%;
        padding: 20px;
    }
    .dpPartnership .partnershipLy:not(:first-child) {
        width: 100%;
        border-top: 1px solid #efefef;
        margin-top: 20px;
    }
    .dpPartnership .partnershipLy:last-child {
        border-left: 1px solid #efefef;
    }
    .dpLogin {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .dpLogin__info {
        font-size: 11px;
        width: 90%;
    }
    .dpLogin__form {
        width: 300px;
        margin: 0 auto;
        padding: 0;
    }
    .dpLogin__linkBox {
        width: 300px;
        margin: 0 auto;
        margin-top: 10px !important;
        padding: 0 0 50px;
    }
    .dpLogin__inputBox .btnTogglePassword {
        right: 40px;
    }
    .dpSnsFloating {
        display: none;
    }
    .dpQuoteThesis {
        background-color: #fff;
        border: 0;
        position: fixed;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
        transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
        width: 100%;
        max-width: 480px;
        padding: 25px 20px 20px;
        -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
        z-index: 100;
    }
    .dpQuoteThesis__selectWrap {
        display: none !important;
    }
    .dpQuoteThesis__radioWrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 24px;
    }
    .dpQuoteThesis__label {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    .dpQuoteThesis__label span {
        font-size: 12px;
        color: #111;
    }
    .dpQuoteThesis__radio {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 18px;
        height: 18px;
        border: 1px solid #ACACAC;
        border-radius: 50%;
    }
    .dpQuoteThesis__radio:checked {
        border-color: #EF4348;
    }
    .dpQuoteThesis__radio:checked:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        background-color: #EF4348;
        border-radius: 50%;
    }
    .dpQuoteThesis__stit {
        font-size: 14px;
        color: #606060;
        position: relative;
    }
    .dpQuoteThesis__question {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 15px;
        height: 15px;
        border: 1px solid #D9D9D9;
        border-radius: 50%;
        background: #F9F9F9 url(/images/v2/btn/ico_question.svg) no-repeat 50% 50%;
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
        margin-left: 3px;
    }
    .dpQuoteThesis__question:hover + .dpQuoteThesis__questionLayer {
        display: block;
    }
    .dpQuoteThesis__questionLayer {
        display: none;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        position: absolute;
        top: 25px;
        left: 0;
        border-radius: 3px;
        -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
        background: #fff;
        border: 1px solid #ECECEC;
        font-size: 12px;
        color: #666;
        padding: 12px 10px;
        z-index: 1;
    }
    .dpQuoteThesis__btnWrap {
        display: none;
    }
    .dpQuoteThesis__export {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 1px solid #E9E9E9;
        height: 24px;
        font-size: 12px;
        color: #666;
        padding: 0 10px;
    }
    .dpQuoteThesis__export:hover {
        -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    }
    .dpQuoteThesis__basic {
        margin-top: 16px;
        padding-bottom: 24px;
        border-bottom: 1px solid #EFEFEF;
        display: none;
    }
    .dpQuoteThesis__basicWrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 10px;
    }
    .dpQuoteThesis__basicWrap button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 40px;
        border-radius: 2px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .dpQuoteThesis__basicWrap button span {
        color: #fff;
        font-size: 13px;
    }
    .dpQuoteThesis__basicWrap button:hover {
        -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    }
    .dpQuoteThesis__basicKor {
        background: #34AEE7;
    }
    .dpQuoteThesis__basicKor span {
        padding-left: 28px;
        background: url(/images/v2/btn/ico_hangeul.svg) no-repeat 0 0/15px 20px;
    }
    .dpQuoteThesis__basicWord {
        background: #2A5696;
    }
    .dpQuoteThesis__basicWord span {
        padding-left: 27px;
        background: url(/images/v2/btn/ico_word.svg) no-repeat 0 0/20px 20px;
    }
    .dpQuoteThesis__tip {
        margin-top: 15px;
        color: #8E8E8E;
        padding-left: 27px;
        position: relative;
        font-size: 12px;
    }
    .dpQuoteThesis__tip:before {
        content: "Tip :";
        font-size: 11px;
        position: absolute;
        left: 0;
    }
    .dpQuoteThesis__h2 {
        font-size: 16px;
        font-weight: 500;
        color: #111;
        margin-bottom: 10px;
    }
    .dpQuoteThesis__form {
        font-size: 12px;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-inline-box;
        width: 175px;
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    .dpQuoteThesis__etc {
        position: relative;
        margin-top: 16px;
    }
    .dpQuoteThesis__btnChange {
        display: none !important;
    }
    .dpQuoteThesis .quoteWrap {
        min-height: 120px;
        max-height: 220px;
        padding: 10px;
        overflow-y: auto;
        border: 1px solid #E9E9E9;
        background: #FBFBFB;
    }
    .dpQuoteThesis .quoteWrap__txt {
        font-size: 13px;
        color: #165C92;
        line-height: 19px;
    }
    .dpQuoteThesis .quoteWrap__copy {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 26px;
        background-color: #4c86b6;
        color: #fff;
        font-size: 13px;
        padding: 0 13px;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    .dpQuoteThesis .quoteWrap__copy:hover {
        background: #3d6b92;
    }
    .dpRecommendThesis__item {
        padding: 20px 0 17px 0;
        min-height: 100px;
        height: auto;
    }
    .dpRecommendThesis__item:before {
        display: none;
    }
    .dpRecommendThesis__item .thesis__btnWrap {
        margin-left: 20px;
        width: 80px;
    }
    .dpRecommendThesis__link {
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-right: 0;
    }
    .dpJudicial {
        width: 100%;
        padding: 20px 20px 0;
    }
    .dpDetailSearch {
        display: none;
    }
    .dpNotice {
        position: fixed;
        width: 100%;
        max-width: 100%;
        left: 0 !important;
        top: 0 !important;
    }
    .dpUserChart {
        left: 0;
        top: 0;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .dpUserChart__th, .dpUserChart__td {
        width: 33%;
    }
    .dpUserChart__th:last-child, .dpUserChart__td:last-child {
        width: 33%;
    }
    .dpUserChart__thead {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .dpUserChart__thead .dpUserChart__th:last-child {
        padding-right: 0;
    }
    .dpUserChart__tbody {
        height: 50vh;
    }
    .dpUserChart__area {
        margin-top: 20px;
        border: 1px solid #e0e0e0;
        height: 371px;
        max-height: 371px !important;
        padding: 5px;
    }
    .dpUserChart .nuriSlider__container {
        overflow: hidden;
        padding: 0 20px;
    }
    .dpUserChart .nuriSlider__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    .dpUserChart .nuriSlider__item {
        width: 90vw;
    }
    .dpUserChart .nuriSlider__btnContainer {
        top: 60%;
    }
    .dpUserChart .nuriSlider__btnContainer button:disabled {
        opacity: 0;
    }
    .dpUserChart .nuriSlider__btnContainer button:before {
        border: 3px solid #999;
        border-left: 0;
        border-top: 0;
    }
    .dpUserChart .nuriSlider__nextBtn {
        right: 10px;
    }
    .dpUserChart .nuriSlider__prevBtn {
        left: 10px;
    }
    .downloadPurchasePopup__header {
        height: auto;
        padding: 20px 18px;
        width: 100%;
    }
    .downloadPurchasePopup__closed {
        width: 18px;
        height: 18px;
    }
    .downloadPurchasePopup__closed:before, .downloadPurchasePopup__closed:after {
        width: 20px;
        height: 1px;
    }
    .downloadPurchasePopup__cont {
        width: 100%;
        padding: 10px 18px 30px;
    }
    .downloadPurchasePopup__cont.premium {
        width: 100%;
        padding: 20px 18px 30px;
    }
    .downloadPurchasePopup__cont.premium .t1 {
        text-align: center;
    }
    .downloadPurchasePopup__cont.premium .t1 + .t2 {
        font-size: 12px;
    }
    .downloadPurchasePopup__cont.premium .t2 {
        font-size: 11px;
        color: #EF4348;
        text-align: center;
        margin: 0 auto;
    }
    .downloadPurchasePopup__cont.premium .t3 {
        margin: 15px auto 0;
        background-color: #F9F9F9;
        border-radius: 3px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 45px;
        font-size: 13px;
        color: #606060;
    }
    .downloadPurchasePopup__cont.premium .box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 12px;
        padding: 14px 20px 15px;
        border: 1px solid #EEE;
    }
    .downloadPurchasePopup__cont.premium .box b {
        font-size: 15px;
        color: #111;
        font-weight: 400;
    }
    .downloadPurchasePopup__cont.premium .box p {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .downloadPurchasePopup__cont.premium .box del {
        font-size: 12px;
        color: #999;
        margin-right: 5px;
    }
    .downloadPurchasePopup__cont.premium .box strong {
        font-size: 15px;
        font-weight: 500;
        color: #111;
    }
    .downloadPurchasePopup__btnWrap {
        height: auto;
        gap: 7px;
        padding: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .downloadPurchasePopup__btnWrap [class^=btn] {
        padding: 0;
        height: 42px;
    }
    .downloadPurchasePopup__btnWrap [class^=btn] div {
        display: none;
    }
    .downloadPurchasePopup__btnWrap .btnCart {
        width: 50%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .downloadPurchasePopup__btnWrap .btnPurchase {
        width: 50%;
    }
    .downloadPurchasePopup__btnWrap.premium [class^=btn] {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .downloadPurchasePopup__btnWrap.premium .btnCart {
        width: 48px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        background: #707070 url(/images/payment/btn_addcart.png) no-repeat 50% 50%/27px 21px;
    }
    .downloadPurchasePopup__btnWrap.premium .btnCart span {
        display: none;
    }
    .downloadPurchasePopup__btnWrap.premium .btnPurchase {
        width: auto;
    }
    .downloadPurchasePopup__txt {
        text-align: left;
        font-size: 12px;
        line-height: 17px;
    }
    .downloadPurchasePopup__txt a {
        text-decoration: underline;
        color: #111;
        display: block;
        margin: 20px auto;
        font-size: 14px;
        text-align: center;
    }
    .downloadPurchasePopup__list {
        width: 100%;
        margin: 20px auto 0;
    }
    .downloadPurchasePopup__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 17px;
        width: 100%;
        gap: 13px;
        margin-bottom: 20px;
    }
    .downloadPurchasePopup__info > div {
        width: 50%;
        border: 1px solid #E9E9E9;
        border-radius: 4px;
        text-align: center;
        padding: 20px 0 25px;
    }
    .downloadPurchasePopup__info > div .s1 {
        font-size: 16px;
        font-weight: 500;
        color: #111;
    }
    .downloadPurchasePopup__info > div .s2 {
        font-size: 12px;
        color: #999;
        margin-top: 5px;
    }
    .downloadPurchasePopup__info > div .s3 {
        margin-top: 20px;
    }
    .downloadPurchasePopup__info > div del {
        font-size: 12px;
        color: #ACACAC;
    }
    .downloadPurchasePopup__info > div strong {
        color: #3C63E0;
        font-size: 16px;
        margin-left: 5px;
        font-weight: 400;
    }
    .downloadPurchasePopup__info > div b {
        font-size: 16px;
        font-weight: 400;
        color: #111;
    }
    .thesisPreviewPopup {
        position: relative;
    }
    .thesisPreviewPopup__header {
        height: auto;
        padding: 20px 18px;
        border-bottom: 0;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 10;
        background-color: #fff;
        border-bottom: 1px solid #cccccc;
    }
    .thesisPreviewPopup__tit {
        font-weight: 700;
        width: calc(100% - 20px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .thesisPreviewPopup__closed {
        width: 18px;
        height: 18px;
    }
    .thesisPreviewPopup__closed:before, .thesisPreviewPopup__closed:after {
        width: 20px;
    }
    .thesisPreviewPopup__cont {
        position: fixed;
        left: 0;
        bottom: 0;
        height: 74px;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        z-index: 10;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: #fff;
        border-top: 1px solid #D4D4D4;
    }
    .thesisPreviewPopup__cont + .quickViewWrap {
        margin-top: 60px;
        padding-bottom: 74px;
        border-top: 0;
        height: 100vh;
    }
    .thesisPreviewPopup__item {
        display: none;
    }
    .thesisPreviewPopup__btnWrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
    .thesisPreviewPopup__link {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 54px;
        padding: 0 15px;
    }
    .thesisPreviewPopup__aTit {
        font-size: 14px;
        color: #fff;
    }
    .thesisPreviewPopup__div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
    }
    .thesisPreviewPopup__div p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .thesisPreviewPopup__div del {
        font-size: 10px;
    }
    .thesisPreviewPopup__div strong {
        font-size: 16px;
        margin-left: 5px;
    }
    .thesisPreviewPopup__div b {
        font-size: 16px;
        font-weight: 500;
    }
    .thesisPreviewPopup__txt {
        font-size: 10px;
        margin-bottom: 5px;
    }
    .thesisPreviewPopup__buy {
        background-color: #fff;
    }
    .thesisPreviewPopup__buy span {
        color: #EF4348;
    }
    .thesisPreviewPopup__buy p {
        color: #606060;
    }
    .thesisPreviewPopup__buy b {
        color: #000;
    }
    .mobileFreeNode {
        margin-bottom: 15px;
        font-size: 13px;
    }
    .mobileFreeNode__text {
        text-align: center;
    }
    .mobileFreeNode__subText {
        text-align: center;
        margin-top: 10px;
    }
    .mobileFreeNode__subText a {
        color: #1475bb;
        font-weight: bold;
        text-decoration: underline;
        text-underline-position: under;
    }
    .priceList {
        z-index: 110;
        position: fixed;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
        transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
        width: 320px;
        background-color: #fff;
        border: 0;
        padding: 20px 16px;
    }
    .priceList__header {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: content;
        -ms-flex-pack: content;
        justify-content: content;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 20px;
    }
    .priceList__closed {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 35px;
        height: 35px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
    }
    .priceList__closed:after, .priceList__closed:before {
        content: "";
        display: block;
        width: 60%;
        height: 1px;
        background-color: #666;
        position: absolute;
        left: 50%;
        top: 50%;
    }
    .priceList__closed:after {
        -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
        transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    }
    .priceList__closed:before {
        -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
        transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    }
    .priceList__Tit {
        font-size: 20px;
        font-weight: bold;
        color: #111;
    }
    .priceList__Txt {
        width: 100%;
        padding: 20px 0;
        font-size: 13px;
        color: #606060;
        white-space: nowrap;
        display: block;
    }
    .priceList__form {
        width: 100%;
        overflow-x: scroll;
        border-top: 1px solid #DFDFDF;
    }
    .priceList__form::-webkit-scrollbar {
        height: 10px; /*스크롤바의 너비*/
    }
    .priceList__form::-webkit-scrollbar-thumb {
        border-radius: 30px;
        background-color: #E4E4E4; /*스크롤바의 색상*/
    }
    .priceList__form::-webkit-scrollbar-thumb:hover {
        background-color: #CFCFCF;
    }
    .priceList__form::-webkit-scrollbar-track {
        background-color: #fff; /*스크롤바 트랙 색상*/
    }
    .priceList__Optiontxt {
        font-size: 16px;
        font-weight: 600;
        color: #606060;
        padding-bottom: 10px;
    }
    .priceList__tbl {
        white-space: nowrap;
        font-size: 13px;
        color: #000;
        width: 710px;
        text-align: center;
        border-top: 1px solid #DFDFDF;
        border-bottom: 1px solid #DFDFDF;
    }
    .priceList__tbl th {
        color: #606060;
        border-bottom: 1px solid #DFDFDF;
        height: 49px;
        font-weight: 400;
    }
    .priceList__tbl td {
        border-top: 1px solid #DFDFDF;
        height: 59px;
    }
}
#happyTalkImageDiv {
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 110px;
    width: 70px;
    height: 70px;
}
@media screen and (max-width: 960px) {
    #happyTalkImageDiv {
        display: none;
    }
}

#happyTalkImageWrapper {
    pointer-events: auto;
    width: 70px;
    height: 70px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0.2em 0.8em;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0.2em 0.8em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgb(22, 92, 146);
    cursor: pointer;
    border-radius: 8px;
}

#happyTalkImage {
    fill: rgb(255, 255, 255);
    width: 70px;
    height: 70px;
}

.AIauthority {
    background-color: #fff;
    border: 0;
    position: fixed;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(calc(-50% + 0.5px));
    transform: translateY(calc(-50% + 0.5px));
    width: 100%;
    max-width: 396px;
    margin-left: -198px;
    padding: 50px 26px 40px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
}
.AIauthority__header h1 {
    text-align: center;
}
.AIauthority__tit {
    font-size: 21px;
    color: #15277F;
}
.AIauthority__closed {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    cursor: pointer;
    right: 24px;
    top: 20px;
}
.AIauthority__closed::before, .AIauthority__closed::after {
    content: "";
    display: block;
    width: 22px;
    height: 0.5px;
    background-color: #666;
    position: absolute;
    left: 50%;
    top: 50%;
}
.AIauthority__closed::before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
.AIauthority__closed::after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.AIauthority__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
}
.AIauthority__listBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    border: 1px solid;
    border-color: transparent;
    border-radius: 15px;
    background: #F5F8FC;
    padding: 0px 19px;
    height: 109px;
}
.AIauthority__listBox:hover {
    border-color: #234CCE;
}
.AIauthority__listBox.en {
    padding: 0;
    gap: 0;
}
.AIauthority__listBox.en img {
    margin-right: 22px;
    margin-left: 19px;
}
.AIauthority__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.AIauthority__item__tit {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}
.AIauthority__item__txt {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    position: relative;
    cursor: pointer;
}
.AIauthority__item__txt:after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid #4B4B4B;
    border-right: 1px solid #4B4B4B;
    display: inline-block;
    -webkit-transform: rotate(46deg);
    transform: rotate(46deg);
    position: absolute;
    top: 7px;
    left: 87px;
}
.AIauthority__item__txt:hover {
    font-weight: 500;
    text-decoration: underline;
}
.AIauthority__item__txt.en {
    padding-right: 10px;
}
.AIauthority__item__txt.en:after {
    position: unset;
    margin-left: 10px;
}
.AIauthority__item.en {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.AIauthority2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 24px 24px 40px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    border: 0;
    position: fixed;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(calc(-50% + 0.5px));
    transform: translateY(calc(-50% + 0.5px));
    width: 100%;
    max-width: 396px;
    margin-left: -198px;
    -webkit-filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 100;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--Text-text_default, #404042);
}
.AIauthority2__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}
.AIauthority2__header__closeWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.AIauthority2__header__closeWrapper img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.AIauthority2__tit {
    color: #111;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
}
.AIauthority2__cont {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.AIauthority2__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
.AIauthority2__listBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    border: 1px solid var(--Stroke-stroke_subtle_02, #E4E4E4);
    background: var(--Fill-fill_white, #FFF);
    padding: 20px 31px;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.AIauthority2__item__tit {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 24px */
}
.AIauthority2__item__wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 960px) {
    .AIauthority {
        width: 317px;
        margin-left: -159px;
    }
    .AIauthority__tit {
        font-size: 20px;
    }
    .AIauthority__listBox {
        position: relative;
        gap: 18px;
    }
    .AIauthority__listBox > img {
        width: 24%;
    }
    .AIauthority__listBox.en {
        padding: 0 27px 0 0;
        gap: 0;
    }
    .AIauthority__listBox.en img {
        margin-right: 15px;
        margin-left: 10px;
    }
    .AIauthority__item {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }
    .AIauthority__item__txt {
        display: none;
    }
    .AIauthority__item.arrow {
        width: 18px;
        height: 18px;
        border-top: 2px solid #4b4b4b;
        border-right: 2px solid #4b4b4b;
        display: inline-block;
        -webkit-transform: rotate(46deg);
        transform: rotate(46deg);
        top: 45px;
        right: 21px;
        position: absolute;
    }
    .AIauthority__item.en.arrow {
        width: 15px;
        height: 15px;
        right: 15px;
    }
    .AIauthority2 {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }
    .AIauthority2__tit {
        font-size: 18px;
    }
    .AIauthority2__listBox {
        height: 80px;
        font-size: 14px;
    }
    .libraryBtn span {
        display: none;
    }
}
.dataDetialProcess {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 0.5px));
    transform: translateX(calc(-50% + 0.5px));
    width: 960px;
    top: 45px;
    padding: 30px;
    background-color: #fff;
    border: 0;
}
.dataDetialProcess__process {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dataDetialProcess__processTit {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
.dataDetialProcess__processTit.data {
    border-bottom: 1px solid #111;
}
.dataDetialProcess__processTxt {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    padding-bottom: 30px;
}
.dataDetialProcess__table {
    margin-top: 30px;
}
.dataDetialProcess__table:nth-of-type(1) {
    margin-top: 20px;
}
.dataDetialProcess__tableTit {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-bottom: 11px;
    display: block;
}
.dataDetialProcess__tableTbl {
    text-align: center;
    width: 100%;
}
.dataDetialProcess__tableTbl thead {
    border-top: 1px solid #999;
    border-bottom: 1px solid #ddd;
    background-color: #F1F1F1;
}
.dataDetialProcess__tableTbl th {
    padding: 11px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #ddd;
}
.dataDetialProcess__tableTbl th:last-child {
    border-right: 0;
}
.dataDetialProcess__tableTbl tbody {
    background-color: #fff;
}
.dataDetialProcess__tableTbl td {
    padding: 14px 11px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #ddd;
}
.dataDetialProcess__tableTbl td:last-child {
    border-right: 0;
}
.dataDetialProcess__tableTbl tfoot td {
    border-bottom: 0;
    padding: 10px 0 0 0;
    text-align: left;
    font-size: 13px;
}
.dataDetialProcess .txtBlue {
    color: #165C92;
}
.dataDetialProcess__closed {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.dataDetialProcess__closed:before, .dataDetialProcess__closed:after {
    content: "";
    display: block;
    width: 21px;
    height: 1.5px;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 2px;
}
.dataDetialProcess__closed:before {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(45deg);
}
.dataDetialProcess__closed:after {
    -webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
    transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px)) rotate(-45deg);
}
@media screen and (max-width: 960px) {
    .dataDetialProcess {
        left: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        width: 100%;
        padding: 20px;
    }
    .dataDetialProcess__processTit {
        font-size: 16px;
    }
    .dataDetialProcess__table colgroup col:nth-child(1) {
        min-width: 95px;
    }
    .dataDetialProcess__table colgroup col:nth-child(2) {
        min-width: 120px;
    }
    .dataDetialProcess__tableTit {
        font-size: 14px;
    }
    .dataDetialProcess__tableTbl th {
        font-size: 12px;
        padding: 11px 6px;
    }
    .dataDetialProcess__tableTbl td {
        font-size: 11px;
        padding: 11px 6px;
    }
    .dataDetialProcess__table tfoot td {
        padding-bottom: 20px;
        font-size: 10px;
    }
    .dataDetialProcess__closed {
        top: 18px;
        right: 15px;
    }
    .dataDetialProcess__closed:before, .dataDetialProcess__closed:after {
        width: 18px;
        height: 1.5px;
    }
}
.banner-container {
    position: fixed;
    right: 21px; /* 원하는 위치 조정 */
    bottom: 130px; /* 원하는 위치 조정 */
    z-index: 1000;
}

.close-icon {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    z-index: 10000;
}

.close-icon:hover {
    background: rgba(0, 0, 0, 0.5);
}

.banner-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.thesisDetail {
    width: 100%;
    max-width: 1080px;
}
.thesisDetail__head {
    padding-bottom: 20px;
}
.thesisDetail__head p {
    font-size: 13px;
}
.thesisDetail__abs, .thesisDetail__keyword {
    color: #999;
}
.thesisDetail__tit {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.thesisDetail__tit span {
    color: #cc4736;
    font-size: 12px;
    font-weight: normal;
    vertical-align: middle;
}
.thesisDetail__info {
    background-color: #F4F8FC;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 0;
    -webkit-box-shadow: 0 0 0 100vmax #F4F8FC;
    box-shadow: 0 0 0 100vmax #F4F8FC;
    -webkit-clip-path: inset(0 -100vmax);
    clip-path: inset(0 -100vmax);
}
.thesisDetail__info .info__h2 {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
}
.thesisDetail__author {
    width: 40%;
    padding-right: 60px;
}
.thesisDetail__journal {
    width: 40%;
    padding-right: 60px;
}
.thesisDetail__cover {
    width: 157px;
    height: 210px;
    margin-left: auto;
    border: 1px solid #efefef;
    overflow: hidden;
}
.thesisDetail__cover img {
    width: 100%;
    height: 100%;
}
.thesisDetail .authorList {
    font-size: 14px;
    margin-bottom: 10px;
}
.thesisDetail .authorList__item:not(:last-child) {
    margin-bottom: 8px;
}
.thesisDetail .authorList__author {
    color: #3C63E0;
}
.thesisDetail .authorList__agency {
    color: #666;
}
.thesisDetail .authorList__link {
    font-size: 14px;
    color: #3C63E0;
    position: relative;
    cursor: pointer;
}
.thesisDetail .journalList {
    font-size: 14px;
}
.thesisDetail .journalList__item {
    color: #666;
}
.thesisDetail .journalList__item span + span,
.thesisDetail .journalList__item a + span {
    margin-left: 7px;
    padding-left: 10px;
    position: relative;
}
.thesisDetail .journalList__item span + span:before,
.thesisDetail .journalList__item a + span:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #c8c8c8;
    position: absolute;
    left: 0;
    top: 6px;
}
.thesisDetail .journalList__item:not(:last-child) {
    margin-bottom: 8px;
}
.thesisDetail .journalList__link {
    font-size: 14px;
    color: #3C63E0;
}
.thesisDetail__etc {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.thesisDetail__etc > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #111;
    font-size: 14px;
}
.thesisDetail__etc > div:not(:last-child) {
    margin-right: 20px;
}
.thesisDetail__etc dd {
    font-weight: 700;
    margin-left: 5px;
}
.thesisDetail__etc .etcBtn {
    cursor: pointer;
    border: 0;
    background-color: transparent;
    color: #3C63E0;
    font-weight: 700;
    font-size: inherit;
}
.thesisDetail__etc .etcBtn:hover {
    text-decoration: none;
}
.thesisDetail__btnWrap {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.thesisDetail__btnWrap button[class$=Btn] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 22px 10px 20px;
}
.thesisDetail__btnWrap button[class$=Btn]:hover {
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.thesisDetail__btnWrap button[class$=Btn] img {
    margin-right: 4px;
}
.thesisDetail__btnWrap button[class$=Btn] .citeasy_logo {
    width: 24.667px;
}
.thesisDetail__btnWrap button {
    min-width: 90px;
}
.thesisDetail__btnWrap .quoteBtn {
    color: #fff;
    background: #1F8BD8 url(/images/v2/btn/ico_qoute.svg) no-repeat 14px 10px/22px 22px;
    margin-right: 10px;
}
.thesisDetail__btnWrap .citeasyquoteBtn {
    min-width: 140px;
    color: #fff;
    background: #593EFF;
    margin-right: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.thesisDetail__btnWrap .quoteOptionWrap {
    display: none;
    position: absolute;
    left: 0;
    top: 67px;
    width: 140px;
}
.thesisDetail__btnWrap .quoteOptionWrap.open {
    display: block;
}
.thesisDetail__btnWrap .quoteOptionWrap.show {
    display: block;
}
.thesisDetail__btnWrap .quoteOptionWrap button {
    cursor: pointer;
    width: 140px;
    height: 36px;
    border-radius: 2px;
    background-color: #fff;
    font-size: 13px;
    padding-left: 40px;
    text-align: left;
}
.thesisDetail__btnWrap .quoteOptionWrap button:hover {
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.thesisDetail__btnWrap .quoteOptionWrap__han {
    color: #34AEE7;
    border: 1px solid #34AEE7;
    background: url(/images/v2/btn/ico_hangeul_blue.svg) no-repeat 9px 50%/20px 20px;
}
.thesisDetail__btnWrap .quoteOptionWrap__word {
    color: #2A5696;
    border: 1px solid #2A5696;
    margin-top: 5px;
    background: url(/images/v2/btn/ico_word_navy.svg) no-repeat 11px 50%/20px 20px;
}
.thesisDetail__btnWrap .quoteOptionBtn {
    color: #fff;
    background: #7F7F7F;
    margin-right: 10px;
    border: 1px solid #7F7F7F;
}
.thesisDetail__btnWrap .quoteOptionBtn:hover {
    background-color: #6F6F6F;
}
.thesisDetail__btnWrap .quoteOptionBtn span {
    padding-left: 25px;
    background: url(/images/v2/btn/ico_qoute.svg) no-repeat 0 55%/15px 12px;
}
.thesisDetail__btnWrap button.shareBtn {
    min-width: fit-content;
    color: #939495;
    border: 1px solid var(--Button-btn_mono_stroke, #CCC);
    padding: 12px;
    background: #fff;
}
.thesisDetail__btnWrap button.shareBtn > img {
    margin-right: 0;
}
.thesisDetail__btnWrap .libraryMobileBtn {
    display: none;
}
.thesisDetail__btnWrap .personalBtn {
    margin-left: auto;
}
.thesisDetail__btnWrap .personalBtn .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.thesisDetail__btnWrap .personalBtn .inner > button {
    min-width: 140px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 10px;
}

.thesisDetail__btnWrap .personalBtn .inner > button.libraryBtn{
    min-width: fit-content;
    padding: 12px;
}

.thesisDetail__btnWrap .personalBtn .inner > button.libraryBtn > img{
    margin-right: 0;
}

.thesisDetail__btnWrap .personalBtn .inner > button.disabled {
    border-color: #666;
    background-color: #666;
}
.thesisDetail__btnWrap .personalBtn .inner > button span {
    line-height: 42px;
}
.thesisDetail__btnWrap .personalBtn .thesisDetail__tit {
    display: none;
}
.thesisDetail__btnWrap .personalBtn.scroll {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 20;
    background: #fff;
    border-top: 2px solid #666;
}
.thesisDetail__btnWrap .personalBtn.scroll .inner {
    max-width: 1080px;
    margin: 0 auto;
    height: 90px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.thesisDetail__btnWrap .personalBtn.scroll .libraryBtn {
    display: none;
}
.thesisDetail__btnWrap .personalBtn.scroll .thesisDetail__tit {
    display: block;
    font-size: 20px;
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.thesisDetail__btnWrap .linkBtn {
    border: 1px solid #db3a3f;
    background: #db3a3f;
}
.thesisDetail__btnWrap .linkBtn span {
    color: #fff;
    background: url(/images/v2/btn/ico_link_on.svg) no-repeat 0 50%/22px 22px;
}
.thesisDetail__btnWrap button.libraryBtn {
    border: 1px solid #ccc;
}
.thesisDetail__btnWrap .libraryBtn span {
    color: #939495;
    font-size: 14px;
    font-weight: 700;
}
.thesisDetail__btnWrap .libraryBtn .addedIcon {
    display: none;
}
.thesisDetail__btnWrap .libraryBtn.addBtn {
    border: 1px solid #db3a3f;
}
.thesisDetail__btnWrap .libraryBtn.addBtn .addedIcon {
    display: block;
}
.thesisDetail__btnWrap .libraryBtn.addBtn .emptyIcon {
    display: none;
}
.thesisDetail__btnWrap .aiChatBtn {
    border: 1px solid #db3a3f;
    position: relative;
}
.thesisDetail__btnWrap .aiChatBtn span {
    color: #db3a3f;
}
.thesisDetail__btnWrap .downBtn {
    background: var(--Button-btn_tonal, #FFE9E9);
}
.thesisDetail__btnWrap .downBtn span {
    color: #db3a3f;
    font-size: 14px;
    font-weight: 700;
}
.thesisDetail__btnWrap .pdfBtn {
    border: 1px solid #db3a3f;
    background: #db3a3f;
    position: relative;
}
.thesisDetail__btnWrap .pdfBtn span {
    color: #fff;
}
.thesisDetail__btnWrap .gistBtn {
    border: 1px solid #333;
    background: linear-gradient(79deg, #A430FF 11.57%, #DB3A3F 80.97%);
    position: relative;
}
.thesisDetail__btnWrap .gistBtn span {
    color: #fff;
}
.thesisDetail__btnWrap .gistBtn__tooltip {
    width: 158px;
    height: 30px;
    padding: 4px 12px 6px 12px;
    border: 1px solid #000;
    background: #000;
    font-size: 13px;
    letter-spacing: -0.5px;
    color: #fff;
    border-radius: 3px;
    position: absolute;
    left: -8px;
    top: -40px;
    white-space: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.thesisDetail__btnWrap .gistBtn__tooltip::before {
    content: "";
    display: block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
    left: 44%;
    position: absolute;
    top: 28px;
    width: 0;
    height: 0;
}
.thesisDetail__btnWrap .gistBtn__tooltip2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 26px;
    padding: 1px 8px 3px 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    position: absolute;
    right: 2px;
    top: -24px;
    border-radius: 200px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(65.38%, #FFF), color-stop(267.31%, #999));
    background: linear-gradient(180deg, #FFF 65.38%, #999 267.31%);
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
}
.thesisDetail__btnWrap .gistBtn__tooltip2 p {
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 19.2px */
}
.thesisDetail__btnWrap .gistBtn__tooltip2 .tail {
    position: absolute;
    bottom: -6px;
    right: -6px;
}
.thesisDetail__btnWrap .gistBtn__tooltip2 .color_gradient {
    background: linear-gradient(254deg, #DB3A3F 0%, #A430FF 80.13%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.thesisDetail__btnWrap .txt {
    text-align: right;
    color: #db3a3f;
    font-size: 12px;
    width: 100%;
    margin-top: 10px;
}
.thesisDetail__h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    position: relative;
}
.thesisDetail__h2:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #EFEFEF;
}
.thesisDetail__h2 [class$=Count] {
    margin-left: 5px;
    color: #cc4736;
}
.thesisDetail__h2 [class$=Count]:hover {
    text-decoration: none;
}
.thesisDetail__stxt {
    font-size: 14px;
    color: #75797E;
    margin-top: 5px;
}
.thesisDetail__abstract {
    margin-top: 40px;
    position: relative;
}
.thesisDetail__abstract .abstractTxt {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    position: relative;
    max-height: 250px;
    overflow: hidden;
    word-break: keep-all;
    margin-top: 15px;
}
.thesisDetail__abstract .abstractTxt:after {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(#FFFFFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.thesisDetail__abstract .keywordWrap {
    margin-top: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
.thesisDetail__abstract .keywordWrap__keyword {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px 32px;
    border-radius: 30px;
    background-color: #F5F5F5;
    color: #165c92;
    font-size: 14px;
    font-weight: 500;
}
.thesisDetail__abstract .keywordWrap__keyword:hover {
    text-decoration: none;
    background: #165c92;
    color: #fff;
}
.thesisDetail__order {
    margin-top: 40px;
}
.thesisDetail__order[data-open=open] {
    max-height: initial;
}
.thesisDetail__order[data-open=open] .orderList.over {
    max-height: initial;
}
.thesisDetail__order[data-open=open] .orderList.over:after {
    display: none;
}
.thesisDetail__order .orderList {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 26px;
}
.thesisDetail__order .orderList.over {
    position: relative;
    max-height: 250px;
    overflow: hidden;
}
.thesisDetail__order .orderList.over:after {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(#fff));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #fff 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.thesisDetail__reference {
    margin-top: 40px;
    position: relative;
}
.thesisDetail__reference h2 {
    margin-bottom: 10px;
}
.thesisDetail__reference .referenceLink {
    display: block;
    font-size: 15px;
    color: #666;
    margin-bottom: 14px;
    padding-left: 15px;
    position: relative;
}
.thesisDetail__reference .referenceLink:last-of-type {
    margin-bottom: 40px;
}
.thesisDetail__reference .referenceLink:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #666;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}
.thesisDetail__reference .referenceLink img {
    vertical-align: middle;
    margin-left: 10px;
}
.thesisDetail__reference .referenceLink img.img_google {
    opacity: 0.5;
}
.thesisDetail__reference .loginBtn {
    display: block;
    color: #3C63E0;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    margin: 0 auto;
    cursor: pointer;
}
.thesisDetail__precedent {
    margin-top: 40px;
    position: relative;
}
.thesisDetail__precedent .slideCount {
    position: absolute;
    right: 0;
    top: 0;
    color: #666;
    font-size: 14px;
}
.thesisDetail__precedent .slideCount__current {
    font-weight: 700;
}
.thesisDetail__precedent [class$=Btn] {
    display: block;
    width: 40px;
    height: 60px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    position: absolute;
    top: 40%;
    cursor: pointer;
}
.thesisDetail__precedent [class$=Btn]:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #000;
    border-left: 0;
    border-top: 0;
    position: absolute;
}
.thesisDetail .precedentList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 20px 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
}
.thesisDetail .precedentList::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
.thesisDetail .precedentList__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 255px;
    height: 280px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    cursor: pointer;
}
.thesisDetail .precedentList__item:hover {
    background-color: #fafafa;
    border-color: #aaa;
}
.thesisDetail .precedentList__num {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    line-height: 1.7;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.thesisDetail .precedentList__gist {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.thesisDetail .precedentList__link {
    font-size: 12px;
    color: #3C63E0;
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding-right: 10px;
}
.thesisDetail .precedentList__link:after {
    position: absolute;
    right: 0;
    top: 5px;
    content: "";
    display: block;
    width: 5px;
    height: 8px;
    background: url(/images/v2/thesis/ico_arrow_round.svg) no-repeat 100% 50%/4.5px 8px;
}
.thesisDetail .precedentList__nextBtn {
    right: -50px;
}
.thesisDetail .precedentList__nextBtn:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 12px;
    top: 24px;
}
.thesisDetail .precedentList__prevBtn {
    left: -50px;
}
.thesisDetail .precedentList__prevBtn:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 17px;
    top: 24px;
}
.thesisDetail__together {
    margin-top: 40px;
    background: #F4F4F4;
    position: relative;
    padding: 40px 0;
    -webkit-box-shadow: 0 0 0 100vmax #F4F4F4;
    box-shadow: 0 0 0 100vmax #F4F4F4;
    -webkit-clip-path: inset(0 -100vmax);
    clip-path: inset(0 -100vmax);
}
.thesisDetail__together .thesisDetail__h2 {
    padding-bottom: 0;
}
.thesisDetail__together .thesisDetail__h2:after {
    display: none;
}
.thesisDetail__together .recommendThesis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.thesisDetail__together .recommendThesis__link {
    width: 200px;
    height: 270px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: #fff;
    border: 1px solid #FBFBFB;
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-size: 13px;
    color: #666;
}
.thesisDetail__together .recommendThesis__link:hover {
    text-decoration: none;
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.thesisDetail__together .recommendThesis__link:hover .recommendThesis__info {
    text-decoration: underline;
}
.thesisDetail__together .recommendThesis__info {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    margin-bottom: auto;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.thesisDetail__together .recommendThesis__author {
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.thesisDetail__together .recommendThesis__journal {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.thesisDetail__ai {
    background: #F8F8F8;
    position: relative;
    margin: 80px 0;
    padding: 40px 0;
    -webkit-box-shadow: 0 0 0 100vmax #F8F8F8;
    box-shadow: 0 0 0 100vmax #F8F8F8;
    -webkit-clip-path: inset(0 -100vmax);
    clip-path: inset(0 -100vmax);
}
.thesisDetail__ai .thesisDetail__h2 {
    padding-bottom: 0;
}
.thesisDetail__ai .thesisDetail__h2:after {
    display: none;
}
.thesisDetail__ai .slideCount {
    position: absolute;
    right: 0;
    top: 70px;
    color: #666;
    font-size: 14px;
}
.thesisDetail__ai [class$=Btn] {
    display: block;
    width: 40px;
    height: 60px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    position: absolute;
    background-color: #FFF;
    top: 50%;
    cursor: pointer;
}
.thesisDetail__ai [class$=Btn]:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #000;
    border-left: 0;
    border-top: 0;
    position: absolute;
}
.thesisDetail .aiContainer {
    padding: 20px 10px;
}
.thesisDetail .aiList {
    gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.thesisDetail .aiList__item {
    width: 250px;
    height: 400px;
    padding: 20px 19px;
    background: #FFFFFF;
    border: 1px solid #FBFBFB;
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.thesisDetail .aiList__item:hover {
    -webkit-box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.2);
}
.thesisDetail .aiList__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.thesisDetail .aiList__link img {
    width: 210px;
    height: 280px;
    border: 1px solid #dfdfdf;
}
.thesisDetail .aiList__link:hover {
    color: #111;
}
.thesisDetail .aiList__link p {
    margin: 10px 0 0;
    font-size: 15px;
    color: #111;
    font-weight: 500;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.thesisDetail .aiList__nextBtn {
    right: -50px;
}
.thesisDetail .aiList__nextBtn:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 12px;
    top: 24px;
}
.thesisDetail .aiList__prevBtn {
    left: -50px;
}
.thesisDetail .aiList__prevBtn:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 17px;
    top: 24px;
}
.thesisDetail__authorInfo {
    margin-top: 40px;
}
.thesisDetail .authorInfo {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.thesisDetail .authorInfo__link {
    width: 530px;
    height: 180px;
    padding: 20px 20px 20px 88px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 12px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.thesisDetail .authorInfo__link:hover {
    border-color: #aaa;
    text-decoration: none;
}
.thesisDetail .authorInfo__profile {
    position: absolute;
    left: 20px;
    top: 20px;
}
.thesisDetail .authorInfo__name {
    font-size: 16px;
    color: #165c92;
    margin-bottom: 10px;
    font-weight: 700;
}
.thesisDetail .authorInfo__affiliated {
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.thesisDetail .authorInfo__affiliated span {
    width: calc(100% - 100px);
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.thesisDetail .authorInfo__major {
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.thesisDetail .authorInfo__major span {
    width: calc(100% - 100px);
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.thesisDetail .authorInfo__major span:not(:first-of-type) {
    margin-left: 100px;
}
.thesisDetail .authorInfo__major i {
    font-size: 12px;
    color: #cc4736;
    font-style: normal;
}
.thesisDetail .authorInfo__count {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #999;
}
.thesisDetail .authorInfo__count span:not(:last-child) {
    margin-right: 26px;
}
.thesisDetail .authorInfo b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    font-weight: 400;
}
.thesisDetail__list {
    margin-top: 40px;
    position: relative;
}
.thesisDetail .listLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 15px;
    color: #111;
    font-weight: 500;
    padding: 10px;
}
.thesisDetail .listLink:first-of-type {
    margin-top: 10px;
}
.thesisDetail .listLink:hover {
    background-color: #fafafa;
    text-decoration: none;
}
.thesisDetail .listLink:hover .listLink__tit {
    text-decoration: underline;
}
.thesisDetail .listLink__tit {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    color: #111;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.thesisDetail .listLink__etc {
    color: #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 8px;
    font-size: 0;
}
.thesisDetail .listLink__etc span {
    position: relative;
    font-weight: 400;
    font-size: 13px;
}
.thesisDetail .listLink__etc span:not(:first-child):before {
    content: "·";
    font-size: 13px;
    color: #999;
    margin: 0 8px;
}
.thesisDetail__reply {
    margin-top: 40px;
    position: relative;
}
.thesisDetail__reply .reviewList {
    padding: 25px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.thesisDetail__reply .reviewList__txt {
    text-align: center;
    font-size: 15px;
    color: #111;
    padding-top: 25px;
    background: url(/images/common/review-icon.svg) no-repeat 50% 0/25px 21px;
}
.thesisDetail .blockUserWrap {
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    padding: 20px 0;
    top: 66px;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 217px;
}
.thesisDetail .blockUserWrap:before {
    content: "";
    display: block;
    width: 52px;
    height: 45px;
    margin: 0 auto;
    background: url(/images/search/img_noauth_warning.png) no-repeat 50%/cover;
}
.thesisDetail .blockUserWrap__desc {
    font-size: 14px;
    color: #dfdfdf;
    margin-top: 36px;
    line-height: 22px;
}
.thesisDetail .replyWrap {
    margin-top: 30px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.thesisDetail .replyWrap.afterLogin {
    padding-top: 30px;
}
.thesisDetail .replyWrap.afterLogin .replyWrap__user {
    display: block;
}
.thesisDetail .replyWrap.afterLogin .replyWrap__count {
    display: block;
}
.thesisDetail .replyWrap.afterLogin .replyWrap__textarea {
    margin-top: 15px;
}
.thesisDetail .replyWrap__textarea {
    width: 100%;
    height: 120px;
    padding: 20px 20px 0;
    overflow-y: auto;
    font-size: 14px;
    color: #666;
    resize: none;
    outline: none;
}
.thesisDetail .replyWrap__textarea::-webkit-input-placeholder {
    color: #999;
}
.thesisDetail .replyWrap__textarea::-moz-placeholder {
    color: #999;
}
.thesisDetail .replyWrap__textarea:-ms-input-placeholder {
    color: #999;
}
.thesisDetail .replyWrap__textarea::-ms-input-placeholder {
    color: #999;
}
.thesisDetail .replyWrap__textarea::placeholder {
    color: #999;
}
.thesisDetail .replyWrap__textarea:focus::-webkit-input-placeholder {
    color: transparent;
}
.thesisDetail .replyWrap__textarea:focus::-moz-placeholder {
    color: transparent;
}
.thesisDetail .replyWrap__textarea:focus:-ms-input-placeholder {
    color: transparent;
}
.thesisDetail .replyWrap__textarea:focus::-ms-input-placeholder {
    color: transparent;
}
.thesisDetail .replyWrap__textarea:focus::placeholder {
    color: transparent;
}
.thesisDetail .replyWrap__user {
    font-size: 14px;
    color: #666;
    position: absolute;
    left: 20px;
    top: 20px;
    display: none;
}
.thesisDetail .replyWrap__count {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 12px;
    color: #c8c8c8;
}
.thesisDetail .replyWrap__count:after {
    content: "/ 1000 byte";
    margin-left: 5px;
}
.thesisDetail .replyBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 30px;
}
.thesisDetail .replyBtn__t1 {
    font-size: 12px;
    color: #999;
    padding-right: 30px;
    background: url(/images/v2/thesis/ico_q.svg) no-repeat 100% 50%/20px;
    cursor: pointer;
    position: relative;
}
.thesisDetail .replyBtn__t1:hover .dpReplyInfo {
    display: block;
}
.thesisDetail .replyBtn__t2 {
    font-size: 12px;
    color: #999;
}
.thesisDetail .replyBtn__submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 40px;
    border-radius: 2px;
    background-color: #1F8BD8;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 20px;
}
.thesisDetail .replyBtn__submit:hover {
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #165c92;
}
.thesisDetail .replyView {
    min-height: 107px;
    padding: 30px 20px;
    border-top: 1px solid #efefef;
    font-size: 12px;
    color: #666;
    position: relative;
}
.thesisDetail .replyView span {
    color: #999;
}
.thesisDetail .replyView:last-of-type {
    border-bottom: 1px solid #efefef;
}
.thesisDetail .replyView__comment {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    width: 95%;
}
.thesisDetail .replyView__user {
    margin-right: 20px;
}
.thesisDetail .replyView__btnWrap {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 22px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.thesisDetail .replyView__btnWrap i {
    display: block;
    width: 3px;
    height: 3px;
    background-color: #707070;
}
.thesisDetail .replyView__btnWrap i:before, .thesisDetail .replyView__btnWrap i:after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #707070;
}
.thesisDetail .replyView__btnWrap i:before {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}
.thesisDetail .replyView__btnWrap i:after {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
}
.thesisDetail .replyView__btnWrap:hover .replyView__btnList {
    display: block;
}
.thesisDetail .replyView__btnList {
    display: none;
    position: absolute;
    top: 7px;
    right: 20px;
    width: 60px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.thesisDetail .replyView__btn {
    font-size: 12px;
    text-align: center;
    display: block;
    width: 100%;
    color: #666;
    height: 26px;
    line-height: 26px;
    background-color: #fff;
    cursor: pointer;
}
.thesisDetail .replyView__btn:hover {
    text-decoration: none;
    background-color: #f6f6f6;
}
.thesisDetail .replyView .replyWrap__textarea {
    height: 73px;
}
.thesisDetail .noData {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin: 20px auto;
    padding: 16px 22px 8px;
}
.thesisDetail .noData.pcLink {
    color: #3C63E0;
}
.thesisDetail .btnAll {
    display: block;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    padding-right: 20px;
    position: relative;
    text-decoration: underline;
    cursor: pointer;
}
.thesisDetail .btnAll:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #666;
    border-left: 0;
    border-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 0;
}
.thesisDetail .actLink {
    font-size: 12px;
    color: #bfbfbf;
    padding-right: 10px;
    position: absolute;
    right: 0;
    top: 10px;
}
.thesisDetail .actLink:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border: 1px solid #bfbfbf;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 0;
    top: 6px;
}
.thesisDetail .beltBanner {
    margin-top: 30px;
}
.thesisDetail .beltBanner img {
    width: 100%;
}
.thesisDetail .scrollWrap {
    overflow-x: hidden;
    max-width: 1080px;
}
.thesisDetail__xmlImg {
    margin-top: 40px;
    position: relative;
}
.thesisDetail__xmlImg .slideCount {
    position: absolute;
    right: 0;
    top: 0;
    color: #666;
    font-size: 14px;
}
.thesisDetail .xmlImgWrap {
    margin-top: 20px;
    overflow-x: auto;
}
.thesisDetail .xmlImgWrap__list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.thesisDetail .xmlImgWrap__item {
    width: 255px;
    height: 212px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
}
.thesisDetail .xmlImgWrap__item:hover {
    border: 1px solid #C8C8C8;
    border-radius: 20px;
}
.thesisDetail .xmlImgWrap__item:hover .xmlImgWrap__tit {
    text-decoration: underline;
}
.thesisDetail .xmlImgWrap__img {
    width: 215px;
    height: 140px;
}
.thesisDetail .xmlImgWrap__tit {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
    color: #111;
}
.thesisDetail .xmlImgWrap [class$=Btn] {
    display: block;
    width: 40px;
    height: 60px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    position: absolute;
    background-color: #FFF;
    top: 50%;
    cursor: pointer;
}
.thesisDetail .xmlImgWrap [class$=Btn]:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #000;
    border-left: 0;
    border-top: 0;
    position: absolute;
}
.thesisDetail .xmlImgWrap__nextBtn {
    right: -50px;
}
.thesisDetail .xmlImgWrap__nextBtn:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 12px;
    top: 24px;
}
.thesisDetail .xmlImgWrap__prevBtn {
    left: -50px;
}
.thesisDetail .xmlImgWrap__prevBtn:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 17px;
    top: 24px;
}
.thesisDetail .xmlWrap {
    margin-top: 40px;
}
.thesisDetail .xmlWrap__cont:not(:first-child) {
    margin-top: 33px;
}
.thesisDetail .xmlWrap__tit {
    font-size: 18px;
    color: #111;
    padding-bottom: 11px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 15px;
}
.thesisDetail .xmlWrap__stit {
    font-size: 16px;
    margin: 20px 0 10px;
    padding-left: 18px;
    color: #111;
}
.thesisDetail .xmlWrap__txt {
    padding-left: 18px;
    color: #666;
    font-size: 14px;
    line-height: 26px;
    word-break: break-all;
}
.thesisDetail .xmlWrap__txt + .xmlWrap__txt {
    margin-top: 20px;
}
.thesisDetail .xmlWrap__txt + .xmlWrap__figure {
    margin-top: 20px;
}
.thesisDetail .xmlWrap__figure {
    padding-left: 18px;
    margin-bottom: 20px;
}
.thesisDetail .xmlWrap__figureDescription {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 18px;
    font-size: 14px;
}
.thesisDetail .xmlWrap__tableDescription {
    font-size: 14px;
    padding-left: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.thesisDetail .xmlWrap__table {
    padding-left: 18px;
    margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
    .thesisDetail .xmlWrap__table {
        overflow-x: auto;
    }
}
.thesisDetail .xmlWrap__table table {
    width: 100%;
    table-layout: fixed;
    border: 0 none;
    border-spacing: 0;
    border-collapse: collapse;
}
@media screen and (max-width: 960px) {
    .thesisDetail .xmlWrap__table table {
        table-layout: auto;
    }
}
.thesisDetail .xmlWrap__table th, .thesisDetail .xmlWrap__table td {
    border: 0;
}
@media screen and (max-width: 960px) {
    .thesisDetail .xmlWrap__table th, .thesisDetail .xmlWrap__table td {
        white-space: nowrap;
    }
}
.thesisDetail .xmlWrap__table th {
    padding: 10px 5px;
    text-align: center;
    color: #111;
    background: #fafafa;
    vertical-align: middle;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #e9e9e9;
    font-weight: 500;
    font-size: 13px;
}
.thesisDetail .xmlWrap__table td {
    padding: 9px 11px 10px;
    color: #111;
    font-size: 13px;
    vertical-align: middle;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    text-align: center;
    position: relative;
}
.thesisDetail .xmlWrap__table td:first-child {
    border-left: 0;
}
.thesisDetail disp-formula {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #111;
    padding-left: 18px;
}
.thesisDetail .thesis__toggle {
    display: none;
}

.uciBot {
    color: #c8c8c8;
    font-size: 11px;
    text-align: right;
    padding: 10px 5px;
    margin-bottom: 60px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

@-webkit-keyframes typing {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes typing {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@media screen and (max-width: 359px) {
    .thesisDetail__btnWrap .aiChatBtn span {
        background: none;
        padding-left: 0px !important;
    }
    .thesisDetail__btnWrap .aiChatBtn:after {
        display: none;
    }
    .thesisDetail__btnWrap .personalBtn .inner .aiChatBtn {
        padding: 0px;
    }
}
@media screen and (max-width: 960px) {
    .thesisDetail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
    .thesisDetail > section {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .thesisDetail > section:where(.thesisDetail__head, .thesisDetail__info, .thesisDetail__btnWrap) {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .thesisDetail > section:where(.beltBanner) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .thesisDetail__head {
        padding: 0 16px;
    }
    .thesisDetail__head p {
        font-size: 12px;
    }
    .thesisDetail__abs {
        color: #666;
        margin-bottom: 10px;
    }
    .thesisDetail__keyword {
        padding-bottom: 20px;
        border-bottom: 1px solid #efefef;
    }
    .thesisDetail__tit {
        font-size: 18px;
        min-height: 25px;
    }
    .thesisDetail__tit span {
        font-size: 12px;
    }
    .thesisDetail__info {
        background-color: #fff;
        position: relative;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .thesisDetail__info::after {
        display: none;
    }
    .thesisDetail__info .info__h2 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .thesisDetail__author {
        width: 100%;
        padding: 20px 16px;
        position: relative;
    }
    .thesisDetail__journal {
        width: 100%;
        padding: 20px 16px 0;
    }
    .thesisDetail__cover {
        display: none;
    }
    .thesisDetail .authorList {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .thesisDetail .authorList__item:not(:last-child) {
        margin-bottom: 10px;
    }
    .thesisDetail .authorList__link {
        font-size: 12px;
        color: #3C63E0;
        position: absolute;
        cursor: pointer;
        top: 22px;
        right: 16px;
    }
    .thesisDetail .journalList {
        font-size: 13px;
    }
    .thesisDetail .journalList__item {
        color: #666;
    }
    .thesisDetail .journalList__item:not(:last-child) {
        margin-bottom: 8px;
    }
    .thesisDetail .journalList__link {
        font-size: 13px;
        color: #3C63E0;
        position: relative;
    }
    .thesisDetail__etc {
        margin-top: 0;
        padding: 20px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 26px;
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }
    .thesisDetail__etc > div {
        font-size: 13px;
    }
    .thesisDetail__etc > div:not(:last-child) {
        margin-right: 0;
    }
    .thesisDetail__btnWrap {
        padding: 10px 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        background-color: rgba(196, 196, 196, 0.1);
        z-index: 20;
    }
    .thesisDetail__btnWrap button[class$=Btn] {
        font-size: 14px;
        min-width: 100px;
    }
    .thesisDetail__btnWrap button[class$=Btn] span.pc {
        display: none;
    }
    .thesisDetail__btnWrap button[class$=Btn] span.m {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .thesisDetail__btnWrap #quoteBtn {
        display: none;
    }
    .thesisDetail__btnWrap .quoteOptionBtn {
        background-color: #1F8BD8;
        border-color: #1F8BD8;
    }
    .thesisDetail__btnWrap .quoteOptionBtn:hover {
        background-color: #165C92;
    }
    .thesisDetail__btnWrap .shareBtn {
        color: #939495;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .thesisDetail__btnWrap button.shareBtn {
        min-width: fit-content;
    }
    .thesisDetail__btnWrap button.shareBtn > img {
        margin-right: 0;
    }
    .thesisDetail__btnWrap .libraryMobileBtn {
        display: block;
    }
    .thesisDetail__btnWrap .libraryMobileBtn .inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        padding: 0px 10px;
        width: 100%;
    }
    .thesisDetail__btnWrap .libraryMobileBtn .inner > button {
        min-width: auto;
    }
    .thesisDetail__btnWrap .libraryMobileBtn .inner .libraryBtn {
        display: block; /* ITSM-8204 none 처리 */
        min-width: unset;
        width: 42px;
        font-size: 0;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        border: 1px solid #cccccc;
        background: #ffffff url('/images/v2/btn/ico_bookmark.svg') no-repeat 50% 50%/16px 16px;
        padding: 12px;
    }
    .thesisDetail__btnWrap .libraryMobileBtn .inner .libraryBtn span {
        background: none;
    }
    .thesisDetail__btnWrap .libraryMobileBtn .inner .libraryBtn.addBtn {
        border: 1px solid #db3a3f;
        background: url(/images/v2/btn/ico_library_add.svg) no-repeat 50% 50%/16px 16px;
    }
    .thesisDetail__btnWrap .personalBtn {
        z-index: 20;
        position: fixed;
        left: 0;
        bottom: 0;
        margin-left: 0;
        width: 100%;
        background-color: #fff;
    }
    .thesisDetail__btnWrap .personalBtn .inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        padding: 10px 16px;
        width: 100%;
    }
    .thesisDetail__btnWrap .personalBtn .inner > button {
        min-width: auto;
    }
    .thesisDetail__btnWrap .personalBtn .inner > button span {
        line-height: inherit;
    }
    .thesisDetail__btnWrap .personalBtn .inner .libraryBtn {
        display: none; /* ITSM-8204 none 처리 */
        min-width: unset;
        width: 50px;
        font-size: 0;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        border: 1px solid #ccc;
        background: url(/images/v2/btn/ico_library.svg) no-repeat 50% 50%/26px 26px;
    }
    .thesisDetail__btnWrap .personalBtn .inner .libraryBtn span {
        background: none;
    }
    .thesisDetail__btnWrap .personalBtn .inner .libraryBtn.addBtn {
        border: 1px solid #db3a3f;
        background: url(/images/v2/btn/ico_library_add.svg) no-repeat 50% 50%/26px 26px;
    }
    .thesisDetail__btnWrap .personalBtn .inner .downBtn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: 0px solid #db3a3f;
    }
    .thesisDetail__btnWrap .personalBtn .inner .pdfBtn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: 1px solid #db3a3f;
        background: #db3a3f;
    }
    .thesisDetail__btnWrap .personalBtn .inner .gistBtn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: 1px solid #333;
        background: linear-gradient(79deg, #A430FF 11.57%, #DB3A3F 80.97%);
    }
    .thesisDetail__btnWrap .personalBtn .inner .gistBtn span {
        letter-spacing: -1.2px;
    }
    .thesisDetail__btnWrap .personalBtn .inner .gistBtn__tooltip {
        width: 119px;
        left: auto;
    }
    .thesisDetail__btnWrap .personalBtn .inner .aiChatBtn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: 0px solid #db3a3f;
    }
    .thesisDetail__btnWrap .personalBtn .inner .linkBtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .thesisDetail__btnWrap .personalBtn .inner .linkBtn.disabled {
        border-color: #666;
        background-color: #666;
    }
    .thesisDetail__btnWrap .personalBtn .linkBtn {
        display: none;
    }
    .thesisDetail__btnWrap .txt {
        display: none;
    }
    .thesisDetail__btnWrap .libraryBtn__mobile {
        display: block;
    }
    .thesisDetail__h2 {
        padding-bottom: 0;
        font-size: 16px;
    }
    .thesisDetail__h2:after {
        display: none;
    }
    .thesisDetail__stxt {
        font-size: 14px;
    }
    .thesisDetail__abstract {
        margin-top: 0;
        padding: 20px 16px 0;
    }
    .thesisDetail__abstract:after {
        content: "";
        display: block;
        width: calc(100% + 32px);
        margin: 20px -16px 0;
        height: 8px;
        background-color: #F7F7F7;
    }
    .thesisDetail__abstract .abstractTxt {
        font-size: 13px;
        max-height: 350px;
        word-break: break-all;
    }
    .thesisDetail__abstract .abstractTxt:after {
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(#FFFFFF));
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .thesisDetail__abstract .abstractTxt .actLink {
        display: none;
    }
    .thesisDetail__abstract .keywordWrap {
        margin-top: 34px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
    }
    .thesisDetail__abstract .keywordWrap__keyword {
        padding: 7px 21px;
        border-radius: 32px;
        font-size: 13px;
    }
    .thesisDetail__abstract .actLink {
        display: none;
    }
    .thesisDetail__order {
        margin-top: 0;
        padding: 20px 16px 0;
    }
    .thesisDetail__order:after {
        content: "";
        display: block;
        width: calc(100% + 32px);
        margin: 20px -16px 0;
        height: 8px;
        background-color: #F7F7F7;
    }
    .thesisDetail__order .orderList {
        font-size: 13px;
    }
    .thesisDetail__reference {
        margin-top: 0;
        padding: 20px 16px 0;
        position: relative;
    }
    .thesisDetail__reference .referenceLink {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 0;
    }
    .thesisDetail__reference .referenceLink:last-of-type {
        margin-bottom: 0;
    }
    .thesisDetail__reference .referenceLink:before {
        display: none;
    }
    .thesisDetail__reference .loginBtn {
        margin-top: 20px;
        font-size: 12px;
    }
    .thesisDetail__reference .actLink {
        display: none;
    }
    .thesisDetail__reference:after {
        content: "";
        display: block;
        width: calc(100% + 32px);
        margin: 20px -16px 0;
        height: 8px;
        background-color: #F7F7F7;
    }
    .thesisDetail__precedent {
        margin-top: 0;
        padding: 20px 0 20px 16px;
    }
    .thesisDetail__precedent .slideCount {
        display: none;
    }
    .thesisDetail__precedent [class$=Btn] {
        display: block;
        width: 40px;
        height: 60px;
        border-radius: 3px;
        border: 1px solid #ebebeb;
        position: absolute;
        top: 40%;
        cursor: pointer;
    }
    .thesisDetail__precedent [class$=Btn]:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        border: 2px solid #000;
        border-left: 0;
        border-top: 0;
        position: absolute;
    }
    .thesisDetail .precedentList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        width: auto;
        padding: 20px 20px 0 0;
        overflow: auto;
    }
    .thesisDetail .precedentList__item {
        width: 220px;
        height: 250px;
        border: 1px solid #E0E0E0;
        border-radius: 12px;
        padding: 20px;
        position: relative;
    }
    .thesisDetail .precedentList__item:hover {
        background-color: #fafafa;
        border-color: #aaa;
    }
    .thesisDetail .precedentList__num {
        font-size: 15px;
        color: #111;
        line-height: 1.7;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .thesisDetail .precedentList__gist {
        margin-top: 10px;
        font-size: 13px;
        color: #999;
        line-height: 1.4;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }
    .thesisDetail .precedentList__link {
        font-size: 12px;
        color: #3C63E0;
        position: absolute;
        right: 20px;
        bottom: 20px;
        padding-right: 10px;
    }
    .thesisDetail .precedentList__link:after {
        position: absolute;
        right: 0;
        top: 5px;
        content: "";
        display: block;
        width: 5px;
        height: 8px;
        background: url(/images/v2/thesis/ico_arrow_round.svg) no-repeat 100% 50%/4.5px 8px;
    }
    .thesisDetail .precedentList__nextBtn {
        display: none;
    }
    .thesisDetail .precedentList__prevBtn {
        display: none;
    }
    .thesisDetail__together {
        background: #FAFAFA;
        position: relative;
        margin-top: 0;
        padding: 20px 0 0 16px;
    }
    .thesisDetail__together::after {
        display: none;
    }
    .thesisDetail__together .recommendThesis {
        margin-top: 0;
        padding: 20px 20px 30px 0;
        width: auto;
        overflow-x: auto;
        overflow: auto;
        scrollbar-width: none;
    }
    .thesisDetail__together .recommendThesis::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
    .thesisDetail__together .recommendThesis__link {
        width: 170px;
        height: 190px;
        padding: 20 17 pxpx;
        border: 1px solid rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        font-size: 12px;
    }
    .thesisDetail__together .recommendThesis__link:hover {
        -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }
    .thesisDetail__together .recommendThesis__info {
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    .thesisDetail__together .recommendThesis__journal {
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .thesisDetail__ai {
        background: #F8F8F8;
        position: relative;
        margin: 0;
        padding: 30px 0 30px 16px;
    }
    .thesisDetail__ai::after {
        display: none;
    }
    .thesisDetail__ai .thesisDetail__h2 {
        padding-bottom: 0;
    }
    .thesisDetail__ai .thesisDetail__h2:after {
        display: none;
    }
    .thesisDetail__ai .slideCount {
        display: none;
    }
    .thesisDetail__ai [class$=Btn] {
        display: block;
        width: 40px;
        height: 60px;
        border-radius: 3px;
        border: 1px solid #ebebeb;
        position: absolute;
        background-color: #FFF;
        top: 50%;
        cursor: pointer;
    }
    .thesisDetail__ai [class$=Btn]:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        border: 2px solid #000;
        border-left: 0;
        border-top: 0;
        position: absolute;
    }
    .thesisDetail .aiContainer {
        padding: 0;
    }
    .thesisDetail .aiList {
        overflow: auto;
        padding: 15px 16px 15px 0;
        scrollbar-width: none;
    }
    .thesisDetail .aiList::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
    .thesisDetail .aiList__nextBtn {
        display: none;
    }
    .thesisDetail .aiList__prevBtn {
        display: none;
    }
    .thesisDetail .aiList__item {
        width: 190px;
        height: 300px;
        padding: 20px 16px;
    }
    .thesisDetail .aiList__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .thesisDetail .aiList__link img {
        width: 135px;
        height: 180px;
        margin: 0 auto;
    }
    .thesisDetail .aiList__link:hover {
        color: #111;
    }
    .thesisDetail .aiList__link p {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        word-break: break-all;
    }
    .thesisDetail__authorInfo {
        margin-top: 40px;
        padding: 0 16px;
    }
    .thesisDetail__authorInfo:after {
        content: "";
        display: block;
        width: calc(100% + 32px);
        margin: 20px -16px 0;
        height: 8px;
        background-color: #F7F7F7;
    }
    .thesisDetail .authorInfo {
        margin: 20px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
    .thesisDetail .authorInfo__link {
        width: 100%;
        height: auto;
        padding: 20px 17px;
    }
    .thesisDetail .authorInfo__item {
        width: 100%;
        height: auto;
        padding: 0;
    }
    .thesisDetail .authorInfo__item:hover {
        border-color: #aaa;
    }
    .thesisDetail .authorInfo__profile {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 24px;
        height: 24px;
    }
    .thesisDetail .authorInfo__name {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 0;
        color: #165c92;
        margin-left: 35px;
    }
    .thesisDetail .authorInfo__affiliated {
        font-size: 13px;
        width: auto;
        margin-top: 10px;
        margin-bottom: 20px;
        margin-left: 35px;
    }
    .thesisDetail .authorInfo__affiliated span {
        width: calc(100% - 100px);
        text-overflow: clip;
        overflow: visible;
        word-break: break-word;
        display: block;
    }
    .thesisDetail .authorInfo__major {
        font-size: 13px;
        margin-left: 35px;
    }
    .thesisDetail .authorInfo__major span {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .thesisDetail .authorInfo__major span:not(:first-of-type) {
        margin-left: 0;
        margin-top: 3px;
    }
    .thesisDetail .authorInfo__major i {
        font-size: 12px;
        color: #cc4736;
    }
    .thesisDetail .authorInfo__count {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 12px;
        padding-left: 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
    }
    .thesisDetail .authorInfo__count span:not(:last-child) {
        margin-right: 0;
    }
    .thesisDetail .authorInfo b {
        display: none;
    }
    .thesisDetail__list {
        margin-top: 0;
        padding: 20px 16px 0;
        position: relative;
    }
    .thesisDetail__list:after {
        content: "";
        display: block;
        width: calc(100% + 32px);
        margin: 20px -16px 0;
        height: 8px;
        background-color: #F7F7F7;
    }
    .thesisDetail .listLink {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
        font-size: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid #efefef;
        margin-bottom: 10px;
    }
    .thesisDetail .listLink:first-of-type {
        margin-top: 20px;
    }
    .thesisDetail .listLink__tit {
        width: 100%;
        margin-bottom: 5px;
        font-weight: 500;
        font-size: 14px;
    }
    .thesisDetail .listLink__etc {
        color: #999;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        margin-top: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .thesisDetail .listLink__etc span {
        font-size: 12px;
    }
    .thesisDetail__reply {
        margin-top: 0;
        padding: 30px 20px;
    }
    .thesisDetail__reply .reviewList__txt {
        font-size: 13px;
    }
    .thesisDetail .blockUserWrap {
        top: 82px;
        width: calc(100% - 40px);
        height: 232px;
    }
    .thesisDetail .blockUserWrap__desc {
        padding: 0 20px;
        font-size: 12px;
    }
    .thesisDetail .replyWrap {
        margin-top: 30px;
        position: relative;
        border: 1px solid #ccc;
        border-radius: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
    }
    .thesisDetail .replyWrap.afterLogin {
        padding-top: 30px;
    }
    .thesisDetail .replyWrap.afterLogin .replyWrap__user {
        display: block;
    }
    .thesisDetail .replyWrap.afterLogin .replyWrap__count {
        display: block;
    }
    .thesisDetail .replyWrap.afterLogin .replyWrap__textarea {
        margin-top: 14px;
    }
    .thesisDetail .replyWrap__textarea {
        width: 100%;
        height: 120px;
        padding: 20px 20px 0;
        overflow-y: auto;
        font-size: 14px;
        color: #666;
        resize: none;
    }
    .thesisDetail .replyWrap__textarea::-webkit-input-placeholder {
        color: #999;
        font-size: 13px;
    }
    .thesisDetail .replyWrap__textarea::-moz-placeholder {
        color: #999;
        font-size: 13px;
    }
    .thesisDetail .replyWrap__textarea:-ms-input-placeholder {
        color: #999;
        font-size: 13px;
    }
    .thesisDetail .replyWrap__textarea::-ms-input-placeholder {
        color: #999;
        font-size: 13px;
    }
    .thesisDetail .replyWrap__textarea::placeholder {
        color: #999;
        font-size: 13px;
    }
    .thesisDetail .replyWrap__user {
        font-size: 14px;
        color: #666;
        position: absolute;
        left: 20px;
        top: 20px;
        display: none;
    }
    .thesisDetail .replyWrap__count {
        display: none;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 12px;
        color: #c8c8c8;
    }
    .thesisDetail .replyWrap__count:after {
        content: "/ 1000 byte";
        margin-left: 5px;
    }
    .thesisDetail .replyBtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .thesisDetail .replyBtn__t1 {
        font-size: 12px;
        color: #999;
        padding-right: 30px;
        background: url(/images/v2/thesis/ico_q.svg) no-repeat 100% 50%/20px;
        cursor: pointer;
    }
    .thesisDetail .replyBtn__t2 {
        font-size: 12px;
        color: #999;
    }
    .thesisDetail .replyBtn__submit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100px;
        height: 40px;
        border-radius: 2px;
        background-color: #1F8BD8;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        margin-left: 20px;
    }
    .thesisDetail .replyView {
        min-height: 107px;
        padding: 30px 0;
        border-top: 1px solid #efefef;
        font-size: 12px;
        color: #666;
        position: relative;
    }
    .thesisDetail .replyView span {
        color: #999;
    }
    .thesisDetail .replyView:last-of-type {
        border-bottom: 1px solid #efefef;
    }
    .thesisDetail .replyView__comment {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        width: 95%;
    }
    .thesisDetail .replyView__user {
        margin-right: 20px;
    }
    .thesisDetail .replyView__btnWrap {
        position: absolute;
        top: 30px;
        right: 10px;
        width: 22px;
        height: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
        z-index: 10;
    }
    .thesisDetail .replyView__btnWrap i {
        display: block;
        width: 3px;
        height: 3px;
        background-color: #707070;
    }
    .thesisDetail .replyView__btnWrap i:before, .thesisDetail .replyView__btnWrap i:after {
        content: "";
        display: block;
        width: 3px;
        height: 3px;
        background-color: #707070;
    }
    .thesisDetail .replyView__btnWrap i:before {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    .thesisDetail .replyView__btnWrap i:after {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
    .thesisDetail .replyView__btnWrap:hover .replyView__btnList {
        display: block;
    }
    .thesisDetail .replyView__btnList {
        display: none;
        position: absolute;
        top: 7px;
        right: 20px;
        width: 60px;
        border: 1px solid #ccc;
        border-radius: 3px;
    }
    .thesisDetail .replyView__btn {
        font-size: 12px;
        text-align: center;
        display: block;
        width: 100%;
        color: #666;
        height: 26px;
        line-height: 26px;
        background-color: #fff;
        cursor: pointer;
    }
    .thesisDetail .replyView__btn:hover {
        text-decoration: none;
        background-color: #f6f6f6;
    }
    .thesisDetail .replyView .replyWrap__textarea {
        height: 73px;
    }
    .thesisDetail .noData {
        display: block;
        text-align: center;
        font-size: 14px;
        color: #666666;
        margin: 20px auto;
        padding: 16px 22px 8px;
    }
    .thesisDetail .noData.pcLink {
        color: #666666;
        pointer-events: none;
    }
    .thesisDetail .btnAll {
        display: block;
        margin: 0 auto;
        font-size: 13px;
        font-weight: 700;
        color: #666;
        padding-right: 20px;
        position: relative;
        text-decoration: underline;
        cursor: pointer;
    }
    .thesisDetail .btnAll:after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        border: 1px solid #666;
        border-left: 0;
        border-top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        right: 0;
        top: 3px;
    }
    .thesisDetail .actLink {
        right: 16px;
        top: 20px;
    }
    .thesisDetail .beltBanner {
        margin-top: 0;
    }
    .thesisDetail .scrollWrap {
        overflow-x: hidden;
        width: 100%;
    }
    .thesisDetail__xmlImg {
        padding: 0 16px;
    }
    .thesisDetail__xmlImg .slideCount {
        display: none;
    }
    .thesisDetail .xmlImgWrap__item {
        width: 240px;
        height: 200px;
    }
    .thesisDetail .xmlImgWrap__img {
        width: 202px;
        height: 132px;
    }
    .thesisDetail .xmlImgWrap [class$=Btn] {
        display: none;
    }
    .thesisDetail .xmlWrap {
        margin-top: 20px;
        padding: 0 16px;
    }
    .thesisDetail .xmlWrap:after {
        content: "";
        display: block;
        width: calc(100% + 32px);
        margin: 20px -16px 0;
        height: 8px;
        background-color: #F7F7F7;
    }
    .thesisDetail .xmlWrap__cont:not(:first-child) {
        margin-top: 20px;
    }
    .thesis__toggle {
        width: 266px;
        height: 72px;
        border: none;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 8px;
        color: #fff;
        text-align: center;
        position: fixed;
        top: 70%;
        bottom: 200px;
        z-index: 9999;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 16px;
        font-weight: 500;
        padding-left: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: none;
    }
    .thesis__toggle:before {
        display: none;
    }
    .thesis__toggle.on {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-animation-delay: 0s, 1.5s;
        animation-delay: 0s, 1.5s;
        -webkit-animation-name: toggle-in, toggle-out;
        animation-name: toggle-in, toggle-out;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    @-webkit-keyframes toggle-in {
        from {
            opacity: 0;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            pointer-events: none;
            z-index: -1;
        }
        to {
            opacity: 1;
            -webkit-transform: translate(-50%, -10px);
            transform: translate(-50%, -10px);
            pointer-events: auto;
            z-index: 9999;
        }
    }
    @keyframes toggle-in {
        from {
            opacity: 0;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            pointer-events: none;
            z-index: -1;
        }
        to {
            opacity: 1;
            -webkit-transform: translate(-50%, -10px);
            transform: translate(-50%, -10px);
            pointer-events: auto;
            z-index: 9999;
        }
    }
    @-webkit-keyframes toggle-out {
        from {
            opacity: 1;
            -webkit-transform: translate(-50%, -10px);
            transform: translate(-50%, -10px);
            pointer-events: auto;
            z-index: 9999;
        }
        to {
            opacity: 0;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            pointer-events: none;
            z-index: -1;
        }
    }
    @keyframes toggle-out {
        from {
            opacity: 1;
            -webkit-transform: translate(-50%, -10px);
            transform: translate(-50%, -10px);
            pointer-events: auto;
            z-index: 9999;
        }
        to {
            opacity: 0;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            pointer-events: none;
            z-index: -1;
        }
    }
    .thesis__toggle.add {
        border-color: #EF4348;
    }
    .thesis__toggle.add:before {
        border-color: #EF4348;
    }
    .thesis__toggle.second {
        display: none;
    }
}
/* ShinYS 추가 */
.thesisDetail .btnAll.open {
    margin-top: 20px;
}

.thesisDetail .btnAll.open:after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 8px;
}

/* 0. 이 논문의 연구 히스토리 open */
.thesisDetail__history[data-open=open] .historyList {
    max-height: initial;
}

.thesisDetail__history[data-open=open] .historyList:after {
    content: none;
}

/* 1. 초록키워드 open */
.thesisDetail__abstract[data-open=open] .abstractTxt {
    max-height: initial;
}

.thesisDetail__abstract[data-open=open] .abstractTxt:after {
    content: none;
}

/* 2. 이 논문의 저자 정보 open */
.thesisDetail__authorInfo .authorInfo__item:nth-child(n+5) {
    display: none;
}

.thesisDetail__authorInfo[data-open=open] .authorInfo__item:nth-child(n+5) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* 3. 참고문헌 open */
.thesisDetail__reference .referenceLink:nth-child(n+6) {
    display: none;
}

.thesisDetail__reference[data-open=open] .referenceLink:nth-child(n+6) {
    display: block;
}

/* 4. 이 논문을 인용한 논문 open */
#quotList .listLink:nth-child(n+6) {
    display: none;
}

#quotList[data-open=open] .listLink:nth-child(n+6) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* 5. 댓글 */
#replyBox .replyWrap span.replyWrap__masked {
    color: #666;
    font-weight: 400;
}

#replyBox .replyWrap span.replyWrap__dept {
    margin-left: 7px;
    font-weight: 300;
    color: #999;
}

#replyBox .replyView span.replyWrap__dept {
    margin-left: 7px;
}

#replyBox .replyView.hidden {
    display: none;
}

/* 댓글 수정창 숨기기 */
#replyBox .replyView .replyWrap, #replyBox .replyView .replyBtn {
    display: none;
}

/* 댓글 수정창 열기 */
#replyBox .replyView[open] .replyWrap, #replyBox .replyView[open] .replyBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* 댓글 더보기 추가 */
#replyMore {
    display: block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 60px;
}/*# sourceMappingURL=thesis_basic.css.map */
/* ---- ITSM-9464 추천 논문 추가 노출건으로 차주에 scss로 작업할 예정입니다. 2024.06.27----- */
/* [ITSM-9464] 추천 논문 추가 노출 css 누락 된 부분 추가 이미 운영에 적용되고있어서 임시로 추가 후 scss로 작업 한뒤 반영예정 */
#recommandSlider .nuriSlider__btnContainer [class$=Btn]:not(div) {
    position: absolute;
    top: 54%;
    width: 42px;
    height: 42px;
    border: 1px solid #DCDADA;
    border-radius: 50%;
    background-color: #fff;
}

#recommandSlider .nuriSlider__btnContainer [class$=Btn]:not(div):disabled {
    opacity: 0;
}

#recommandSlider .nuriSlider__btnContainer [class$=Btn]:not(div):before {
    content: "";
    display: block;
    position: absolute;
    top: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #BCBCBC;
    border-bottom: 2px solid #BCBCBC;
}

#recommandSlider .nuriSlider__btnContainer .nuriSlider__nextBtn {
    right: -64px;
}

#recommandSlider .nuriSlider__btnContainer .nuriSlider__nextBtn:before {
    right: 17px;
    transform: rotate(-45deg);
}

#recommandSlider .nuriSlider__btnContainer .nuriSlider__prevBtn {
    left: -64px;
}

#recommandSlider .nuriSlider__btnContainer .nuriSlider__prevBtn:before {
    transform: rotate(135deg);
    right: 12px;
}

#recommandSlider .nuriSlider__btnContainer button {
    cursor: pointer;
}

#recommandSlider .nuriSlider__list {
    background-color: initial !important;
}

#recommandSlider .nuriSlider__item {
    width: auto !important;
}