@charset "UTF-8";
@import url(variables.css);
@import url(menu.css);

/* ======================================================================

   [CSS수정 작업 유의사항]
   반응형작업(320/360/375/414/480/678/1024/1280/pc)으로 작업되어있으니
   해당 brackpoint 영역별로 수정이 필요

    N2 dev 0605
   ====================================================================== */

header {
    position: fixed;
    width: 100%;
    height: 80px;
    transition: all 0.2s ease;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: var(--white);
    border-bottom: 1px solid  var(--black-30);
}
header .header-wrap {
    height: 100%;
}
header .header-wrap .gnb-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 0 50px;
}
header .header-wrap .gnb-wrap a.logo {
    display: inline-block;
    padding: 2px;
    background-size: contain;
    -ms-background-position-x: -50px;
}
header .header-wrap .gnb-wrap a.logo h1 {
    height: 36px;
    font-size: 1.365rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #706f72;
    margin-left: 128px;
    padding-top: 8px;
}
header .header-wrap .gnb-wrap .menu-wrap {
    display: flex;
    justify-content: space-between;
    right: 40px;
    width: calc(80% - 300px);
    height: 80px;
}
header .header-wrap .gnb-wrap .menu-wrap .btn-menu {
    display: none;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth .m-menu {
    display: none;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth .btn-close {
    display: none;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    width: auto;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li {
    position: relative;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-first-depth {
    display: block;
    white-space: nowrap;
    padding: 0 25px;
    font-size: 1.125em;
    font-weight: 600;
    height: 80px;
    line-height: 80px;
    color: #444444;
    transition: all 0.3s ease;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-first-depth::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #047099;
    transition: all 0.3s ease;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-first-depth:hover {
    color: #047099 !important;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-first-depth:hover::after {
    content: "";
    width: 100%;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-has-sub {
    display: none;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li .second-menu {
    display: none;
    position: absolute;
    top: 79px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li .second-menu a {
    display: block;
    padding: 10px;
    line-height: 15px;
    font-weight: 400;
    color: inherit;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li .second-menu a:hover, header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li .second-menu a:focus, header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li .second-menu a:active {
    color: #047099;
}
header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li .second-menu .third-menu {
    display: none;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area {
    display: flex;
    justify-content: right;
    padding: 24px 0;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .btn-pages01 {
    white-space: nowrap;
    border-radius: 10px;
    border: 1px solid #047099;
    font-weight: 600;
    padding: 4px 20px;
    font-size: 0.875rem;
    color: #047099;
    transition: all 0.3s ease;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .btn-pages01:hover {
    background-color: #047099;
    color: #fff !important;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join {
    display: inline-flex;
    margin-left: 10px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .conform-count {
    font-size: 0.8125rem;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .conform-count .count {
    font-size: 10px;
    color: #444444 !important;
    padding: 0 5px;
    line-height: 10px;
    border-radius: 5px;
    text-align: center;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join a, header .header-wrap .gnb-wrap .menu-wrap .right-area .join span, header .header-wrap .gnb-wrap .menu-wrap .right-area .join button {
    color: #444;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join a:hover, header .header-wrap .gnb-wrap .menu-wrap .right-area .join span:hover, header .header-wrap .gnb-wrap .menu-wrap .right-area .join button:hover {
    color: #047099;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .login {
    font-size: 1.125rem;
    padding: 0 10px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .login i::before {
    font-weight: bold;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .login:hover {
    background-color: #ebf4f7;
    border-radius: 5px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .logout {
    font-size: 1.125rem;
    height: 2rem;
    line-height: 2rem;
    padding: 0 10px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .logout i::before {
    font-weight: bold;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .logout:hover {
    background-color: #ebf4f7;
    border-radius: 5px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .memeberID {
    display: flex;
    padding: 0 10px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .memeberID i::before {
    line-height: 31px;
    font-size: 1.25rem;
    font-weight: bold;
    color: inherit;
    font-style: normal;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .memeberID i::before:hover {
    color: #047099;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .memeberID:hover {
    background-color: #ebf4f7;
    border-radius: 5px;
    color: #047099;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .memeberID .members {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    font-size: 0.8125rem !important;
    padding: 0 0 0 5px;
    line-height: 30px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .register {
    font-size: 0.8125rem !important;
    padding: 0 10px;
    position: relative;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .register:hover {
    background-color: #ebf4f7;
    border-radius: 5px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .join .partition {
    margin-top: -12px;
    font-size: 0.8125rem !important;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu {
    position: relative;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu > button {
    padding: 0 10px;
    border-radius: 2px;
    background-color: #fff;
    color: #444444;
    font-size: 1.25rem;
    text-align: left;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu > button:hover {
    background-color: #ebf4f7;
    border-radius: 5px;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu .admin-sub-menu {
    z-index: 9;
    padding: 15px 20px;
    min-width: 180px;
    border-radius: 0;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu .admin-sub-menu a {
    display: block;
    padding: 10px;
    line-height: 14px;
    font-size: 0.8125rem !important;
    font-weight: 400;
    color: #444;
    transition: all 0.2s ease;
}
header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu .admin-sub-menu a:hover, header .header-wrap .gnb-wrap .menu-wrap .right-area .admin-menu .admin-sub-menu a:focus {
    background: #ebf4f7;
    color: #047099;
    font-weight: 600;
    text-decoration: underline;
}
header hr {
    display: none;
}

.nav-up {
    top: -5.625rem !important;
}

.nav-down {
    background-color: #fff;
}

/*.main .content-wrap {*/
/*    padding-bottom: 0;*/
/*    margin: 5rem 0;*/
/*}*/

/* namuh PLUG
.main .content-wrap .main-intro {
    margin: auto;
    width: 100%;
    max-width: 1440px;
    height: 444px;
    background: url(../images/N2_mainvisual.png) no-repeat right 30px bottom;
    background-size: 640px;
    padding: 0;
} */

.main-bg{
    background-color: #ebefee;
    /* height: 800px; */
}
/* N2추가 */
.main .content-wrap .main-intro {
    margin: auto;
    width: 100%;
    max-width: 1440px;
    height: 560px;
    background: url(../images/N2_mainvisual.png) no-repeat right -34rem top -51rem;
    background-size: 155%;
    padding: 0;
}

.main .content-wrap .main-intro .text-area {
    transform: translateY(130px);
}
/************/

.main .content-wrap .main-intro .text-area > h2 .txt-move1 {
    font-family: 'Godo B';
    font-size: clamp(20px,5vw, 54px);
    color: var(--black-90);
    line-height: 130%;
}
.main .content-wrap .main-intro .text-area > h2 .txt-move1 p{
    display: flex;
    align-items: center;
    margin-top: 5px;
    height: 57px;
}
.main .content-wrap .main-intro .text-area > h2 .txt-move1 p span{
    font-family: 'Godo B';
    font-size: var(--font-size-54);
    color: var(--black-90);
    line-height: 130%;
}

/* N2추가 */
.main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move{
    background: url(../images/N2_plug_logo-s.png) left top 3px / 100% no-repeat;
    display: inline-block;
    width: 15.5rem;
    height: 3rem;
    margin-right: 2px;
}
/************/

.main .content-wrap .main-intro .text-area > h2 .txt-move1>span {
    font-family: 'Pretendard', sans-serif;
    font-size: var(--font-size-20);
    font-weight: var(--fw-regular);
    color: var(--black-90);
    display:block;
    line-height: 150%;
    width: 90%;
    max-width: 31.25rem;
    margin-top: 1rem;
}
.main .content-wrap .main-intro .text-area > h2 .txt-move2 {
    font-weight: 800;
    font-style: normal;
}

.main .main-service .service-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.main .main-service .service-wrap .title {
    color: var(--black-90);
    text-align: center;
    height:180px;
    font-size: var(--font-size-26) ;
}
.main .main-service .service-wrap .title div{
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* N2추가 */
.main .main-service .service-wrap .title div .img_NamuhPLUG_main_title{
    background:url(../images/N2_plug_logo-s.png) left top 9px / 100% no-repeat;
    display: inline-block;
    width: 8.9rem;
    height: 2.5rem;
    margin-right: 6px;
}
/************/

.main .main-service .service-wrap .title p {
    padding: 0.2rem 2.5rem 1rem;
    font-size: var(--font-size-18);
    font-weight: var(--fw-regular);
}
.main .main-service .service-wrap .title .btn-ico-right {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 20px;
    border-radius: 25px;
    background-color: #fff;
    color: #047099;
    border: 1px solid #047099;
}
.main .main-service .service-wrap .title .btn-ico-right:hover {
    background-color: #047099;
    color: #fff;
}
.main .main-service .service-wrap .title .btn-ico-right:hover svg path {
    fill: var(--white);
}
.main .main-service .service-wrap .service-list {
    width: 1120px;
}
.main .main-service .service-wrap .service-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main .main-service .service-wrap .service-list ul li {
    width: 260px;
    height: 290px;
    border-radius: 20px;
    background-color: #fff;
    transition: all 0.2s ease;
    margin:10px;
    padding: 30px;
}
.main .main-service .service-wrap .service-list ul li:hover{
    cursor: pointer;

}
.main .main-service .service-wrap .service-list ul li:nth-child(1) {
    margin-top: 110px;
    background:#fff  url(../images/nh_main_card_01.jpg) no-repeat center center;
}
.main .main-service .service-wrap .service-list ul li:nth-child(2) {
    background:#fff  url(../images/nh_main_card_02.jpg) no-repeat center center;

}
.main .main-service .service-wrap .service-list ul li:nth-child(3) {
    margin-top: -60px;
    background:#fff  url(../images/nh_main_card_03.jpg) no-repeat center center;
}
.main .main-service .service-wrap .service-list ul li:nth-child(4) {
    background:#fff  url(../images/nh_main_card_04.jpg) no-repeat center center;

}
.main .main-service .service-wrap .service-list ul li:nth-child(5) {
    margin-top: -90px;
    background:#fff  url(../images/nh_main_card_05.jpg) no-repeat center center;
}
.main .main-service .service-wrap .service-list ul li:nth-child(6) {
    margin-top: -160px;
    background:#fff  url(../images/nh_main_card_06.jpg) no-repeat center center;
}


.main .main-service .service-wrap .service-list ul li a {
    height: 100%;
    color: #888;
    transition: all 0.2s ease;
}
.main .main-service .service-wrap .service-list ul li a img {
    width: 110px;
    height: 110px;
    margin: 1rem auto 0;
}
.main .main-service .service-wrap .service-list ul li a p {
    line-height: 1.2;
    font-size: var(--font-size-22);
    color:var(--black-90);
    font-weight:var(--fw-semibold);
    /* margin: 0.5rem auto; */
    padding-bottom: 0.4rem;
}
.main .main-service .service-wrap .service-list ul li a span {
    height: 100%;
    line-height: 1.6;
    font-size: var(--font-size-16);
    color:var(--black-70);
    font-weight:var(--fw-regular);
    margin: 0.5rem auto;
    display: block;
}
.main .main-service .service-wrap .service-list ul li:hover {
    box-shadow: 5px 8px 20px 5px rgba(0, 0, 0, 0.3);
    color: #047099;
    font-weight: 600;
    /* width: 100%; */

}
/* .main .main-service .service-wrap .service-list ul li:hover a {

} */
.main .main-community {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 3.125rem 0 4rem;
}
.main .main-community > section {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.main .main-community > section .notice-right-list{
    width:38rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}


.main .main-community > section .notice-right-list a{
    font-size: var(--font-size-16);
    color:var(--black-90);
    font-weight:var(--fw-regular);
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left !important;
}
.main .main-community > section .notice-right-list a:hover{
    font-weight:var(--fw-semibold);
}
.main .main-community > section .notice-right-list .notice-right-list-noti span{
    color:var(--black-90);
    font-weight:var(--fw-semibold);
    padding-right: 1rem;
}



.main .main-community > section .notice-right-list .notice-right-list-date{
    font-size: var(--font-size-16);
    color:var(--black-70);
    font-weight:var(--fw-regular);
    display: flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}
/*.main .main-community > section .notice-right-list .notice-right-list-date .btn-main-more-s{*/
/*    width: auto;*/
/*    padding: 0 0.675rem;*/
/*    height: 1.375rem;*/
/*    font-weight: var(--fw-regular);*/
/*    background: var(--warning-gradient-color-green-03);*/
/*    border-radius: var(--radius-round);*/
/*    color: var(--white);*/
/*    font-size: var(--font-size-12);*/
/*    display: block;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

a .btn-main-more-s{
    width: auto;
    padding: 0 0.675rem;
    height: 1.375rem;
    font-weight: var(--fw-regular);
    background: var(--warning-gradient-color-green-03);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: var(--font-size-12);
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main .main-community > section .notice-right-list .notice-right-list-date .btn-main-more-m{
    display: none;
}



.main .main-community .notice h3 {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}
.main .main-community .notice h3 span.ico-right{
    font-size:var(--font-size-18);
    font-weight: var(--fw-regular);
    color:var(--black-70);
    margin-left:1rem;
}
/*.main .main-community .notice h3 a {*/
/*    color:var(--black-90);*/
/*    font-size:var(--font-size-26);*/
/*    font-weight: var(--fw-semibold);*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/
.main .main-community .notice h3 a span {
    color:var(--black-70);
    font-size:var(--font-size-18);
    font-weight: var(--fw-regular);
    padding-left: 1.25rem;
}
.main .main-community .notice h3 .btn-main-more-m{
    width: auto;
    padding: 0.4rem 1rem;
    font-weight: var(--fw-regular);
    background: var(--warning-gradient-color-green-02);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: var(--font-size-14);
}
.main .main-community .notice h3 a.btn-main-more-s {
    width: auto;
    padding: 0 0.675rem;
    height: 1.375rem;
    font-size:var(--font-size-12);
    font-weight: var(--fw-regular);
    background: var(--warning-gradient-color-green-03);
    border-radius: var(--radius-round);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;}

.main .main-community .notice ul li {
    display: flex;
    justify-content: space-between;
    line-height: 54px;
}
.main .main-community .notice ul li a {
    display: inline-block;
    width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 54px;
    font-weight: 400;
    cursor: pointer;
}
.main .main-community .notice ul li a:hover {
    color: #0386b8;
}
.main .main-community .notice ul li span {
    font-size: 0.875rem;
    color: #666666;
    text-align: right;
}
.main .main-community .banner ul {
    display: flex;
    height: 100%;
}
.main .main-community .banner ul li {
    width: 50%;
    height: calc(100% - 40px);
    background-color: #efefef;
    border-radius: 10px;
    margin: 40px 0px 0px;
}
.main .main-community .banner ul li:first-child, .main .main-community .banner ul li:last-child {
    margin-left: 20px;
}
.main .main-community .banner ul li div {
    height: 100%;
    padding: 28px 25px 25px;
}
.main .main-community .banner ul li div a {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding-top: 20px;
}
.main .main-community .banner ul li div a h3 {
    color: #047099;
    font-size: 1.5rem;
    font-weight: 600;
}
.main .main-community .banner ul li div a p {
    font-size: 0.975rem;
    color: #000000;
    word-break: keep-all;
    line-height: 1.2;
    padding-top: 10px;
}
.main .main-community .banner ul li .faq a {
    background: url(../images/ico-faq.svg) no-repeat right bottom;
    background-size: 98px;
}
.main .main-community .banner ul li .community a {
    background: url(../images/ico-community.svg) no-repeat right bottom;
    background-size: 98px;
}

.transition-title .txt-move1, .transition-title .txt-move2 {
    opacity: 0;
    animation-name: h2-animation;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.transition-title .txt-move2 {
    animation-delay: 0.5s;
    margin-top: 24px;
}
@keyframes h2-animation {
    0% {
        transform: translateY(150px);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* footer */
footer {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative
    /* background : var(--warning-gradient-color-gray); */
}
footer .footer-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 2% 0;
}
footer .footer-wrap .inner, footer .footer-wrap .inner a {
    display: inline-block;
    color: var(--black-40);
    font-size: 0.875rem;
}
footer .footer-wrap .inner .footer-link a:after {
    content: "";
    display: inline-block;
    position: relative;
    margin: auto 20px;
    width: 1px;
    height: 12px;
    background-color: #999;
}
footer .footer-wrap .inner .footer-link a:last-child:after {
    content: none;
}
footer .footer-wrap .copyright {
    font-size: 0.875rem;
    color: #999999;
    line-height: 24px;
}
footer .footer-wrap .link-related .link-affiliate {
    border: 1px solid #686868;
    background: none;
    color: #bbbbbb;
}
footer .footer-wrap .link-related .select-box {
    display: none;
}
footer .topbutton-wrap {
    display: none;
    position: absolute;
    right: 2%;
    bottom: 1rem;
    z-index: 5;
}
footer .topbutton-wrap .btn-top {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    transform: rotate(-90deg);
    transition: all 0.3s ease;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.1);
}
footer .topbutton-wrap .btn-top svg path {
    transform: scale(1.5);
    -ms-transform: scale(1.5);
}
footer .topbutton-wrap .btn-top:hover {
    /* background-color: #047099; */
    outline: none;
}
footer .topbutton-wrap .btn-top:hover svg path {
    fill: #009292;
}



.user-content {
    width: 1200px;
    height: initial;
    margin: auto;
}

.developer-lnb-wrap {
    width: 250px;
    transition: 0.2s;
    margin-top: 70px;
    z-index: 9;
    left: 0;
}
.developer-lnb-wrap .lnb {
    display: flex;
    flex-flow: column;
    width: 100%;
    margin: 0 auto;
}

.catagory-up {
    top: -80px;
}

/* .content-wrap {
    padding-bottom: 3rem;
} */

.content-wrap .h2-info {
    display: none;
}

body.user .user-content {
    max-width: 1440px; /* 화면 전체 사이즈 적용 0521 */
    display: flex;
    justify-content: space-between;
    /*padding-top: 5rem;*/
}

.about-wrap .namuh-plug .namuh-plug-con-title img{
    width: 88%;
}
.about-wrap .namuh-plug .namuh-plug-con02 .namuh-plug-con-title {
    padding-right: 1rem;
    width: 13rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


body.user .user-content .content-wrap {
    width: calc(100% - 260px);
}
body.user .user-content .lnb-wrap form fieldset input {
    width: 10.9rem;
}

/* API서비스 좌측 메뉴안 검색창만 사이즈 변경 */
body.user .user-content .lnb-wrap {
    width: 17.5rem;
    margin-top: 13.2rem;
}

body.user .user-content .lnb-wrap .sub-title {
    position: relative;
    font-size: 0;
    font-weight: 800;
    height: 1.75rem;
    line-height: 70px;
    color: var(--black-70);
    border-bottom: 1px solid var(--black-30);
}


body.user .user-content .second-depth > li {
    border-bottom: 1px solid  var(--black-30);;
    padding: 0;
}
body.user .user-content .second-depth > li > a {
    display: inline-block;
    color: #000000;
    padding-right: 20px;
    font-size: 1rem;
    font-weight: 400;
    background: url("../images/nh_icon-down_dark.svg") no-repeat right center;
    display: block;
    padding: 0.938rem;
    margin-right: 10px;
}
body.user .user-content .second-depth > li > a:hover {
    font-weight: 800;
    color: var(--black-70) !important;
}
body.user .user-content .second-depth > li > a.on {
    font-weight: var(--fw-medium);
    color: var(--black-90) !important;
    background: url("../images/nh_icon-down_light.svg") no-repeat right center;
}
body.user .user-content .second-depth > li > ul.third-depth {
    display: none;
    padding:0.5rem 1rem;
    background: #f7f7f7;
    border-top: 1px solid  var(--black-30);;
}
body.user .user-content .second-depth > li > ul.third-depth li {
    line-height: 32px;
}
body.user .user-content .second-depth > li > ul.third-depth li a {
    display: inline-block;
    font-size: var(--font-size-14);
    background-image: none;
}

body.user .user-content .second-depth > li > ul.third-depth li a:hover{
    font-weight: var(--fw-semibold) !important;
    color: var(--black-70) !important;
}

body.user .user-content .second-depth > li > ul.third-depth li a::before {
    content: "";
    position: relative;
    top: -4px;
    margin-right: 6px;
    display: inline-block;
    background-color: #ccc;
    width: 0.625rem;
    height: 1.25rem;
    background: url(../images/nh_icon-arrow-M.svg) no-repeat right top 0.85rem;
}
body.user .user-content .second-depth > li > ul.third-depth li a.on {
    font-weight: var(--fw-bold);
    color: var(--black-90);
}
body.user .user-content .second-depth > li .third-depth.active {
    display: block !important;
}
body.user .user-content .second-depth > li:first-child {
    margin-top: 0px;
}
body.user .user-content .second-depth li.noDepth a {
    background: none;
}
body.user .user-content .page-title {
    position: relative;
}

body.user .user-content .page-title .breadscrumb {
    display: inline-flex;
    align-items: center;
    float: right;
    font-size: 0.875rem;
    color: #888;
    padding-top: 24px;
}
body.user .user-content .page-title .breadscrumb .breadscrumb-item:first-child::before {
    content: "";
    position: relative;
    top: 3px;
    display: inline-flex;
    width: 18px;
    height: 18px;
    background: url(../images/ico-home.svg) no-repeat 0 0;
}
body.user .user-content .page-title .breadscrumb .breadscrumb-item:not(:last-child)::after {
    content: ">";
    position: relative;
    margin: 0 6px;
}
body.user .user-content .text-wrap {
    word-break: keep-all;
    margin: 1rem 0;
}
body.user .user-content .list-api {
    display: none;
}
body.user .user-content .page-title + .text-wrap {
    padding-top: 48px;
}
body.user .user-content figure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 0;
}
body.user .user-content .text-wrap + figure {
    padding-top: 48px;
}
body.user .user-content .title-depth02 h3 {
    font-size:var(--font-size-30);
    font-weight: var(--fw-semibold);
    color: var(--black-90);
    border-bottom: 1px solid var(--black-30);  /* API가이드 게시판 하단 라인 영역*/
    padding-bottom: 1.25rem;
}
body.user .user-content h2 {
    color: var(--black-90);
}
body.user .user-content .title-depth02{
    /* border-bottom: 1px solid var(--black-30);  API가이드 게시판 하단 라인 영역*/
    /* padding-bottom: 1.25rem; */

}
body.user .user-content .title-depth03{
    padding-bottom: 0.25rem;
}

body.user .user-content .title-depth02 section:nth-child(1) h2 {
    background-color:var(--black-20);
    font-size: var(--font-size-24);
    font-weight: var(--fw-medium);
    padding: 1.25rem;
}

body.user .user-content .title-depth02 section:nth-child(2)>h2 {
    font-weight: var(--fw-semibold);
    padding: 0 0 0.6rem;
    background: url(../images/nh_icon-cercle_s.svg) left 0 top 0.525rem no-repeat;
    padding-left: 1rem;
    margin-top: 1rem;
}

body.user .user-content .title-depth03 h4 {
    font-size:var(--font-size-22);
    font-weight: var(--fw-semibold);
    color: var(--black-90);
    padding: 2rem 0 1rem;
    margin-right: 0.625rem;
    display: flex;
    align-items: center;
}

body.user .user-content .title-depth04 h5 {
    font-size: var(--font-size-14);
    font-weight: var(--fw-regular);
    color: var(--white);
    line-height: 1;
    padding: 4px 16px;
    height: 1.625rem;
    background-color: var(--grayblue-80);
    margin-bottom: 0.5rem;
    border-radius: var(--radius-round);
    display: inline-block;
}

body.user .user-content .jsgrid-grid-body .jsgrid-cell {
    padding: 1.06rem 0;
    min-height: 40px;
}

body.admin {
    font-size: 14px !important;
}
body.admin .content-wrap {
    margin-top: 0;
}
body.admin .admin-title {
    padding: 30px 0 30px; /* 관리자 타이틀 영역 패딩 */
    background: var(--warning-gradient-color-green-01);
    text-align: center;
    color: var(--white);
}
body.admin .admin-title h2 {
    display: inline;
    vertical-align: middle;
    font-size: var(--font-size-26);
    font-weight: var(--fw-semibold);
    line-height: 30px;
}
body.admin .admin-title h2:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    margin: 0 6px;
}
body.admin .admin-title p {
    display: inline;
    font-size: var(--font-size-14);
    font-weight: var(--fw-regular);
    line-height: 30px;
    vertical-align: middle;
}
body.admin .contents {
    max-width: 1440px; /* admin 화면 전체 사이즈 적용 0521 */
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}
body.admin .contents .lnb-wrap {
    width: 17.5rem;
    padding-bottom: 60px;
}
body.admin .contents .lnb-wrap #lnb {
    border-top: 1px solid var(--black-30);
}
body.admin .contents .lnb-wrap #lnb li.active > a {
    color: var(--black-70) !important;
    font-weight: 600;
}
body.admin .contents .lnb-wrap #lnb li.active > ul {
    display: block;
}
body.admin .contents .lnb-wrap .second-depth > li {
    margin-top: 20px;
    border-bottom: 1px solid var(--black-30);
}
body.admin .contents .lnb-wrap .second-depth > li > a {
    font-weight: var(--fw-regular);
    color: var(--black-70) !important;
    background: url("../images/nh_icon-up_light.png") no-repeat right center;
    padding: 0.938rem;
    padding-right: 20px;
    font-size: 1rem;
    display: block;
    margin-right: 10px;
}
body.admin .contents .lnb-wrap .second-depth > li a.on, body.admin .contents .lnb-wrap .second-depth > li a:hover {
    font-weight: var(--fw-semibold);
    color: var(--black-70) !important;
    background: url("../images/nh_icon-down_light.png") no-repeat right center;
}
body.admin .contents .lnb-wrap .second-depth > li > ul {
    display: none;
    padding: 15px;
    background: #f7f7f7;
    border-top: 1px solid var(--black-30);
}
body.admin .contents .lnb-wrap .second-depth > li > ul li {
    line-height: 24px;
}
body.admin .contents .lnb-wrap .second-depth > li > ul li a {
    font-weight: var(--fw-regular);
    color: var(--black-70);
    font-size: 14px;
}

body.admin .contents .lnb-wrap .second-depth > li > ul.third-depth li a::before {
    content: "";
    position: relative;
    top: -4px;
    margin-right: 6px;
    display: inline-block;
    background-color: #ccc;
    width: 0.625rem;
    height: 1.25rem;
    background: url(../images/nh_icon-arrow-M.svg) no-repeat right top 0.85rem;
}


body.admin .contents .lnb-wrap .second-depth > li .third-depth.active {
    display: block !important;
}
body.admin .contents .lnb-wrap .second-depth > li:first-child {
    margin-top: 0px;
}
body.admin .contents .lnb-wrap .second-depth > li.on a, body.admin .contents .lnb-wrap .second-depth > li.active a {
    background: url("../images/nh_icon-up_light.png") no-repeat right center;
}
body.admin .contents .lnb-wrap .second-depth > li:hover {
    border-bottom: 1px solid var(--black-30);
}
body.admin .contents .lnb-wrap .second-depth li.noDepth a {
    background: none;
}
body.admin .contents .content-wrap h2 {
    margin-bottom: 1.5rem;
    font-weight: var(--fw-semibold);
}


body.admin .contents .table-wrap .table-search {
    justify-content: flex-end;
}
body.admin .contents .content-wrap {
    width: calc(100% - 260px);
    padding-left: 3rem;
}
body.admin .contents .table-wrap .table-type-v > tbody > tr > td {
    border-top: 0;
}

.my-content {
    margin-top: 0;
}
.my-content .my-title {
    padding: 110px 0 30px;
    background: #b3d4e0;
    text-align: center;
}
.my-content .my-title h2 {
    display: inline;
    vertical-align: middle;
    font-size: 30px;
    line-height: 30px;
}
.my-content .my-title h2:after {
    content: "";
    display: inline-block;
    background: #b3d4e0;
    width: 1px;
    height: 20px;
    margin: 0 15px;
}
.my-content .my-title p {
    display: inline;
    font-size: 14px;
    font-weight: 200;
    line-height: 30px;
    vertical-align: middle;
}
.my-content .content-wrap {
    width: 1180px;
    padding-top: 40px;
    margin: 0 auto;
}
.my-content .content-wrap .tab-content {
    padding-top: 40px;
}
.my-content .newpass {
    padding-left: 10px;
}
.my-content input {
    width: inherit;
}

.register-content {
    padding-top: 160px;
}

.about-wrap .contents .join-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    counter-reset: section;
}
.about-wrap .contents .join-list li {
    position: relative;
    width: 10rem;
    text-align: center;
    padding: 10px 0;
}
.about-wrap .contents .join-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40%;
    transform: translateY(0%);
    right: -38px;
    display: inline-flex;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, #0386b8 2px, var(--white) 0);
    background-size: 4px 2px;
    background-position: 0 100%;
}
.about-wrap .contents .join-list li .item {
    position: relative;
    z-index: 5;
}
.about-wrap .contents .join-list li .item > div {
    background-color: #f7f7f7;
    width: 100%;
    height: 10rem;
    padding: 2.125rem;
    border-radius: 10px;
}
.about-wrap .contents .join-list li .item > div img {
    width: 100%;
    height: 100%;
}
.about-wrap .contents .join-list li .item.arrow {
    position: relative;
}
.about-wrap .contents .join-list li .item.arrow::after {
    content: "";
    position: absolute;
    display: inline-block;
    border-color: transparent transparent transparent #047099;
    border-style: solid;
    border-width: 8px;
    top: 160px;
    transform: translateY(-73px);
    right: -43px;
    width: 0;
    height: 0;
}
.about-wrap .contents .join-list li .num {
    position: relative;
}
.about-wrap .contents .join-list li .num::after {
    position: absolute;
    top: 0;
    left: 50%;
    line-height: 2rem;
    transform: translate(-50%);
    counter-increment: section;
    content: counter(section);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
.about-wrap .contents .join-list li .num::before {
    content: "";
    margin: 10px auto;
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #0386b8;
}
.about-wrap .contents .join-list li p {
    font-weight: 600;
    height: 70px;
    margin-top: 10px;
}

/*api가이드*/
.apiguide-wrap .apiguide-list {
    /*선택된 api타이틀 */
}
.apiguide-wrap{
    padding-left: 3rem;
}

.apiguide-wrap .apiguide-list .cardApi .cardApi-header {
    width: 100%;
    height: 56px;
    line-height: 56px;
    display: table;
    text-align: center;
    border-top: 1px solid  var(--black-30);;
    border-bottom: 1px solid  var(--black-30);;
    background-color: #fff;
    margin-top: -1px;
}

.apiguide-wrap .apiguide-list .cardApi .cardApi-header .apiName {
    display: table-cell;
    width: auto;
    text-align: left;
    padding-left: 20px;
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-header .apiCode {
    display: table-cell;
    width: 18%;
    /* font-size: 0.875rem; */
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-header .apiTest {
    display: table-cell;
    width: 12%;
    /* font-size: 0.875rem; */
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-header > span:last-child {
    display: table-cell;
    width: 8%;
    text-align: center;
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-header .btn-plus {
    width: 1.875rem;
    height:1.875rem;
    background: url("../images/nh_icon_plus.svg") no-repeat 50%;
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-body {
    padding: 20px 20px 50px;
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-body > .table-wrap + .title-depth03,
.apiguide-wrap .apiguide-list .cardApi .cardApi-body > .code-wrap + .title-depth03 {
    margin-top: 16px;
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-body > .table-wrap + .title-depth04,
.apiguide-wrap .apiguide-list .cardApi .cardApi-body > .code-wrap + .title-depth04 {
    margin-top: 18px;
}
.apiguide-wrap .apiguide-list .cardApi .cardApi-body .sample-wrap {
    margin-top: 36px;
}

.apiguide-wrap .apiguide-list .cardApi.open > .cardApi-header {
    background-color:  var(--white);
}
.apiguide-wrap .apiguide-list .cardApi.open > .cardApi-header > .apiName {
    font-size: var(--font-size-18);
    font-weight: var(--fw-semibold);
    color: var(--black-90);
}
.apiguide-wrap .apiguide-list .cardApi.open > .cardApi-header .btn-min {
    width: 1.875rem;
    height:1.875rem;
    background: url("../images/nh_icon_minus.svg") no-repeat 50%;
}
.apiguide-wrap .apiguide-list div:first-child .cardApi-header {
    border-top: 0;
}
.apiguide-wrap .apiguide-list .cardApi + .cardApi {
    border-top: 0;
}

.code-wrap {
    background: var(--black-20);
    border: 1px solid var(--grayblue-20);
    padding: 1.25rem 0.875rem;
    margin-bottom: 0.5rem;
}
.code-wrap pre {
    display: block;
    white-space: pre;
    color: var(--black-70);
    margin-bottom: 0;
    font-size: 0.8125rem;
}
.code-wrap pre em {
    color: #ffd43d;
    font-style: normal;
    font-size: inherit;
}

/* community */
.forum-list-wrap .table-search [type=text], .notice-list-wrap .table-search [type=text] {
    width: 350px;
}
.forum-list-wrap .list-wrap, .notice-list-wrap .list-wrap {
    border-top: 2px solid #777d81;
}
.forum-list-wrap .list-wrap li, .notice-list-wrap .list-wrap li {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid #e2e6e9;
    background-color: var(--white);
}
.forum-list-wrap .list-wrap li .text-wrap, .notice-list-wrap .list-wrap li .text-wrap {
    width: 80%;
}
.forum-list-wrap .list-wrap li .text-wrap .list-number, .notice-list-wrap .list-wrap li .text-wrap .list-number {
    width: 50px;
    height: 20px;
    background: #777d81;
    color: var(--white);
    font-size: 12px;
    border-radius: 25px;
    text-align: center;
}
.forum-list-wrap .list-wrap li .text-wrap .forum-title, .forum-list-wrap .list-wrap li .text-wrap .notice-title, .notice-list-wrap .list-wrap li .text-wrap .forum-title, .notice-list-wrap .list-wrap li .text-wrap .notice-title {
    font-size: 25px;
    line-height: 43px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.forum-list-wrap .list-wrap li .text-wrap .content-info, .notice-list-wrap .list-wrap li .text-wrap .content-info {
    display: flex;
}
.forum-list-wrap .list-wrap li .text-wrap .content-info p, .notice-list-wrap .list-wrap li .text-wrap .content-info p {
    margin-right: 50px;
    color: #abafb2;
}
.forum-list-wrap .list-wrap li .text-wrap .content-info p:last-child, .notice-list-wrap .list-wrap li .text-wrap .content-info p:last-child {
    margin-right: 0;
}
.forum-list-wrap .list-wrap li .info-wrap, .notice-list-wrap .list-wrap li .info-wrap {
    display: flex;
    justify-content: flex-end;
}
.forum-list-wrap .list-wrap li .info-wrap dl, .notice-list-wrap .list-wrap li .info-wrap dl {
    margin-left: 40px;
}
.forum-list-wrap .list-wrap li .info-wrap dl dt, .notice-list-wrap .list-wrap li .info-wrap dl dt {
    text-align: right;
    color: #abafb2;
}
.forum-list-wrap .list-wrap li .info-wrap dl dd, .notice-list-wrap .list-wrap li .info-wrap dl dd {
    text-align: right;
    font-size: 35px;
}
.forum-list-wrap .list-wrap li .info-wrap dl:first-child, .notice-list-wrap .list-wrap li .info-wrap dl:first-child {
    margin-left: 0;
}

.forum-view-wrap .reply-wrap, .notice-view-wrap .reply-wrap {
    margin-top: 20px;
    /* border-top: 1px solid var(--black-50); */
    border-bottom: 1px solid var(--black-20);
    background: var(--white) !important;
    /* 팝업 답글영영 가로사이즈 조정 0513 */
    width: calc(100% - 2.5rem);
    margin: auto;
}
.forum-view-wrap .reply-wrap .number-wrap, .notice-view-wrap .reply-wrap .number-wrap {
    padding: 20px 30px;
    font-size: 17px;
}
.forum-view-wrap .reply-wrap > .comment-wrap, .notice-view-wrap .reply-wrap > .comment-wrap {
    padding: 20px 30px;
    border-top: 1px solid #cbd0d4;
}
.forum-view-wrap .reply-wrap > .comment-wrap .info, .notice-view-wrap .reply-wrap > .comment-wrap .info {
    display: flex;
    align-items: center;
}
.forum-view-wrap .reply-wrap > .comment-wrap .info p, .notice-view-wrap .reply-wrap > .comment-wrap .info p {
    margin-right: 10px;
}
.forum-view-wrap .reply-wrap > .comment-wrap .info .id, .notice-view-wrap .reply-wrap > .comment-wrap .info .id {
    color: var(--green-10);
}
.forum-view-wrap .reply-wrap > .comment-wrap .info .date, .notice-view-wrap .reply-wrap > .comment-wrap .info .date {
    color: #abafb2;
}
.forum-view-wrap .reply-wrap > .comment-wrap .info .btn-reply-delet, .notice-view-wrap .reply-wrap > .comment-wrap .info .btn-reply-delet {
    width: 19px;
    height: 19px;
    border-radius: 3px;
    background-image: url("../images/blt-delet.png");
    background-color: var(--black-50);
    background-repeat: no-repeat;
    background-position: center;
}
.forum-view-wrap .reply-wrap > .comment-wrap .comment, .notice-view-wrap .reply-wrap > .comment-wrap .comment {
    margin-top: 10px;
}
.forum-view-wrap .reply-wrap > .comment-wrap > .comment-wrap, .notice-view-wrap .reply-wrap > .comment-wrap > .comment-wrap {
    margin-top: 20px;
    padding-left: 40px;
    background: url("../images/blt-reply.gif") no-repeat 15px 2px;
}
.forum-view-wrap .reply-wrap .write-wrap, .notice-view-wrap .reply-wrap .write-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
}
.forum-view-wrap .reply-wrap .write-wrap textarea, .notice-view-wrap .reply-wrap .write-wrap textarea {
    width: 90%;
    height: 80px;
}
.forum-view-wrap .comment-write-wrap, .notice-view-wrap .comment-write-wrap {
    padding: 10px 20px;
    margin-top: 10px;
    border-top: 1px solid var(--black-50);
    border-bottom: 1px solid var(--black-20);
    background: var(--white) !important;
    padding: 20px;
    /* 팝업 답글영영 가로사이즈 조정 0513 */
    width: calc(100% - 2.5rem);
    margin: auto;
}
.forum-view-wrap .comment-write-wrap .comment-info, .notice-view-wrap .comment-write-wrap .comment-info {
    font-size: var(--font-size-18);
    font-weight: var(--fw-medium);
    color: var(--black-90);
}
.forum-view-wrap .comment-write-wrap .form-group, .notice-view-wrap .comment-write-wrap .form-group {
    /* margin-top: 10px; */
}
.forum-view-wrap .comment-write-wrap .btn-write-wrap, .notice-view-wrap .comment-write-wrap .btn-write-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.forum-view-wrap .btn-wrap, .notice-view-wrap .btn-wrap {
    display: flex;
    justify-content: space-between;
}
.forum-view-wrap .btn-reply-write, .notice-view-wrap .btn-reply-write {
    width: 6.3rem !important;
    height: 3rem !important;
    font-weight: var(--fw-medium) !important;
    background: var(--warning-gradient-color-green-03) !important;
    border-radius: var(--radius-round) !important;
    color: var(--white) !important;
    font-size: var(--font-size-16) !important;
}
.faq-wrap {
    margin-top: 20px;
}
.faq-wrap .list-wrap {
    border-top: 2px solid #777d81;
}
.faq-wrap .list-wrap li {
    padding: 30px;
    border-bottom: 1px solid #e2e6e9;
    background-color: var(--white);
}
.faq-wrap .list-wrap li .faq-question {
    display: inherit;
    padding-right: 70px;
    font-size: 25px;
    line-height: 35px;
    background: url("../images/faq-arrow-down.gif") no-repeat 99% 50%;
}
.faq-wrap .list-wrap li .faq-question i {
    display: block;
    height: 20px;
    width: 50px;
    background: #777d81;
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-style: normal;
}
.faq-wrap .list-wrap li .faq-answer {
    padding: 20px;
    margin-top: 20px;
    background: #edf1f2;
}

/* community */
.modal-body .table-wrap .note-editable {
    width: 100%;
}

/* testbed */
.console-wrap .text-wrap{
    width: 100%;
    max-width: 1440px;
    margin: auto;
} /* 0511 신규 */


.console-wrap .search-console {
    padding: 2.5rem;
    background: var(--warning-gradient-color-green-03);
    border-radius: var(--radius-md);
    text-align: center;
}

.console-wrap .search-console > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.console-wrap .search-console > div select {
    width: 340px;
    margin: 5px;
    border: 0;
}
.console-wrap .search-console > div select:last-child {
    margin-right: 0;
}
.console-wrap .search-console > p {
    margin-top: 1.5em;
    font-size: 0.875em;
    line-height: 1.8;
    color: #888;
}
.console-wrap .search-console > p em {
    font-style: normal;
}
.console-wrap .swagger-section {
    margin-top: 1px;
}
.console-wrap .swagger-section .container {
    max-width: 1440px;
    padding: 0;
}
.console-wrap .swagger-section .swagger-ui-wrap {
    min-width: inherit !important;
    max-width: inherit !important;
    font-family: inherit !important;
}
.console-wrap .swagger-section .swagger-ui-wrap h3 {
    font-size: 1em;
}
.console-wrap .swagger-section .swagger-ui-wrap strong {
    font-weight: inherit !important;
}
.console-wrap .swagger-section .swagger-ui-wrap .info {
    padding-top: 2.5em;
    text-align: center;
}
.console-wrap .swagger-section .swagger-ui-wrap .info .info_title {
    font-size: var( --font-size-30);
    font-weight: var(--fw-semibold);
    color: var(--black-90);
}

.console-wrap .swagger-section .swagger-ui-wrap .info .info_description > p {
    font-size: var( --font-size-18);
    font-weight: var(--fw-regular);
    color: var(--black-70);
}
.console-wrap .swagger-section .swagger-ui-wrap .endpoints .endpoint {
    border-top: 1px solid  var(--black-30);;
    margin-bottom: 0 !important;
}
.console-wrap .swagger-section .swagger-ui-wrap .endpoints .endpoint:last-child {
    /* border-bottom: 1px solid  var(--black-30);;
    margin-bottom: 20px !important;  테스트베드 펼침 리스트에 상단 초록제목박스 하단 border삭제 0512 */
}
.console-wrap .swagger-section .swagger-ui-wrap .endpoints .required {
    font-weight: inherit !important;
}
.console-wrap .swagger-section .swagger-ui-wrap .endpoints pre {
    background-color: var(--black-20);
    color: #f7f7f7;
    font-size: 0.875em;
    overflow: auto;
    color: var(--black-70);
    border:1px solid var(--grayblue-20) !important;
}

.console-wrap .swagger-section .swagger-ui-wrap .endpoints pre code {
    color: inherit;
    font-size: inherit;
    line-height: 1.2;
    overflow: auto;
}
.console-wrap .swagger-section .swagger-ui-wrap table {
    border-top: 1px solid  var(--black-30);;
}
.console-wrap .swagger-section .swagger-ui-wrap table thead tr th {
    position: relative;
    font-size: var(--font-size-16);
    text-align: center;
    border-bottom: 1px solid  var(--black-30);
    background-color: #f7f7f7;
    padding: 1.125rem 4px;
}

.console-wrap .swagger-section .swagger-ui-wrap table thead tr th:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    display: inline-block;
    width: 1px;
    top: 5px;
    bottom: 5px;
    background-color: #e5e5e5;
}
.console-wrap .swagger-section .swagger-ui-wrap table tbody tr th {
    position: relative;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    /* font-weight: 400; */
    font-size: var(--font-size-16);
    border-left: 1px solid  var(--black-30);;
    border-bottom: 1px solid  var(--black-30);;
}
.console-wrap .swagger-section .swagger-ui-wrap table tbody tr td {
    font-size: var(--font-size-16);
    background: var(--white);
    border-bottom: 1px solid  var(--black-30) !important;
    padding: 1rem;
}


.console-wrap .swagger-section .swagger-ui-wrap table tbody tr td input {
    width: 100%;
}
.console-wrap .swagger-section .swagger-ui-wrap table tbody tr td.code {
    font-family: inherit;
}
.console-wrap .swagger-section .swagger-ui-wrap table td {
    border-left: 1px solid  var(--black-30);;
}
.console-wrap .swagger-section .swagger-ui-wrap table th:first-child, .console-wrap .swagger-section .swagger-ui-wrap table td:first-child {
    border-left: none;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources {
    font-family: inherit !important;
    font-size: var(--font-size-16);
    border-bottom: 1px solid #ddd;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #444;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li {
    font-size: 0.8125em;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .markdown {
    display: block;
    width: 1.9rem;
    height: 1.9rem;
    margin-left: 0;
    background: #fff url("../images/nh_icon_plus.svg") no-repeat 0 0;
}

.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
    display: inline-block;
    width:2.2rem;
    height: 2.2rem;
    /* opacity: 0.5; */
    padding-top: 4px;
}

.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .toggleEndpointList {
    background: url(../images/nh_icon_listclick_01.svg) no-repeat center;
    text-indent: -9999px;
    /* background-size: inherit; */
    width: 1.875rem;
    height: 2.875rem;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .toggleEndpointList:hover {
    background: url(../images/nh_icon_listclick_01_hover.svg) no-repeat center;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .collapseResource {
    background: url(../images/nh_icon_listclick_02.svg) no-repeat center;
    text-indent: -9999px;
    /* background-size: 120%; */
    width: 1.875rem;
    height: 1.875rem;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .collapseResource:hover {
    background: url(../images/nh_icon_listclick_03_hover.svg) no-repeat center;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .expandResource {
    background: url(../images/nh_icon_listclick_03.svg) no-repeat center;
    text-indent: -9999px;
    /* background-size: inherit; */
    width: 1.875rem;
    height: 1.875rem;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .expandResource:hover {
    background: url(../images/nh_icon_listclick_03_hover.svg) no-repeat center;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
    flex: auto;
    /* font-weight: 800; */
    font-size: 18px;
    font-family: inherit;
}

.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2{
    padding: 1.375rem 0;
}

.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a {
    display: flex;
    height: 100%;
    font-size: 1em;
    color: #000;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations {
    margin-top: 10px;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 {
    display: flex;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 .path {
    flex-basis: auto;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 .http_method {
    flex-basis: auto;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 .http_method a {
    width: 5rem !important;
    font-size: var(--font-size-16) !important;
    font-weight: var(--fw-semibold) !important;
    border-radius: var(--radius-round) !important;
    background-color: var(--Primary-color-03) !important;
    color: var(--white) !important;
}

.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span {
    display: inline-flex;
    flex-basis: auto;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span a {
    display: block;
    font-size: var(--font-size-22) !important;
    font-weight: var(--fw-semibold) !important;
}




.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 .options {
    width: 40px;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content {
    padding: inherit !important;
    padding-bottom: 40px !important;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content .snippet_source_lang > div {
    background-color: #f7f7f7;
    padding: 1em;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content .snippet_source_lang > div label {
    margin-right: 1.25em;
    font-weight: 600;
}

/* testbed 하단 버튼영역 */
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header {
    margin: 1.625rem 0 0;
    /* 테스트베드 리스트 펼침에 있는 테스트 전송 버튼을 가운데오게 하기위해 설정 0512 */
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
    width: auto;
    height: 3.6rem !important;
    padding: 0 2rem !important;
    font-weight: var(--fw-regular);
    background: var(--warning-gradient-color-green-03);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: var(--font-size-20);
    border: 0;
}

/* testbed 초기화 */
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a {
    padding: 4px 0 0 10px;
    display: inline-block;
    font-size: var(--font-size-16);
    font-weight: var(--fw-bold);
    color:var(--green-10);
    width: 100%;
}




.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a {
    height: 30px !important;
    line-height: 1.875em !important;
    color: #047099 !important;
    padding: 0 !important;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1.875em;
    height: 1.875em;
    transform: rotate(-90deg);
    background-size: contain;
    background: url(../images/ico-arrow-right.svg) no-repeat center;
}
.console-wrap .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li {
    padding: 0 10px 0 0 !important;
    margin: 0 10px 10px 0 !important;
    line-height: 15px;
}
.console-wrap .swagger-section .swagger-ui-wrap .footer {
    margin-top: inherit;
    padding: 10px 0 10px;
    text-align: center;
}
.console-wrap .swagger-section .swagger-ui-wrap .footer h4 {
    font-size: 0.875em;
}
.console-wrap .swagger-section .swagger-ui-wrap .footer h4 span {
    font-size: inherit;
}
.console-wrap .swagger-section .hljs {
    padding: 0;
    background-color: var(--black-20);
    color: var(--black-70);

}
.console-wrap .swagger-section .swagger-ui-wrap pre, .console-wrap .swagger-section .swagger-ui-wrap .content pre {
    margin: 0;
    border: 0;
}
.console-wrap .swagger-section .swagger-ui-wrap pre, .console-wrap .swagger-section .swagger-ui-wrap .content pre:hover{
    background-color: var(--black-20);
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options {
    margin: auto;
    height: 100%;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation {
    margin-bottom: 0 !important;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
    background-color: var(--white) !important;
    border: 1px solid var(--Primary-color-03) !important;
    padding: 30px 20px !important;
    border-radius: 0.625rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}


.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading.on,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading.on,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading.on,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading.on {
    background-color: #407e92 !important;
    border: 0 !important;
    padding: 0.75rem !important;
}


.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
    background-color: inherit !important;
    border: none !important;
    padding: 0 2.5rem 2.5rem !important; /*  테스트베드안에  form영역에 패딩을 상단빼고 주어서 리스트안에 여백 보이도록 설정 0512 */
}


.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content .response-class label,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content .model-signature ul.signature-nav,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content .response-class label,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content .model-signature ul.signature-nav,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content .response-class label,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content .model-signature ul.signature-nav,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content .response-class label,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content .model-signature ul.signature-nav {
    font-size: 1em;
    font-weight: 800 !important;
    margin-right: 10px;
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
    margin-bottom: 10px;
    font-size: var(--font-size-22) !important;
    font-weight: var(--fw-semibold) !important;
    color:var(--black-90);
    margin-top: 3.125rem;
}



.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4::before,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4::before,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4::before,
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4::before {
    /* content: "";
    position: relative;
    top: -4px;
    margin-right: 6px;
    display: inline-block;
    background-color: #ccc;
    width: 3px;
    height: 3px; */
}
.console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options {
    margin: 0;
}


/* admin */
.fragment-title {
    font-size: 17px;
    font-weight: 600;
}

.fragment-title + div {
    margin-top: 10px;
}

#infoForm section {
    margin-top: 20px;
}
#infoForm section h3 {
    line-height: 50px;
}
#infoForm section:first-child {
    margin-top: 0px;
}

.approval-list ul {
    padding: 10px 20px !important;
}

.connectedSortable {
    width: 100% !important;
    min-height: 60px !important;
    background: #f5fafc;
}

.ui-state-default {
    width: 310px !important;
    border-bottom: 1px solid #e2e6e9;
    padding: 10px 0 !important;
}
.ui-state-default > div {
    width: 100%;
    cursor: move;
}
.ui-state-default button {
    margin-left: 5px;
}

.ui-state-default:last-child {
    border-bottom: none;
}

#mainForm2 li input[type=checkbox] {
    margin-right: 5px;
}

#fragmentParameters {
    margin-top: 10px;
}
#fragmentParameters > div label:first-child {
    margin-right: 10px;
}
#fragmentParameters > div label:nth-child(2n) {
    margin: 0 10px 0 5px;
}
#fragmentParameters > div input[type=text] {
    width: 100px;
}

#apiListContainer {
    padding: 10px;
    margin-top: 10px;
    min-height: 50px;
    border: 1px solid  var(--black-30);
    background: #f5fafc;
}
#apiListContainer li {
    padding: 10px 5px !important;
    border-top: 1px solid #ced4da;
}
#apiListContainer li .deleteBtn {
    display: inline-block;
    margin-top: -2px;
    width: 24px;
    height: 24px;
    background: #67738c url("../images/blt-delet.png") no-repeat center !important;
}
#apiListContainer li div:nth-child(2) {
    margin-top: 5px;
    padding-left: 30px;
}
#apiListContainer li div:nth-child(2) select, #apiListContainer li div:nth-child(2) button {
    border: 1px solid #cccccc;
    background: var(--white);
    color: #6c757d;
    transition: 1s;
    cursor: pointer;
}
#apiListContainer li div:nth-child(2) select:hover, #apiListContainer li div:nth-child(2) button:hover {
    border: 1px solid #333333 !important;
    color: #333333 !important;
}
#apiListContainer li:first-child {
    padding: 0 5px 10px !important;
    border-top: none;
    margin-top: 0 !important;
}
#apiListContainer li:last-child {
    padding: 10px 5px 0 !important;
}

.admin-app-step2 {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #777d81;
    border-bottom: 1px solid #dbdbdb;
}
.admin-app-step2 > div:first-child {
    width: 40%;
    padding: 20px 20px 20px 0;
    border-right: 2px solid #dbdbdb;
}
.admin-app-step2 > div:last-child {
    width: 57%;
    padding: 20px 0 20px;
}
.admin-app-step2 .tab-content {
    padding-top: 10px;
}
.admin-app-step2 .tab-content div[role=tabpanel] > div {
    margin-top: 10px;
}
.admin-app-step2 .tab-content div[role=tabpanel] > div:first-child {
    margin-top: 0;
}
.admin-app-step2 .jsgrid-grid-header {
    display: none;
}
.admin-app-step2 .jsgrid-grid-body {
    border-top: 2px solid #333333 !important;
}

body.admin .table-wrap button{

}

.search-console select option{
    font-size: 14px;
    width: 100%;
}
.search-console select{
    width: 100%;
}

/* table */
.form-control {
    font-size: var(--font-size-16);
    font-weight: var(--fw-regular);
    color: var(--black-70);
}

.table-wrap{
    width: 100%;
    max-width: 90rem;
    min-width: 37.5rem;
    margin: auto;
    font-family: 'Pretendard', sans-serif;
    font-size: var(--font-size-16);
    font-weight: var(--fw-regular);
}



.table-wrap .list-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.875rem /* !important */;
    text-align: right;
}
.table-wrap .list-info .list-count {
    line-height: 32px;
}
.table-wrap .table-search {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}
.table-wrap .table-search .input-daterange {
    width: 210px;
}
.table-wrap .table-search select.form-control {
    width: inherit !important;
}
.table-wrap .table-search > * {
    margin-right: 2px;
}
.table-wrap .table-search > *:last-child {
    margin-right: 0;
}
/* .table-wrap .table-search .btn {
    font-size: 14px !important;
} 검색버튼에 텍스트 사이즈 조정을 위해 삭제 0513 */
.table-wrap .table-search .btn-search {
    position: absolute;
    top: 0;
    right: 5px;
    width: 38px;
    height: 36px;
    background: url("../images/ico-search.svg") no-repeat 50% 50%;
}
.table-wrap .table-search .btn-search-w {
    background: var(--warning-gradient-color-green-03);
    width: 5rem;
    height: 2.875rem;
    border-radius: 3.125rem;
    color:var(--white);
    font-weight: var(--fw-medium);
    font-size: var(--font-size-16);
}
.table-wrap .table-search .btn-create {
    background: var(--warning-gradient-color-green-03);
    width: 5rem;
    height: 2.875rem;
    border-radius: 3.125rem;
    color:var(--white);
    font-weight: var(--fw-medium);
    font-size: var(--font-size-16);
}
.btn_submit {
    background: var(--warning-gradient-color-green-03);
    width: 5rem;
    height: 2.875rem;
    border-radius: 3.125rem;
    color: var(--white);
    font-weight: var(--fw-medium);
    font-size: var(--font-size-16);
}
.btn_submit::before{
    content: "검색";

}
.btn_submit>i{
    font-size: 0;
    text-indent: -999999px;
}
.table-wrap .table-search .btn-search-w:hover {
    background-color: #0386b8;
}
.table-wrap .table-search #searchMonth .form-control {
    width: 100px;
}
.table-wrap .table-search #searchMonth .input-group-addon {
    border-radius: 0 3px 3px 0;
    width: 30px;
    border: 1px solid var(--black-30);
    margin-left: -1px;
}
.table-wrap .table-search #searchMonth .input-group-addon .glyphicon.glyphicon-th {
    top: 5px;
    right: 5px;
}




/* table 글쓰기 버튼 */
.table-wrap .btn-write {
    width: auto; height:3.375rem;
    padding: 0 2.5rem;
    font-weight: var(--fw-medium);
    background: var(--warning-gradient-color-green-02);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: var(--font-size-20);
}


.table-wrap .btn-write:hover, .table-wrap .btn-write:focus, .table-wrap .btn-write:active {
    background-color: #171e2b;
    color: var(--white);
}
.table-wrap table {
    width: 100%;
    font-weight: 400;
}

.table-wrap table th {
    background:  var(--black-20);
    padding: 0.8rem;
    border-bottom: 1px solid var(--black-30);
    border-top-color: var(--black-30);
}
.table-wrap table th label {
    margin-bottom: 0 !important;
}
.table-wrap table td {
    padding: 6px 10px;
    border-bottom: 1px solid var(--black-30);
    background: var(--white);
}
.table-wrap table td a {
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.table-wrap table td > table th, .table-wrap table td > table td {
    padding: 5px;
}
.table-wrap table td.btncell {
    display: flex;
    justify-content: center;
}
.table-wrap table [type=button] {
    min-width: 50px !important;
    padding: 7px !important;
    font-size: 13px !important;
    line-height: 13px !important;
    letter-spacing: -1px;
    margin: 2px;
}
.table-wrap table .files > * {
    margin-bottom: 5px !important;
}
.table-wrap table .files > *:last-child {
    margin-bottom: 0 !important;
}
.table-wrap .table-type-h {
    border-top: 1px solid  var(--black-30);;
}
.table-wrap .table-type-h > thead > tr > th {
    position: relative;
    /* font-size: 0.875rem; */
    text-align: center;
    font-weight: 600;
    /* border-bottom: 1px solid  var(--black-30);; */
    border-bottom: 2px solid  var(--black-30); /* API서비스 페이지 리스트 하단 줄 추가 0513 */
}
.table-wrap .table-type-h > thead > tr > th:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    display: inline-block;
    width: 1px;
    top: 5px;
    bottom: 5px;
    background-color: #e5e5e5;
}
.table-wrap .table-type-h > tbody > tr > th {
    position: relative;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 600;
    border-left: 1px solid  var(--black-30);;
    border-bottom: 1px solid  var(--black-30);
}
.table-wrap .table-type-h > tbody > tr > td {
    background: var(--white);
    color: #000;
}
.table-wrap .table-type-h > tbody > tr > td input {
    width: 100%;
}
.table-wrap .table-type-h > tbody > tr > td:first-child {
    border-left: 0;
}
.table-wrap .table-type-h > tbody > tr > td:last-child {
    border-right: 0;
}
.table-wrap .table-type-h td {
    border-left: 1px solid  var(--black-30);
}
.table-wrap .table-type-h th:first-child, .table-wrap .table-type-h td:first-child {
    border-left: none;
}
.table-wrap .table-type-v {
    border-top: 1px solid var(--black-50);
}
.table-wrap .table-type-v thead tr th {
    position: relative;
    font-size: var(--font-size-16);
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid  var(--black-30);;
}
.table-wrap .table-type-v thead tr th:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    display: inline-block;
    width: 1px;
    top: 5px;
    bottom: 5px;
    background-color: #e5e5e5;
}
.table-wrap .table-type-v > tbody > tr > th {
    position: relative;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: var(--fw-medium);
    font-size: var(--font-size-16);
    border-bottom: 1px solid var(--black-30);
    color: var(--black-90);
}

.table-wrap .table-type-v > tbody > tr > td {
    padding: 1rem;
    border-bottom: 1px solid var(--black-30);
    font-size: var(--font-size-16);
    color: var(--black-70);
}
.table-wrap .table-type-v > tbody > tr > td li {
    padding-left: 1rem;
    background: url("../images/blt-dot.gif") no-repeat 0 50%;
}
.table-wrap .table-type-v > tbody > tr > td:first-child {
    border-left: 0;
}
.table-wrap .table-type-v > tbody > tr > td:last-child {
    border-right: 0;
}
.table-wrap .table-type-v > tbody > tr:last-child > th {
    border-bottom: 1px solid  var(--black-30);
}
.table-wrap .table-type-v > tbody > tr:last-child > td {
    border-bottom: 1px solid  var(--black-30);
}
.table-wrap .table-apiguide th {
}
.table-wrap .table-apiguide td {
}
.table-type-view [name=content] img {
    max-width: 860px;
    width: auto;
}
.table-wrap .table-type-view tbody tr th {
    font-weight: var(--fw-medium);
    border-bottom: 1px solid  var(--black-30);
    width: 9rem;
}
.table-wrap .table-type-view tbody tr td {
    padding: 0 0.625rem 0.5rem;
}
.table-wrap .table-type-view tbody tr td span {
    display: inline-block;
    font-size: var(--font-size-15);
    color: #888;
}

.table-wrap .table-type-view tbody tr td span + span {
    margin-left: 10px;
}
.table-wrap .table-type-view tbody tr td[name=title] {
    font-size: var(--font-size-18);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    border-bottom: 0;
    color: var(--black-90);
}
.table-wrap .table-type-view tbody tr td > div[name=content] {
    padding: 20px 10px;
    max-height: 400px;
    min-height: 200px;
    overflow: auto;
}

/* pagenation */
.table-wrap .jsgrid-pager {
    font-family: 'Pretendard', sans-serif;
    font-size: var(--font-size-14);
    margin-top: 20px;
    text-align: center;
    font-size: var(--font-size-14) !important;
}
.table-wrap .jsgrid-pager .jsgrid-pager-page {
    border: none;
    background-color: inherit !important;
}

.table-wrap .jsgrid-pager .jsgrid-pager-current-page {
    background-color: var(--white) !important;
    color: var(--Primary-color-03) !important;
    font-weight: var(--fw-semibold);
    /* text-decoration: underline; */
}
.jsgrid-pager-nav-button{
    border: 1px solid var(--black-40);
    border-radius:  3.125rem;
    padding-left: 1.1rem ;
    padding-right: 0.9rem !important;
    background: url("../images/nh_icon-arrow-S.svg") no-repeat left 1rem top 0.8rem;
    margin: 0 2px;
    padding: .3rem 1em 0.3rem 1.7rem !important;
}

.table-wrap:first-child {
    margin-top: 20px;
}

.btn-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.btn-wrap button {
    min-width: 140px;
    min-height: 42px;
    padding: 0 20px;
    margin: 5px;
}
.btn-wrap button:last-child {
    margin-right: 0px;
}


/* ========================= admin STR ========================= */
body.admin .table-wrap .btn-write {
    width: auto;
    height: 2.5em;
    padding: 0 2rem;
    font-weight: var(--fw-medium);
    background: var(--warning-gradient-color-green-02);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: var(--font-size-18);
}
body.admin .table-wrap .table-search .btn-search-w {
    height: 2.5rem;
    padding: 0 1.6rem;
}
body.admin .table-wrap .table-search .btn-create{
    height: 2.5rem;
    padding: 0 1.6rem;
}

body.admin .form-control {
    font-size: var(--font-size-14);
    padding: 0.375rem 0rem ;
    padding-left: 0.375rem;
}

/* table */
body.admin .table-wrap .table-type-v > tbody > tr > th {
    font-size: var(--font-size-14);
}
body.admin .system-role-wrap #apiAuthTableBody tr > td{
    font-size: var(--font-size-14);
    border-bottom: 1px solid var(--black-30);
    padding: 0.5rem;
}
body.admin .system-role-wrap #apiAuthTableBody tr > td:first-child {
    text-align: left;
    background-color:var(--black-20);
    border-bottom: 1px solid var(--black-30);
}

body.admin .table-wrap .table-type-v thead tr th {
    font-size: var(--font-size-14);
}
.table-wrap .table-type-v > tbody > tr > td {
    font-size: var(--font-size-14);
}

body.admin .table-wrap table [type=button] {
    min-width: auto;
    padding: 0;
    font-size: 13px !important;
    line-height: 13px !important;
    letter-spacing: -1px;
    margin: 2px;
}

/* body.admin .system-role-wrap tr.keep-highlight td.jsgrid-cell {
    background: var(--grayblue-60);
} */



/* modal*/
body.admin .modal-content .modal-header h2{
    margin-bottom: 0;
}

/* ========================= admin END ========================= */


.cell-list li {
    display: flex;
    justify-content: space-between;
}

.column-3, .column-2 {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
}
.column-3 > div > div, .column-2 > div > div {
    margin-bottom: 20px;
}
.column-3 > div > div:last-child, .column-2 > div > div:last-child {
    margin-bottom: 0px;
}

.column-3 > div {
    width: calc(95%/3);
}

.column-2 > div {
    width: calc(97%/2);
}

.column-1 > div {
    width: 100%;
}

.app-line span:after {
    content: "→";
    padding: 0 5px;
}
.app-line span:last-child:after {
    content: "✓";
}

.list-wrap [type=button] {
    height: 30px;
    margin-top: 5px;
}
.list-wrap [type=button]:first-child {
    margin-top: 0px;
}

.nominee-wrap [type=button] {
    height: 30px;
    margin-top: 5px;
    border: 1px solid #444;
}
.nominee-wrap [type=button]:first-child {
    margin-top: 0px;
}

.order-wrap {
    margin-top: -5px;
}
.order-wrap .on {
    background-color: #2c353a;
    color: var(--white);
    border: none;
}
.order-wrap span {
    display: inline-block;
    position: relative;
    height: 30px;
    padding: 0 20px;
    line-height: 26px;
    border: 1px solid #cbcfd3;
    border-radius: 15px;
    margin-right: 30px;
    font-size: 14px;
}
.order-wrap span:last-child {
    margin-right: 0px;
}
.order-wrap span:after {
    content: "→";
    position: absolute;
    top: 0;
    right: -25px;
    color: #2c353a;
    font-weight: 500 !important;
}
.order-wrap span:last-child:after {
    display: none;
}

.custom-file-label::after {
    content: "파일찾기.." !important;
}

.login-wrap, .certified-wrap {
    width: 400px;
    padding: 40px 30px 60px;
    margin: 30px auto;
    background-color: #eaeeef;
    border-radius: 5px;
    text-align: center;
}
.login-wrap::before, .certified-wrap::before {
    content: "NH투자증권 OPEN API";
    display: block;
    padding: 2rem 0 3rem;
    font-weight: 800;
    font-size: 1.5rem;
}
.login-wrap h2, .certified-wrap h2 {
    text-align: center;
    font-size: 24px;
}
.login-wrap input, .certified-wrap input {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #cbcfd3;
}
.login-wrap input[type=password], .certified-wrap input[type=password] {
    margin-top: 5px;
}
.login-wrap button[type=button], .certified-wrap button[type=button] {
    width: 120px;
    height: 40px;
    margin-right: 5px;
    border-radius: 3px !important;
    font-size: 14px;
}
.login-wrap .text-danger, .certified-wrap .text-danger {
    display: inline-block;
    width: 120px;
    height: 40px;
    background: var(--white);
    margin-right: 5px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}
.login-wrap .alert, .login-wrap .form-group, .certified-wrap .alert, .certified-wrap .form-group {
    margin-bottom: 0px !important;
}
.login-wrap .btn-login, .certified-wrap .btn-login {
    width: 100% !important;
    height: 70px !important;
    margin-top: 10px;
    font-size: 20px !important;
    font-weight: 600;
}
.login-wrap .link, .certified-wrap .link {
    font-size: 15px;
    color: #777d81;
    margin-top: 20px;
}
.login-wrap .link .join, .certified-wrap .link .join {
    color: #047099 !important;
}

.find-id-wrap, .reset-pw-wrap, .register-wrap {
    text-align: center;
}
.find-id-wrap .title, .reset-pw-wrap .title, .register-wrap .title {
    font-size: 35px;
}
.find-id-wrap .comment, .reset-pw-wrap .comment, .register-wrap .comment {
    margin-top: 10px;
    color: #67738c;
}
.find-id-wrap .input-wrap, .reset-pw-wrap .input-wrap, .register-wrap .input-wrap {
    width: 400px;
    padding: 30px;
    margin: 20px auto;
    background-color: #eaeeef;
    border-radius: 5px;
    text-align: left;
}
.find-id-wrap .form-inline input, .reset-pw-wrap .form-inline input, .register-wrap .form-inline input {
    margin: 0 2px;
}
.find-id-wrap .form-inline input:first-child, .reset-pw-wrap .form-inline input:first-child, .register-wrap .form-inline input:first-child {
    margin-left: 0px;
}
.find-id-wrap .form-inline input:last-child, .reset-pw-wrap .form-inline input:last-child, .register-wrap .form-inline input:last-child {
    margin-right: 0px;
}
.find-id-wrap label, .reset-pw-wrap label, .register-wrap label {
    margin-top: 10px;
    margin-bottom: 5px;
}
.find-id-wrap .btn-find-id, .reset-pw-wrap .btn-find-id, .register-wrap .btn-find-id {
    width: 100% !important;
    height: 70px !important;
    font-size: 20px !important;
    font-weight: 600;
}
.find-id-wrap .btn-goto-login, .reset-pw-wrap .btn-goto-login, .register-wrap .btn-goto-login {
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 10px;
}
.find-id-wrap button, .reset-pw-wrap button, .register-wrap button {
    margin: 0;
}

.register-wrap {
    width: 1180px;
    margin: 0 auto;
}
.register-wrap .step1 > a {
    display: inline-block;
    position: relative;
    width: 360px;
    height: 390px;
    margin: 20px 5px;
    background-color: #e2e6e9;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.register-wrap .step1 > a h3 {
    position: absolute;
    top: 60px;
    width: 100%;
    font-size: 26px;
}
.register-wrap .step1 > a p {
    position: absolute;
    bottom: 60px;
    width: 100%;
    color: #67738c;
}
.register-wrap .step1 .select-individual {
    background-image: url("../images/icon-individual.gif");
}
.register-wrap .step1 .select-agency {
    background-image: url("../images/icon-agency.gif");
}
.register-wrap .tab-content {
    padding: 30px;
    background: var(--white);
    text-align: left;
}
.register-wrap .tab-content h3 {
    font-size: 17px;
}
.register-wrap .tab-content .title-wrap:first-child {
    margin-top: 40px;
}
.register-wrap .tab-content .title-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.register-wrap .tab-content .title-wrap label {
    margin: inherit !important;
    color: #171e2b !important;
}
.register-wrap .tab-content .title-wrap label::before {
    border-color: #171e2b !important;
}
.register-wrap .tab-content .title-wrap button {
    margin: -5px 0 0 10px;
}
.register-wrap .tab-content #personalForm {
    margin-top: 40px;
}
.register-wrap .tab-content .box-wrap {
    padding: 30px 20px;
    margin-top: 20px;
    background: #e2e6e9;
}
.register-wrap .tab-content .box-wrap ul > li {
    margin-top: 20px;
}
.register-wrap .tab-content .box-wrap ul > li > ul > li {
    margin-top: 0px;
    color: #777d81 !important;
    padding-left: 15px;
    background: url("../images/blt-dot.gif") no-repeat 5px 9px;
}
.register-wrap .tab-content .box-wrap ul > li:first-child {
    margin-top: 0px;
}
.register-wrap .agree-wrap {
    height: 200px !important;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid #dee2e6;
    overflow-y: scroll;
}

/* system role */
.system-role-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.system-role-wrap > div {
    padding: 20px;
    border-top: 2px solid #dddddd;
    border-left: 2px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}
.system-role-wrap > div:first-child {
    width: 35%;
    border-left: none;
    padding-left: 0;
}
.system-role-wrap > div:last-child {
    width: 65%;
    padding-right: 0;
}
.system-role-wrap .btn-wrap button {
    margin-top: 10px;
}
.system-role-wrap td.jsgrid-cell {
    padding: 10px;
}
.system-role-wrap tr.keep-highlight td.jsgrid-cell {
    background-color: var(--grayblue-70);
    padding: 0.5rem 0.2rem;
}
.system-role-wrap tr.keep-highlight td.jsgrid-cell div, .system-role-wrap tr.keep-highlight td.jsgrid-cell button {
    color: var(--white);
}
.system-role-wrap tr.keep-highlight td.jsgrid-cell div[style="cursor: pointer;"] {
    border-bottom: 1px solid var(--white) !important;
}
.system-role-wrap td.jsgrid-cell button:first-child {
    margin-right: 10px;
}
.system-role-wrap #apiAuthTableBody tr:first-child > td:first-child {
    /* border-top: 2px solid #777d81; */
}
.system-role-wrap #apiAuthTableBody tr > td:first-child {
    text-align: left;
    padding: 10px 20px;
    background: #e2e6e9;
    border-bottom: 1px solid #777d81;
}
.system-role-wrap #apiAuthTableBody tr > td:last-child {
    padding: 10px 20px;
    background: var(--white);
}
.system-role-wrap #apiAuthTableBody tr > td:last-child label {
    margin-right: 20px;
}

/* reports */
.report-select-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.report-select-wrap > div {
    width: 38%;
    padding: 20px;
    border-top: 2px solid #dddddd;
    border-left: 2px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}
.report-select-wrap > div h3 {
    font-size: 20px;
}
.report-select-wrap > div .select-area {
    padding-top: 10px;
}
.report-select-wrap > div .select-area .select-all {
    padding: 10px 25px;
}
.report-select-wrap > div .select-area .select-all .report-btn{
    border:1px solid #0386b8;
    background-color:#0386b8;
    color:#fff;
    padding:5px;
    border-radius:4px;
    line-height:20px;
    margin-top:-5px;
    float:right;
}
.report-select-wrap > div .select-area .select {
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0 10px 30px;
    border-top: 1px solid #dddddd;
}
.report-select-wrap > div .select-area .select > div::after {
    content: "";
    display: block;
    border-bottom: 1px solid #ebebeb;
    margin: 10px 0 10px -30px;
}
.report-select-wrap > div .select-area .select .custom-control {
    padding-left: initial !important;
}
.report-select-wrap > div > input {
    margin-top: 10px;
}
.report-select-wrap > div:first-child {
    width: 24%;
    border-left: none;
    padding-left: 0;
}
.report-select-wrap > div:last-child {
    padding-right: 0;
}
.report-select-wrap input {
    width: 100%;
}

.report-search-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 2px solid #cbcfd3;
    border-bottom: 1px solid #cbcfd3;
}
.report-search-wrap > div {
    padding: 5px 0 !important;
}
.report-search-wrap .radio-wrap, .report-search-wrap .checkbox-wrap {
    display: flex;
    width: 280px;
}
.report-search-wrap .radio-wrap > div, .report-search-wrap .checkbox-wrap > div {
    margin-right: 20px;
}
.report-search-wrap .checkbox-wrap {
    justify-content: flex-end;
}
.report-search-wrap .select-wrap {
    display: flex;
    line-height: 25px;
}
.report-search-wrap .select-wrap label {
    margin-bottom: 0;
}
.report-search-wrap .select-wrap select {
    width: 60px;
    height: 25px;
    padding: 0px;
    margin-left: 10px;
    font-size: 13px;
    line-height: 13px;
}
.report-search-wrap .date-wrap {
    display: flex;
    width: 450px;
}
.report-search-wrap .date-wrap label {
    margin-bottom: 0;
    line-height: 34px;
    margin-right: 10px;
}
.report-search-wrap .date-wrap .input-daterange {
    width: 270px;
}

.report-number label {
    width: 170px;
}

.report-canvas-wrap {
    padding-top: 10px;
    margin-top: 40px;
    border-top: 2px solid #cbcfd3;
    border-bottom: 1px solid #cbcfd3;
}
.report-canvas-wrap .radio-wrap {
    display: flex;
    flex-wrap: wrap;
}
.report-canvas-wrap .radio-wrap > div {
    margin: 10px 20px 10px 0;
}
.report-canvas-wrap .canvas-wrap {
    margin-top: 20px;
    height: 500px;
    border: 1px solid #ebebeb;
    padding: 20px;
    background: var(--white);
}

.note-editor.note-frame {
    width: inherit !important;
}

/* popovers */
.popovers .popovers-header {
    display: flex;
    justify-content: space-between;
}

/* agreement */
#__terms_dialog__ #attachFile span {
    display: block;
    margin-bottom: 20px;
}
#__terms_dialog__ #attachFile span a {
    font-size: 14px;
    border-bottom: 1px solid #171e2b;
}

/* bxSlide */
.bx-wrapper {
    background: none !important;
    -webkit-box-shadow: none;
    box-shadow: none !important;
    border: none !important;
}

/* error */
.error-wrap {
    margin-top: 100px;
    text-align: center;
}
.error-wrap .title {
    padding-top: 80px;
    font-size: 28px;
    font-weight: 800;
    background: url("../images/error.gif") no-repeat 50% 0;
}
.error-wrap .title .text-primary {
    color: #047099;
}
.error-wrap .info-wrap {
    margin-top: 20px;
}
.error-wrap .btn {
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px;
    min-width: 120px;
}
.error-wrap .btn-pre {
    background: #67738c;
    color: var(--white) !important;
}
.error-wrap .btn-home {
    border: 1px solid #cbcfd3;
}
.error-wrap .copy-wrap {
    margin-top: 50px;
    font-size: 12px;
    color: #67738c;
}

/* coming soon */
.coming-soon-wrap {
    width: 860px;
    margin: 0 auto;
    margin-top: 100px;
    background: url("../images/comingsoon.png") no-repeat 100% 0;
}
.coming-soon-wrap h1 {
    padding-left: 120px;
    background: url("../images/comingsoon-h1.gif") no-repeat 0 50%;
    font-size: 17px;
}
.coming-soon-wrap .title {
    margin-top: 30px;
}
.coming-soon-wrap .title .coming {
    font-size: 32px;
    color: #777d81;
}
.coming-soon-wrap .title .new {
    font-size: 62px;
    font-weight: 700 !important;
    letter-spacing: -5px;
    color: #f27243;
}
.coming-soon-wrap .info-wrap {
    margin-top: 20px;
    color: #777d81;
}
.coming-soon-wrap .copy-wrap {
    font-size: 10px !important;
    margin-top: 40px;
    text-align: center;
    color: #bdbdbd;
}

/* ==================== MOB ==================== */

@media (max-width: 1441px) {

}

@media (max-width: 1080px) {
    body {
        min-width: initial;
    }
    /*
        .main .main-service .service-wrap {
            width: 100%;
            flex-flow: column;
        }


        .main .main-service .service-wrap .title {
            text-align: center;
            width: 100%;
            margin-bottom: 20px;
            height: auto;
        }

        .main .main-service .service-wrap .service-list {
            width: 100%;
            margin: auto;
        }
        .main .main-service .service-wrap .service-list ul li {
            height: 200px;
            width: calc(45% - 10px);
            margin: 6px;
            padding: 24px;
        }
        .main .main-service .service-wrap .service-list ul li:nth-child(1) {
            margin-top: 4px;
            background:#fff  url(../images/nh_MOB_main_card_01.jpg) no-repeat bottom 0 right 0 / cover;
        }
        .main .main-service .service-wrap .service-list ul li:nth-child(2) {
            margin-top: 4px;
            background:#fff  url(../images/nh_MOB_main_card_02.jpg) no-repeat bottom 0 right 0 / cover;
        }
        .main .main-service .service-wrap .service-list ul li:nth-child(3) {
            margin-top: 4px;
            background:#fff  url(../images/nh_MOB_main_card_03.jpg) no-repeat bottom 0 right 0 / cover;
        }
        .main .main-service .service-wrap .service-list ul li:nth-child(4) {
            margin-top: 4px;
            background:#fff  url(../images/nh_MOB_main_card_04.jpg) no-repeat bottom 0 right 0 / cover;
        }
        .main .main-service .service-wrap .service-list ul li:nth-child(5) {
            margin-top: 4px;
            background:#fff  url(../images/nh_MOB_main_card_05.jpg) no-repeat bottom 0 right 0 / cover;
        }
        .main .main-service .service-wrap .service-list ul li:nth-child(6) {
            margin-top: 4px;
            background:#fff  url(../images/nh_MOB_main_card_06.jpg) no-repeat bottom 0 right 0 / cover;
        }



        .main .main-community {
            width: 100%;
            flex-flow: column;
            padding: 3.125rem 3.8rem 5.875rem;
        }
        .main .main-community > section {
            width: 100%;
        }
        .main .banner ul li {
            width: 50%;
            height: calc(100% - 40px);
            background-color: #efefef;
            border-radius: 10px;
            margin: 40px 0px 0px;
        }
        .main .banner ul li:first-child {
            margin-left: 0 !important;
        }

        .user-content {
            width: 100% !important;
            max-width: initial !important;
            height: initial;
        }

        footer .footer-wrap {
            width: 100%;
            padding: 0 20px;
        }



        .main .content-wrap .main-intro .text-area {
            transform: translateY(50px);
        }
        .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
            font-size: var(--font-size-46);
            line-height: 130%;
        }
        .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
            font-size: var(--font-size-46);
            line-height: 130%;
        }
        .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
            width: 17.625rem;
        }
        .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
            font-size: var(--font-size-20);
            line-height: 150%;
        }
            */
}
@media (max-width:1280px) {

    /* N2추가 */
    .main .content-wrap .main-intro {
        padding: 0 5rem;
        background-position: right -29rem top -43rem;
    }
    /************/

    body.user .user-content {
        padding: 0 2rem;
    }
    .console-wrap .text-wrap {
        padding: 0 2rem;
    }
    body.user .user-content {
        padding: 0 2rem;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        width: 14.2rem;
    }
}
@media (max-width: 1200px) {
    .main .content-wrap .main-intro {
        max-width: 1200px;
        background-size: 640px;
    }
}

@media (max-width: 1080px){
    .main .content-wrap .main-intro {
        background-size: 560px;
    }
}

@media (max-width: 1024px) {
    .console-wrap{
        padding: 0;
    }
    /* header {
        position: fixed;
        width: 100%;
        transition: all 0.2s ease;
        z-index: 10;
        top: 0;
        left: 0;
        background-color: var(--white);
        border-bottom: 1px solid  var(--black-30);
    } */
    header .header-wrap .gnb-wrap {
        margin: 0 10px;
    }
    header .header-wrap .gnb-wrap a.logo h1 {
        background-size: 125px;
        font-size: 18px;
    }
    header .header-wrap .gnb-wrap .menu-wrap {
        width: fit-content;
        right: 0;
    }
    header .header-wrap .gnb-wrap .menu-wrap .btn-menu {
        display: block;
        width: 3rem;
        height: 3rem;
        margin-top: 1rem;
        margin-right: 10px;
        text-indent: -9999px;
        background: url(../images/ico-menu.svg) no-repeat center center;
        background-size: contain;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth {
        display: none;
        position: absolute;
        right: -100%;
        background-color: #fff;
        width: 90%;
        height: 100vh;
        z-index: 99;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul {
        display: flex;
        flex-flow: column;
        margin-top: 4em;
        padding: 30px;
        width: 100%;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div {
        display: flex;
        justify-content: space-between;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-first-depth {
        height: 48px;
        line-height: 48px;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-first-depth:hover::after {
        content: "";
        width: 0;
        background-color: transparent;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-has-sub {
        display: inline-block;
        width: 2rem;
        height: inherit;
        line-height: 48px;
        background: url("../images/ico-arrow-right.svg") no-repeat 50% 50%;
    }
    header .header-wrap .gnb-wrap .menu-wrap nav.first-depth > ul > li div .btn-has-sub.active {
        background: url("../images/ico-arrow-down.svg") no-repeat 50% 50%;
    }
    header .header-wrap .gnb-wrap .menu-wrap .right-area {
        display: none;
        z-index: 99;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on {
        width: 100%;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on .btn-menu {
        position: absolute;
        right: 10px;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth {
        display: block;
        right: 0;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth .m-hidden {
        display: none;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth .m-menu {
        display: block;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth .btn-close {
        display: inline-block;
        position: absolute;
        left: 30px;
        top: 24px;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li {
        border-bottom: 1px solid  var(--black-30);;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li > a {
        height: 4em;
        line-height: 4em;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li > a:hover {
        border-bottom: 1px solid #047099;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li .second-menu {
        display: none;
        position: initial;
        transform: initial;
        width: 100%;
        background: #f7f7f7;
        border: none;
        border-top: 1px solid  var(--black-30);;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li .second-menu .third-menu {
        padding-left: 1em;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li .second-menu .third-menu > a {
        display: block;
        padding: initial;
        height: 1.5rem;
        line-height: 1.5rem;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li .second-menu .third-menu > a::before {
        content: "-";
        padding-right: 6px;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li .second-menu .third-menu.show {
        display: block;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li:hover .second-menu {
        display: block;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on nav.first-depth > ul > li:active .second-menu {
        display: block;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on .right-area {
        display: flex;
        position: absolute;
        right: 20px;
        top: 0;
    }
    header .header-wrap .gnb-wrap .menu-wrap.on::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: #000000;
        opacity: 0.5;
    }

    .main .content-wrap .main-intro {
        background-position: right 5rem bottom;
        background-size: 520px;
        padding: 0 4rem;
    }
    .main .content-wrap .main-intro .text-area > h2 {
        font-size: 48px;
    }
    .main .main-service .service-wrap {
        width: 100%;
        flex-flow: column;
    }

    .main .main-service .service-wrap .service-list {
        width: 100%;
    }
    .main .main-service .service-wrap .service-list ul li {
        height: 150px;
    }

    body.user .user-content figure {
        overflow: auto;
        justify-content: center;
    }
    body.user .user-content figure img {
        min-height: 150px;
        max-height: 400px;
    }
    body.user .user-content .lnb-wrap {
        display: none;
    }
    body.user .user-content .content-wrap {
        width: 100%;
        padding: 0 0; /* 1024부터 전체 감싸는 좌우 패딩 */
    }
    .content-wrap {
        padding: 0 1.7rem; /* 1024부터 전체 감싸는 좌우 패딩 */
    }
    body.user .user-content .list-api {
        display: block;
        width: 100%;
    }
    body.user .user-content .list-api .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 0.925em;
        border-color: #ddd;
        /* display: none; */
    }

    body.user .user-content .list-api .dropdown-toggle:hover {
        border-color: #047099;
    }
    body.user .user-content .list-api .dropdown-menu {
        width: 100%;
        font-size: var(--font-size-14);
    }

    .about-wrap .contents .join-list {
        justify-content: center;
    }
    .about-wrap .contents .join-list li {        margin: 0 10px 0 0;
    }
    .about-wrap .contents .join-list li p {
        height: 50px;
    }

    .about-wrap .contents .join-list li:not(:last-child)::after {
        display: none;
    }

    .about-wrap .contents .join-list li .item.arrow::after {
        display: none;
    }

    .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
    .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
    .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
    .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
        overflow: auto;
    }


    /* 메인화면 */
    .main-content .content-wrap{
        padding: 0;

    }

    /* N2추가 */
    .main .content-wrap .main-intro {
        background-position: right -23rem top -33rem;
        height: 27.75rem;
        background-size: 145%;
    }
    /************/

    .main .content-wrap .main-intro .text-area {
        transform: translateY(80px);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        width: 13rem;
        margin-top: 4px;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-44);
        line-height: 130%;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-44);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1>span {
        margin-top: 0.5rem;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
        font-size: var(--font-size-18);
        line-height: 150%;
    }
    .main .main-community {
        width: 100%;
        padding: 3.125rem 3rem 3rem;
    }
    .main .main-community > section .notice-right-list {
        width: 100%;
    }

    .main .main-community .notice h3 {
        width: 43%;
    }
    .main .main-community .notice h3 span.ico-right {
        flex-grow: 1;
    }
    .main .main-community > section div{
        width: 40%;
    }

    .main .main-community > section{
        width: 100%;
    }
    .transition-title .txt-move2 {
        margin-top: 12px;
    }

    .main .main-service .service-wrap .service-list ul {
        padding: 0 1rem;
    }
    .main .main-service .service-wrap .service-list ul li {
        width: 31%;
        margin: 6px;
        padding: 24px;
        height: 250px;
        background-size: 108% !important;
    }

    .main .main-service .service-wrap .service-list ul li {
        width: calc(45% - 10px);
        height: 184px;
        margin: 10px;
        padding: 24px;
    }

    .main .main-service .service-wrap .title {
        height: 7rem;
    }
    .main .main-service .service-wrap .service-list ul li:nth-child(1) {
        margin-top: 10px;
        background:#fff  url(../images/nh_MOB_main_card_01_1.png) no-repeat bottom -5px right 0 / cover;
    }
    .main .main-service .service-wrap .service-list ul li:nth-child(2) {
        margin-top: 10px;
        background:#fff  url(../images/nh_MOB_main_card_02_1.png) no-repeat bottom 0 right 0 / cover;
    }
    .main .main-service .service-wrap .service-list ul li:nth-child(3) {
        margin-top: 10px;
        background:#fff  url(../images/nh_MOB_main_card_03_1.png) no-repeat bottom 0 right 0 / cover;
    }
    .main .main-service .service-wrap .service-list ul li:nth-child(4) {
        margin-top: 10px;
        background:#fff  url(../images/nh_MOB_main_card_04_1.png) no-repeat bottom 0 right 0 / cover;
    }
    .main .main-service .service-wrap .service-list ul li:nth-child(5) {
        margin-top: 10px;
        background:#fff  url(../images/nh_MOB_main_card_05_1.png) no-repeat bottom 0 right 0 / cover;
    }
    .main .main-service .service-wrap .service-list ul li:nth-child(6) {
        margin-top: 10px;
        background:#fff  url(../images/nh_MOB_main_card_06_1.png) no-repeat bottom 0 right 0 / cover;
    }

    /* namuh PLUG */
    .about-wrap .namuh-plug .namuh-plug-con01 {
        padding: 0;
    }

    .about-wrap .namuh-plug .namuh-plug-con02 {
        padding: 2.152rem;
        justify-content: space-between;
        width: auto;
        /* padding-bottom: 0; */
    }
    .about-wrap .namuh-plug .namuh-plug-con-title{

    }
    .about-wrap .namuh-plug .namuh-plug-con02 ul li {
        padding: 0.5rem 1rem 2.5rem;
    }

    /* api서비스 */

    body.user .user-content .list-api .dropdown-toggle {
        display: block;
    }
    body.user .user-content .list-api .dropdown-toggle {
        display: flex;
        font-size: var(--font-size-14);
        font-weight: var(--fw-regular);
        color: var(--black-70);
        width: 100%;
        padding: 0.375rem 0.75rem;
        background-color: #fff;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        height: 2.5rem;
    }

    .apiguide-wrap {
        padding: 0; /*+api가이드 전체 좌우패딩영역+*/
    }
    .apiguide-wrap>.page-title {
        margin-left: 0;
    }
    .main .main-service .service-wrap .service-list ul li a span {
        padding-right: 9rem;
    }
}

@media (max-width: 960px){
    .table-type-view [name=content] img {
        width: 100%;
    }
    .main .main-community > section {
        flex-direction: column;
    }
    .main .main-community > section div {
        width: 100%;
    }
    .main .main-community .notice h3 {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    .main .main-community .notice h3 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    /* 메인화면 */
    .main .content-wrap .main-intro {
        width: 100%;
        max-width: 100%;
    }
    .apiguide-wrap .apiguide-list .cardApi .cardApi-body {
        padding: 20px 0 40px;
    }

    footer .footer-wrap {
        font-size: 12px;
    }
    footer .footer-wrap .copyright {
        font-size: 12px;
    }

    /* N2추가 */
    .main .content-wrap .main-intro {
        height: 35.5rem;
        background-position: left -26rem bottom -14rem;
        padding: 0 4%;
        background-size: 180%;
    }
    /************/
    .main .main-service .service-wrap .title p {
        padding: 0.2rem 1rem 1rem;
        font-size: var(--font-size-17);
        font-weight: var(--fw-regular);
    }
    .main .content-wrap .main-intro .text-area {
        transform: translateY(40px);
    }
    .main .content-wrap .main-intro .text-area>h2{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-44);
        line-height: 130%;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-44);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
        font-size: var(--font-size-20);
    }

    .main .main-service .service-wrap .title div .img_NamuhPLUG_main_title {
        width: 9rem;
    }
    .main .main-service .service-wrap .title {
        font-size: var(--font-size-25);
    }
    .main .main-service .service-wrap .service-list ul li a span {
        line-height: 1.5;
        margin: 0.2rem auto;
    }
    .main .main-community {
        padding: 3.125rem 3.8rem 3rem;
    }
    .main .main-community .notice h3 {
        width: 100%;
    }
    .main .main-service .service-wrap .service-list ul li {
        height: 160px;
    }

    .main .main-service .service-wrap .service-list ul li a span {
        font-size: var(--font-size-15);
    }
    .main .main-service .service-wrap .service-list ul li a p {
        font-size: var(--font-size-20);
    }

    /* namuh PLUG */
    .about-wrap .namuh-plug .namuh-plug-con01 ul {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        width: 48.5%;
        margin-top: 14px;
        margin-bottom: 6rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 {
        display: flex;
        flex-direction: column;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 ul {
        width: calc(100%);
        flex-direction: row;
        flex-wrap: wrap;
    }
    .about-wrap .namuh-plug .namuh-plug-con-title {
        flex-direction: row;
        align-items: center;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 .namuh-plug-con-title{
        flex-direction: row;
        align-items: center;
    }

    .about-wrap .namuh-plug .namuh-plug-con02 ul li {
        width: 49%;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 .nh_sub_card-con span {
        padding-right: 4rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 ul li {
        height: 180px;
        margin-top: 10px;
    }
    .about-wrap .namuh-plug .nh_sub_card-con a {
        margin-top: 6px;
        padding-right: 4rem;
    }

    .table-wrap .list-info {
        margin-bottom: 0.6rem ;
    }
    .main .main-service .service-wrap .service-list ul li a span {
        padding-right: 0;
    }
    .about-wrap .namuh-plug .namuh-plug-con-title {
        margin-bottom: 0;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        margin-top: 4px;
    }
    body.user .user-content .title-depth02 h3 {
        font-size: var(--font-size-18);
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
        margin-top:0.3rem;
        padding-bottom: 0;
    }

    /* testbed 테이블 가로사이즈 통일 초기화 start */
    .swagger-section .swagger-ui-wrap table.fullwidth {
        width: 1000px !important;
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content .snippet_source_lang > div {
        width: 1000px;
    } /*  end */

}

@media (max-width: 610px) {
    /* 메인화면 */
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-34);
        line-height: 130%;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-34);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
        font-size: var(--font-size-18);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        width: 13.725rem;
        margin-top: 10px;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p {
        justify-content: center;
    }
    .main .content-wrap .main-intro {
        height: 33.5rem;
    }
    .main .content-wrap .main-intro {
        background-position: left 18% bottom;
    }

    .main .main-community > section .notice-right-list {
        padding: 0.2rem 0;
    }
    .page-title h2.img_NamuhPLUG_main_about_title {
        width: 13rem;
        height: 2.4rem;
    }

}

@media (max-width: 480px) {

    .console-wrap{
        padding: 0 1.25rem;/* testbed 전체 좌우여백 */
    }
    .console-wrap .text-wrap {
        padding: 0; /* testbed 검색영역 좌우여백 */
    }

    body.user .user-content .content-wrap {
        width: 100%;
        padding: 0; /* 1024부터 전체 감싸는 좌우 패딩 */
    }
    body.user .user-content {
        padding: 0 1.25rem;
    }

    /* 메인화면 */
    .main .content-wrap .main-intro .text-area {
        transform: translateY(30px);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-30);
        line-height: 130%;
    }
    .main .content-wrap .main-intro {
        height: 29rem;
        background-position: left 64% bottom -10rem;
        background-size: 214%;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        background: url(../images/N2_plug_logo.png) left top 0 / 98% no-repeat;
        width: 8rem;
        height: 2rem;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1>span {
        margin-top: 0.5rem;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p {
        height: 40px;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-30);
        line-height: 130%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span{
        font-size: var(--font-size-30);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
        font-size: var(--font-size-16);
        line-height: 150%;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p {
        justify-content: center;
    }

    .main .main-service h3 {
        font-size: var(--font-size-20);
        font-weight: var(--fw-semibold);
    }

    .main .main-service p {
        font-size: var(--font-size-13);
        font-weight:  var(--fw-regular);
    }
    .main .main-service .service-wrap .service-list ul li {
        width: calc(45% - 10px);
        padding: 1.25rem;
    }
    .main .main-service .service-wrap .service-list ul li a span {
        font-size: var(--font-size-13);
        line-height: 1.4;
    }
    .main .main-service .service-wrap .service-list ul li a p {
        font-size: var(--font-size-18);
        padding-bottom: 0;
    }
    .main .main-service .service-wrap .title {
        /* margin-bottom: 0.6rem; */
    }
    .main .main-community {
        padding: 2.5rem;
    }
    .main .main-community .notice h3 {
        font-size: 1.24rem;
        display: flex;
        justify-content: space-between;
    }
    .main .main-community .notice h3 span.ico-right {
        font-size: var(--font-size-16);
        margin-left: 0.8rem;
        display: none;
    }
    .main .main-community > section .notice-right-list a {
        font-size: var(--font-size-15);
    }
    .main .main-community > section .notice-right-list .notice-right-list-date {
        font-size: var(--font-size-15);
        display: none;
    }
    .main .main-community .notice h3 .btn-main-more-m {
        padding: 0.28rem 1rem;
    }

    .main .main-service .service-wrap .title p {
        font-size: var(--font-size-15);
    }
    .main .main-service .service-wrap .service-list ul li {
        height: 124px;
        border-radius: 12px;
        margin: 5px;
        margin-top: 5px;
    }

    /* footer */
    footer .footer-wrap {
        padding: 0 1.25rem 0;
    }
    footer .footer-wrap .inner .footer-link a:after {
        height: 7px;
    }
    footer .footer-wrap .inner, footer .footer-wrap .inner a {
        font-size: var(--font-size-10);
        letter-spacing: 0;
    }



    /* namuh PLUG */
    .page-title {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        /* padding-left: 1.25rem; */
        padding-right: 1.25rem;
    }
    .content-wrap .about-wrap .page-title {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        /* padding-left: 1.25rem; */
        padding-right: 1.25rem;
    }

    .page-title p {
        font-size: var(--font-size-14);
        padding: 0;
    }

    .page-title h2.img_NamuhPLUG_main_about_title {
        width: 9rem;
        height: 2.5rem;
    }
    .about-wrap .namuh-plug .nh_sub_card-con span {
        margin-top: 0.2rem;
    }

    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        margin-bottom: 6rem;
    }
    .about-wrap .namuh-plug .nh_sub_card-con {
        height: 190px;
        padding-top: 200px;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 {
        margin-bottom: 0;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 {
        margin: 3rem auto;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 .nh_sub_card-con span {
        padding-right: 0rem;
    }
    .admin-app-step2 .namuh-plug .nh_sub_card-con a {
        padding-right: 0rem;
    }
    .about-wrap .namuh-plug .nh_sub_card-con .nh_sub_card-con-title {
        margin-top: 0.6rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 ul li {
        padding: 0.5rem 0.7rem 2.5rem;
    }

    /* table */
    /* .table-wrap {
        width: 100%;
        max-width:100%;
        min-width: 100%;
        padding: 0 1.25rem;
    } */
    body.user .user-content .content-wrap .table-wrap {
        clear: both;
        overflow: auto;
    }

    .table-wrap .table-search {
        display: none;
    }
    .table-wrap .list-info {
        margin-bottom: 0.5rem
    }
    .apiguide-wrap {
        padding: 0;
    }
    .table-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    body.user .user-content .title-depth02 h3{
        font-size: var(--font-size-16) !important;
        padding: 0.7rem 0;
    }
    body.user .user-content .title-depth03 h4 {
        font-size: var(--font-size-16);
        padding: 2rem 0 0.75rem;
    }

    .main .main-service .service-wrap .title div .img_NamuhPLUG_main_title {
        background-position: left top 7px ;
        width: 8.2rem;
        height: 2rem;
    }
    .main .main-service .service-wrap .service-list ul {
        padding: 0;
    }
    .about-wrap .namuh-plug .namuh-plug-con-title .img_NamuhPLUG_main_con_title {
        width: 9.5rem;
        padding-left: 7rem;
    }

    .about-wrap .namuh-plug .namuh-plug-con01 {
        padding: 0 2rem;
    }
    body.user .user-content .title-depth03 h4 {
        padding: 1rem 0 0.3rem !important;
    }
    .table-wrap .table-type-h {
        font-size:var(--font-size-14);
    }

    table th td, table th, table div, table p, table span{
        font-size: var(--font-size-14);
    }

    .table-wrap .table-type-v > tbody > tr > th {
        font-size: var(--font-size-14);
    }
    .table-wrap .table-type-v > tbody > tr > td {
        font-size: var(--font-size-14) !important;
    }
    .table-wrap .table-type-v thead tr th {
        font-size: var(--font-size-14);
    }
    .console-wrap .search-console {
        padding: 1.5rem;
    }
    .table-wrap table th {
        padding: 0.5rem;
    }
    .apiguide-wrap .apiguide-list .cardApi.open > .cardApi-header > .apiName {
        font-size: var(--font-size-14);
    }

    .table-wrap .btn-write {
        width: auto; height:2.8rem;
        padding: 0 1.25rem;
        font-weight: var(--fw-medium);
        background: var(--warning-gradient-color-green-02);
        border-radius: var(--radius-round);
        color: var(--white);
        font-size: var(--font-size-16);
    }
    .console-wrap .swagger-section .swagger-ui-wrap .info .info_title {
        font-size: var(--font-size-22);
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
        padding: 1rem 0;
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
        font-size: var(--font-size-20) !important;
        margin-bottom: 0.5rem;
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span a {
        font-size: var(--font-size-20) !important;
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
        padding: 20px 20px !important;
    }
    .console-wrap .swagger-section .swagger-ui-wrap table thead tr th {
        font-size: var(--font-size-14);
        padding: 0.4rem 4px;
    }
    .console-wrap .swagger-section .swagger-ui-wrap table tbody tr td {
        font-size: var(--font-size-14);
        padding: 0.5rem;
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
        padding: 0 1rem 2.5rem !important; /*  테스트베드안에  form영역에 패딩을 상단빼고 주어서 리스트안에 여백 보이도록 설정 0512 */
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
        height: 2.9rem !important;
        font-size: var(--font-size-18);
        font-weight: var(--fw-medium)
    }
    .about-wrap .namuh-plug .namuh-plug-con-title .img_NamuhPLUG_main_con02_title {
        width: 9rem;
    }

    /* 팝업 */
    .QRPOPUP .QR-title-icon img {
        width: 3.125rem;
    }

    /* api가이드 모바일 셀렉박스 세로사이즈 조정 */
    body.user .user-content .list-api .dropdown-menu {
        width: 100%;
        font-size: var(--font-size-14);
        height: 300px;
        overflow: scroll;
        background: #ffffff;
    }

}
/*
@media (max-width: 480px){
    .main .main-community .notice h3 {
        flex-direction: column;
        align-items: flex-start;
    }
    .main .main-community .notice h3 span.ico-right {
        display: none;
    }
    .main .main-community .notice h3 {
        flex-direction: row;
        justify-content: space-between;
    }
    .main .main-community .notice h3 {
        margin-bottom: 0.9rem;
    }
    .main .main-community > section .notice-right-list a {
        font-size: var(--font-size-14);
    }
    .main .main-community > section .notice-right-list .notice-right-list-date {
        font-size: var(--font-size-14);
    }
    .main .main-community > section .notice-right-list .notice-right-list-noti span {
        font-size: var(--font-size-14);
    }
    .main .main-community > section .notice-right-list {
        padding: 0;
    }
}
*/
.main .main-service {
    padding: 3.125rem 0;
    background: var(--warning-gradient-color-green-01);
}

@media (max-width:414px) {
    .main .main-service {
        padding: 2rem 0;
    }
    .about-wrap .namuh-plug .nh_sub_card-con {
        height: 170px;
        padding-top: 170px;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        height: 170px;
    }
    .forum-view-wrap .reply-wrap > .comment-wrap, .notice-view-wrap .reply-wrap > .comment-wrap {
        padding: 14px 0;
        border-top: 1px solid #cbd0d4;
    }
}

@media (max-width: 390px) {

    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-28);
    }
}

@media (max-width: 375px) {
    /* 메인비주얼 텍스트 */
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-25);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-25);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        width: 7.7rem;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        margin-top: 11px;
    }
    .transition-title .txt-move2 {
        margin-top: 0.3rem;
    }
    .main .content-wrap .main-intro {
        height: 27rem;
        background-position: left 64% bottom -8rem;
        background-size: 243%;
    }


    .main .main-service .service-wrap .title div .img_NamuhPLUG_main_title {
        width: 7rem;
        height: 2rem;
    }
    .main .main-service .service-wrap .title p {
        font-size: var(--font-size-12) ;
        font-weight:  var(--fw-regular);
    }

    .main .main-service .service-wrap .service-list ul li a p {
        line-height: 1.1;
        font-size: var(--font-size-14);
        padding-bottom: 0;
        margin: 0.2rem;
    }
    .main .main-service .service-wrap .service-list ul li a span {
        line-height: 1.4;
        font-size: var(--font-size-10);
        display: block;
        margin-left: 0.2rem;
    }
    .main .main-service .service-wrap .service-list ul li {
        margin: 0.3rem;
        width: calc(44% - 10px);
        padding: 0.55rem;
        border-radius: 0.6rem;
        height: 5.625rem;
    }
    .main .main-service .service-wrap .service-list ul {
        padding: 0;
    }
    .main .main-service div {
        font-size: var(--font-size-20);
        font-weight: var(--fw-semibold);
    }
    .main .main-community {
        padding:1.2rem 2rem;
    }
    .main .main-service .service-wrap .title {
        height: 5rem;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p {
        margin-top: 0;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1>span {
        margin-top: 0;
    }
    .page-title h2.img_NamuhPLUG_main_about_title {
        width: 8.7rem;
        height: 2.3rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        height: 130px;
    }
    .about-wrap .namuh-plug .nh_sub_card-con {
        height: 160px;
        padding-top: 160px;
    }
    .about-wrap .namuh-plug .nh_sub_card-con a {
        padding-right: 2rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 {
        padding: 0 1.7rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 {
        padding: 1.7rem;
    }
}
@media (max-width: 360px) {

    body {
        font-size: 0.875em;
    }
    /* .page-title {
        padding-left: 1.25rem;
    } */

    /* .main .content-wrap {
        /* margin: 5rem 0 0;
        margin: 0;
    } */
    .main .main-community {
        width: 100%;
        flex-flow: column;
        padding: 1.8rem 1.4rem 0.2rem; /*  메인화면 하단 뉴스영역 여백설정 */
    }

    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-25);
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p{
        margin-top: 0;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-25);
        margin-top: 0;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        background-position: left top 0px;
        width: 7.2rem;
        background-size:100%;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
        font-size: var(--font-size-13);
        margin-top: 0.25rem;
        display: block;
    }

    .main .content-wrap .main-intro {
        background-size: 230%;
        padding: 0.3rem 1.5rem;
        background-position: left -19rem top -8rem;
        height: 24rem;
    }
    .main .main-service .service-wrap .title {
        margin-bottom: 0;
    }

    .main .main-service .service-wrap .service-list ul li:nth-child(1),
    .main .main-service .service-wrap .service-list ul li:nth-child(2),
    .main .main-service .service-wrap .service-list ul li:nth-child(3),
    .main .main-service .service-wrap .service-list ul li:nth-child(4),
    .main .main-service .service-wrap .service-list ul li:nth-child(5),
    .main .main-service .service-wrap .service-list ul li:nth-child(6) {
        margin-top: 0.2rem;
    }

    header .header-wrap .gnb-wrap .menu-wrap {
        width: initial;
    }

    header .header-wrap .gnb-wrap a.logo h1 {
        background-size: 96px;
        width: fit-content;
        line-height: 36px;
    }

    .main .main-service .service-wrap .title {
        height: 5.5rem;
    }
    .main .main-service {
        background-size: 100%;
        background-position: center bottom;
    }

    .main .content-wrap .main-intro .text-area > h2 {
        font-size: 2rem;
    }
    .main .main-community .notice ul {
        padding: 10px 16px;
    }
    .main .main-community .notice ul li {
        height: 40px;
        line-height: 40px;
    }
    .main .main-community .notice ul li a {
        line-height: 40px;
        width: 100%;
    }
    .main .main-community .notice ul li span {
        display: none;
    }
    .main .main-community .banner ul li {
        height: 180px;
    }
    .main .main-community .banner ul li div {
        padding: 1rem;
    }
    .main .main-community .banner ul li div a {
        padding-top: 0;
        padding-bottom: 50px;
    }
    .main .main-community .banner ul li div a p {
        font-size: 1em;
    }
    .main .main-community .banner ul li:first-child {
        margin-right: 5px;
    }
    .main .main-community .banner ul li:last-child {
        margin-left: 5px;
    }
    .table-wrap {
        width: 100%;
        min-width: 100%;
        /* padding: 0 1.25rem; */
    }

    .apiguide-wrap form .table-wrap,
    .apiguide-wrap form .title-depth03,
    .apiguide-wrap form .title-depth04{
        padding-left: 0 !important; /* mobile만 좌측 패딩 제거 */
    }

    body.user .user-content .content-wrap .table-wrap {
        clear: both;
        overflow: auto;
    }
    body.user .user-content .content-wrap .table-wrap .table-search {
        display: none;
    }
    body.user .user-content .content-wrap .table-wrap .list-info {
        font-size: 0.925em;
    }
    .table-wrap .list-info {
        margin-bottom: 0.2rem;
    }
    .table-wrap .list-info .list-count{
        font-size: var(--font-size-12);
    }
    body.user .user-content .content-wrap .modal-body .table-wrap {
        width: 100%;
        min-width: 100%;
        background-color: #0386b8;
    }
    body.user .user-content .content-wrap .modal-body .table-wrap img {
        width: 100%;
    }
    body.user .user-content .content-wrap .page-title {
        display: flex;
        flex-flow: column;
        height: initial;
        padding-left: 0;
    }
    body.user .user-content .content-wrap .page-title h2 {
        font-size: var(--font-size-24);
        color: var(--black-90);
        font-weight: var(--fw-semibold);
        margin-bottom: 0.5rem;
    }
    body.user .user-content .content-wrap .page-title .breadscrumb {
        clear: both;
        float: left;
        padding: 6px 0 10px 6px;
    }
    body.user .user-content .content-wrap .page-title + .text-wrap {
        clear: both;
        padding-top: 1rem;
    }
    body.user .user-content .content-wrap figure {
        justify-content: start;
    }
    body.user .user-content .content-wrap .jsgrid-grid-header .jsgrid-header-row > .jsgrid-header-cell {
        display: none;
    }
    body.user .user-content .content-wrap .jsgrid-grid-body .jsgrid-row .jsgrid-cell:not(:first-child) {
        display: none;
    }

    body.user .user-content .content-wrap .jsgrid-grid-body .jsgrid-alt-row > .jsgrid-cell:not(:first-child) {
        display: none;
    }

    .console-wrap .search-console > div select {
        margin: 4px 0;
        width: 100%;
    }

    .console-wrap .swagger-section .swagger-ui-wrap .info {
        padding-bottom: 0;
    }

    .console-wrap .swagger-section .swagger-ui-wrap .info .info_description > p {
        padding: 0;
    }

    .table-wrap .table-type-view tbody tr td {
        font-size: 1rem;
        overflow: hidden;
        padding: 0 0.625rem 0.3rem;
    }

    footer .footer-wrap .link-related .link-affiliate {
        font-size: 13px;
    }

    footer .footer-wrap .inner .footer-link a:after {
        margin: auto 10px;
    }


    body.user .user-content .list-api .dropdown-toggle {
        display: flex;
        font-size: var(--font-size-14);
        font-weight: var(--fw-regular);
        color: var(--black-70);

        width: 100%;
        padding: 0.375rem 0.75rem;
        background-color: #fff;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        height: 2.5rem ;
    }

    .apiguide-wrap .apiguide-list .cardApi .cardApi-body {
        padding: 20px 0 40px;
    }

    .apiguide-wrap .apiguide-list .cardApi .cardApi-body .title-depth04{
        padding: 0 1.125rem;
    }

    .table-wrap .table-type-view tbody tr th{
        width: 32%;
    }
    .table-wrap .table-type-view tbody tr td span {
        font-size: var(--font-size-14);
        color: var(--black-70)
    }
    .table-wrap table th{
        padding: 0.5rem;
    }
    .table-wrap .table-type-view tbody tr td[name=title]{
        font-size: var(--font-size-20) !important;
    }
    /* table */
    .apiguide-wrap {
        padding: 0;
    }


    /* 메인화면 */
    .main .main-service {
        padding: 24px 0;
        background: var(--warning-gradient-color-green-01);
    }

    .main .main-community > section{
        flex-direction: column;
    }
    .main .main-community > section .notice-right-list{
        width:100%;
        padding: 0.2rem 0 !important;
    }
    .main .main-community .notice h3 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.4rem;
        width: 100%;
    }
    .main .main-community .notice h3 a {
        font-size: var(--font-size-18) !important;
        flex-direction: column;
        align-items: flex-start !important;
    }
    .main .main-community .notice h3 .btn-main-more-m {
        display: block;
        width: auto;
        padding: 0.3rem 0.6rem;
        height: 1.5rem;
        font-weight: var(--fw-regular);
        background: var(--warning-gradient-color-green-02);
        border-radius: var(--radius-round);
        color: var(--white);
        font-size: var(--font-size-12) !important;

    }
    .main .main-community .notice h3 a span {
        padding-left:0 !important;
        font-size: var(--font-size-14) !important;
        padding-top: 0.3rem;
    }
    .main .main-community > section .notice-right-list .notice-right-list-noti{
        width : 27% ;
    }

    .main .main-community > section .notice-right-list a{
        width : 76% ;
    }
    .main .main-community > section .notice-right-list .notice-right-list-date{
        display: none !important;
    }
    .main .main-community > section .notice-right-list .notice-right-list-date .btn-main-more-m{
        display: block;
    }

    body.user .user-content .title-depth03 h4 {
        font-size:var(--font-size-18);
        padding: 1rem 0 1rem;
    }

    body.user .user-content .title-depth04 h5 {
        font-size: var(--font-size-13);
        padding: 4px 12px;
        height: 1.5rem;
    }

    .apiguide-wrap {
        padding-left: 0;
    }
    /* .apiguide-wrap form{
        padding: 0 1.25rem;
    } */

    .main .main-community > section .notice-right-list .notice-right-list-noti span{
        padding-right: 0.5rem;
    }

    .main .main-community .notice h3 .btn-main-more-m{
        display: block;
    }

    body.user .user-content .title-depth02, body.user .user-content .title-depth03{
        padding-left: 0;
    }
    body.user .user-content .title-depth02 h3 {
        font-size:var(--font-size-22); /*api가이드 테이블 타이틀1*/
    }

    .apiguide-wrap .apiguide-list .cardApi .cardApi-header {
        width: 100%;
        height: auto;
    }

    .apiguide-wrap .apiguide-list .cardApi.open > .cardApi-header .btn-min,
    .apiguide-wrap .apiguide-list .cardApi .cardApi-header .btn-plus {
        background-size: 1.5rem 1.5rem;
        width: 1.6rem;
        height: 1.6rem;
    }
    .apiguide-wrap .apiguide-list .cardApi.open > .cardApi-header > .apiName {
        font-size: var(--font-size-14);
        line-height: 1.6;
    }

    .apiguide-wrap .apiguide-list .cardApi .cardApi-body .sample-wrap {
        margin-top: 0.625rem;
    }

    .code-wrap {
        margin: 0;
        margin-bottom: 1rem;
    }

    .forum-view-wrap .btn-reply-write, .notice-view-wrap .btn-reply-write {
        width: 6.25rem;
        height: 2.2rem;
        padding: 0 1rem;
        font-weight: var(--fw-medium);
        background: var(--warning-gradient-color-green-03);
        border-radius: var(--radius-round);
        color: var(--white);
        font-size: var(--font-size-14);
    }

    /* .console-wrap .text-wrap{
        padding: 0 1.25rem;  테스트베드 검색영역 좌우 여백 설정값
    } */

    .console-wrap .search-console {
        padding: 1.625rem;
    }

    .console-wrap .swagger-section .swagger-ui-wrap .info .info_title {
        font-size: var( --font-size-22);
    }
    .console-wrap .swagger-section .swagger-ui-wrap .info .info_description > p{
        font-size: var(--font-size-16);
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .markdown {
        background-size: 1.5rem 1.5rem;
        width: 1.6rem;
        height: 1.6rem;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
        width:1.5rem;
        height: 1.6rem;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .toggleEndpointList,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .toggleEndpointList:hover,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .collapseResource,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .collapseResource:hover,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .expandResource,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li .expandResource:hover{
        background-size: 1.5rem 1.5rem;
        width: 1.6rem;
        height: 1.6rem;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
        flex: auto;
        /* font-weight: 800; */
        font-size: 18px;
        font-family: inherit;
        padding: 1rem 0;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 .http_method a {
        width: 4rem !important;
        font-size: var(--font-size-13) !important;
        font-weight: var(--fw-regular) !important;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span a {
        font-size: var(--font-size-18) !important;
        font-weight: var(--fw-semibold) !important;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
        height: 2.8rem !important;
        padding: 0 1.25rem!important;
        font-size: var(--font-size-16)!important;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
        padding: 1rem !important;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading.on,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading.on,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading.on,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading.on {
        padding: 0 !important;
    }

    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4,
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
        margin-top: 0;
        font-size: var(--font-size-16) !important;
        margin-top: 6px;
        margin-bottom: 0
    }

    .form-control {
        font-size: var(--font-size-14);
        font-weight: var(--fw-regular);
        color: var(--black-70);
    }

    .table-wrap{
        font-size: var(--font-size-14);
        /* padding: 0 1.7rem; */
    }
    .main .main-service .service-wrap .service-list ul {
        padding: 0;
    }

    /* namuh PLUG */
    .page-title p {
        padding: 0;
    }
    .about-wrap .namuh-plug .nh_sub_card-con {
        height: 145px;
        padding-top: 126px;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        margin-bottom: 4rem;
    }
    .about-wrap .namuh-plug .nh_sub_card-con a {
        padding-right: 0;
        font-size: var(--font-size-10);
        margin-top: 3px;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 ul li {
        height: 160px;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 {
        margin: 0;
        padding: 30px 20px;
    }
    .about-wrap .namuh-plug .namuh-plug-con-title img {
        width: 70%;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 {
        margin-bottom: 3rem;
    }
    .console-wrap .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li {
        display: flex;
    }

    /* namuh PLUG */
    .content-wrap .about-wrap .page-title {
        padding-left: 1.25rem;
    }

}

@media (max-width: 320px) {
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 {
        font-size: var(--font-size-22);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span {
        font-size: var(--font-size-22);
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 p span.img_NamuhPLUG_main_move {
        width: 6.3rem;
        background-position: left top 0px;
    }
    .main .content-wrap .main-intro .text-area > h2 .txt-move1 span {
        margin-top: 0;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 {
        padding: 0 1.25rem;
        margin-bottom: 1.5rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con01 ul li {
        height: 130px;
        margin-bottom: 5rem;
    }
    .about-wrap .namuh-plug .nh_sub_card-con {
        padding-top: 126px;
    }
    .about-wrap .namuh-plug .namuh-plug-con-title .img_NamuhPLUG_main_con_title {
        width: 9rem;
        padding-left: 6.5rem;
        padding-top: 3px;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 ul li {
        height: 170px;
    }
    .main .content-wrap .main-intro {
        background-size: 230%;
        background-position: left -16.5rem top -5rem;
    }
    .about-wrap .namuh-plug .namuh-plug-con02 .namuh-plug-con-title {
        width: 9.5rem;
    }

}

/* ======================================================================
   API 하위 항목 등록 모달 전용 스타일 (api-table)
   ====================================================================== */
.api-table {
    width: 1225px !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
}

/* 레이블 폭 100px 고정 */
.api-table .col-label {
    width: 100px !important;
}

/* 레이블 폭 FIX 고정 */
.api-table .col-label-fix {
    width: 180px !important;
}

/* 특정 영역 FIX 고정 */
.api-table .col-input-fix {
    width: 220px !important;
}

/* 특정 가변 영역 */
.api-table .col-input-auto {
    width: auto !important;
}

/* 우측 고정 버튼 영역 */
.api-table .api-form-control {
    width: 20% !important;
    display: revert !important;
    padding: 4px 4px 4px 25px !important;
}

.api-table .api-form-control1 {
    width: 23% !important;
    display: revert !important;
    padding: 4px 4px 4px 25px !important;
}

.api-table .api-form-control2 {
    width: 35% !important;
    display: revert !important;
    padding: 4px 4px 4px 25px !important;
}

.api-table .no-float {
    float: none !important;
    margin: 0 !important;
}

/* 우측 고정 버튼 영역 */
.api-table .col-fixed {
    width: 40px !important;
}


/*
.modal-backdrop{
    z-index: 10000 !important;
}
.modal-content{
    z-index: 120010 !important;
} */