/*=================================================
                컴포넌트 정보 페이지
=================================================*/
/*****#####===== 상단 헤더 =====#####*****/
.component-layout .header-wrap{
    background-color: var(--helper-color-primary);

    color: #ffffff;
}

.component-layout .header-wrap .line-header{
    padding-top: 0.5rem;
}

.component-layout .header-wrap .version-wrap{
    font-size: 0.75rem;
}

/*****##### 메뉴 이동 영역 #####*****/
.component-layout .header-wrap .form-header{
    padding: 1.5rem 0;
}

/*****#####===== 아이템 영역 =====#####*****/
/*****##### 아이템 타이틀 #####*****/
.component-layout .part-title-wrap {
    padding: 2.5rem 0;
}

.component-layout .part-title-wrap .part-title{
    font-size: 3.125rem;
    font-weight: bold;
}

.component-layout .part-title-wrap .part-subtitle{
    margin-top: 0.25rem;

    color: #555555;
}

/*****##### 주의사항 및 약속 #####*****/
.component-layout .part-caution-wrap{
    padding: 1rem;

    background-color: #E1E7F8;
}

.component-layout .part-caution-wrap .caution-item{
    font-size: 0.875rem;
    line-height: 1.3125rem;
}

.component-layout .part-caution-wrap .caution-item::before{
    content: "·";
    margin-right: 0.5rem;
    font-weight: bold;
}

/*****##### 아이템 영역 #####*****/
.component-layout .part-item-wrap{
    margin-bottom: 5rem;
}

.component-layout .part-item-wrap .part-item{
    padding: 2.5rem 0;
}

.component-layout .part-item .part-item-content:not(:first-child){
    margin-top: 1rem;
}

/*=================================================
                공통
=================================================*/
/*****#####===== col =====#####*****/
@media (min-width: 768px){
    .col-md-5 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/*****#####===== 버튼/색상 =====#####*****/
.point-btn-outline-secondarylight {
    color: #ffffff !important;

    background-color: transparent;
    border: 1px solid #ffffff;
}

.point-btn-outline-secondarylight:hover,
.point-btn-outline-secondarylight:active,
.point-btn-outline-secondarylight:focus-visible {
    color: #ffffff !important;

    background-color: transparent;
    border: 1px solid #ffffff;
}

/*****#####===== 페이지 =====#####*****/
.page-wrap:not([data-menu="main_menu"]){
    padding-bottom: 6.25rem;
}

/*****#####===== 페이지 헤더 =====#####*****/
.page-header-wrap{
    margin-bottom: 2.5rem;
    padding: 2.5rem 0;

    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;

    background: #6CA7FF;
}

.page-header-wrap .header-line{
    margin-top: 1.875rem;

    width: 3.125rem;
    height: 0.376rem;

    background: #ffffff;
}

/*****#####===== 더보기 버튼 =====#####*****/
.more-link{
    display: inline-block;

    font-size: 0.875rem;
    font-weight: 700;
    color: #6CA7FF !important;

    border-bottom: 1px solid #6CA7FF;
}

/*****#####===== 컨텐츠 박스 =====#####*****/
.content-box.lists-item-wrap{
    border: 1px solid #dddddd;
    box-shadow: none;

    transition: all .3s;
}

.content-box.lists-item-wrap:hover{
    border: 1px solid #ffffff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);

    transition: all .3s;
}

/*****#####===== 리스트 아이템 =====#####*****/
.lists-item-wrap .item-title{
    margin-bottom: 1rem;

    font-size: 1.25rem;
    font-weight: 700;
}

.lists-item-wrap .item-content{
    color: #555555;
}

/*****#####===== 정보 영역 =====#####*****/
.info-wrap:not(:last-child){
    margin-bottom: 6.25rem;
}

.info-item-wrap{
    padding: 1.5rem 0;

    border-bottom: 1px solid #dddddd;
}

.into-title-wrap{
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;

    border-bottom: 1px solid #dddddd;
}

.info-title{
    font-size: 1.375rem;
    font-weight: 700;
}

.info-content{
    margin-top: 1.25rem;

    line-height: 1.25rem;
}

/*****#####===== 딤 박스 =====#####*****/
.detail-box{
    position: relative;
}

.detail-box .dim-box{
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    font-size: 1.5rem;
    color: #ffffff;

    background: #0000007a;
    opacity: 0;
    cursor: pointer;

    transition: opacity .3s;
}

.detail-box:hover .dim-box{
    opacity: 1;

    transition: opacity .3s;
}

/*****#####===== 검색 =====#####*****/
.srch-wrap .form-box{
    border: 1px solid #dddddd;
    border-radius: var(--bs-border-radius);;
}

.srch-wrap .form-box .form-control{
    border: none;
}

.srch-wrap .form-box .srch-btn{
    padding-right: 0.75rem;

    background: transparent;

    border: none;
}

/*****#####===== 게시판 =====#####*****/
.board-lists-wrap{
    border-top: 1px solid #999999;
}

.board-lists-wrap .lists-item{
    display: block;

    padding: 2.125rem 0;

    border-bottom: 1px solid #E9E9E9;

    transition: background-color .3s;
}

.board-lists-wrap .lists-item:hover{
    background: #F9F9F9;

    transition: background-color .3s;
}

/*****#####===== 페이지네이션 =====#####*****/
.pagination-wrap .page-link{
    padding: 0.417rem 0.5rem;

    font-size: 0.875rem;
}

.pagination-wrap .page-item.active .page-link{
    color: #6CA7FF;
}

.pagination-wrap .page-item.direct-page-item .page-link{
    border-radius: 0.333rem;
}

/*****#####===== view =====#####*****/
.view-title-wrap{
    margin: 4rem 0;
    padding-bottom: 2.5rem;

    border-bottom: 1px solid #dddddd;
}

.view-content-box{
    line-height: 1.5rem;
}

.attach-item-wrap:not(:last-child){
    margin-bottom: 0.75rem;
}

.attach-item{
    border: 1px solid #dddddd;
}

/*****#####===== 태그 =====#####*****/
.tag-item{
    display: inline-block;

    padding: 0.125rem 0.5rem;

    font-size: 0.875rem;
    line-height: 1.5em;
    color: #555555;

    background: #F5FDFF;
    border-radius: 0.25rem;
}

/*****#####===== 탭메뉴 =====#####*****/
.tab-menu-line{
    margin-bottom: 1rem;
}

.tab-menu-line .tab-item.active{
    color: #6CA7FF;

    border-bottom: 1px solid #6CA7FF;
}

.tab-menu .tab-item{
    display: block;

    padding: 1.25rem 0;

    font-weight: 500;
    text-align: center;

    border: 1px solid #dddddd;
}

.tab-menu .tab-item.active{
    color: #6CA7FF;

    border: 1px solid #6CA7FF;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** sm *****/
@media (min-width: 100px) and (max-width: 768px){
    .info-wrap:not(:last-child){
        margin-bottom: 4rem;
    }

    .tab-menu-line .tab-item {
        font-size: inherit;
    }
}

/*=================================================
                네비게이션
=================================================*/
/*****#####===== 네비게이션 =====#####*****/
#gnb-wrap{
    background: #ffffff;

    border-bottom: 1px solid #dddddd;
}

#gnb-wrap .logo-wrap{
    display: inline-block;

    max-width: 7rem;
}

#gnb-wrap .nav-item{
    position: relative;

    padding: 1.875rem 0;
}

#gnb-wrap .nav-link.active{
    color: #6CA7FF;
}

#gnb-wrap .nav-item:hover > .submenu-wrap{
    display: block;
}

#gnb-wrap .menu-btn,
#m-gnb-wrap .menu-btn{
    font-size: 2rem;

    cursor: pointer;
}

/*****##### 서브메뉴 #####*****/
#gnb-wrap .submenu-wrap{
    display: none;

    position: absolute;
    top: 5rem;
    left: 50%;

    width: 9.375rem;
    padding: 0.625rem 0;

    font-size: 0.875rem;
    text-align: center;

    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.089);

    transform: translateX(-50%);
}

#gnb-wrap .sub-item{
    display: block;

    padding: 0.625rem 1.25rem;

    transition: color .3s;
}

#gnb-wrap .sub-item:hover{
    color: #6CA7FF;

    transition: color .3s;
}


/*****#####===== 모바일 네비게이션 =====#####*****/
#m-gnb-wrap{
    position: fixed;
    top:0;
    left:-100%;

    width: 100%;
    height: 100vh;

    background: #ffffff;

    overflow-y: scroll;

    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease-in-out;

    z-index: 1031;
}

#m-gnb-wrap .gnb-top-wrap{
    padding: 0.75rem 0;

    border-bottom: 1px solid #dddddd;
}

#m-gnb-wrap .logo-wrap{
    display: inline-block;

    max-width: 5.5rem;
}

/*****##### show #####*****/
#m-gnb-wrap.show{
    left: 0;
}

#m-gnb-wrap.show::-webkit-scrollbar{
    display: none;
}

/*****##### 메뉴 #####*****/
#m-gnb-wrap .menu-wrap{
    padding: 1.25rem 0;
}

#m-gnb-wrap .item-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1.25rem 0;

    font-size: 1.286rem;
    font-weight: 700;
}

#m-gnb-wrap .item-icon{
    font-size: 1rem;
    color: #777777;
}

/*****##### 서브 메뉴 #####*****/
#m-gnb-wrap .submenu-wrap{
    padding: 0 1.5rem;
}

#m-gnb-wrap .sub-item{
    display: block;

    padding: 0.5rem 0;
}

#m-gnb-wrap .sub-item.active{
    color: #6CA7FF;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** md *****/
@media (min-width: 100px) and (max-width: 768px) {
    #gnb-wrap{
        padding: 0.75rem 0;
    }

    #gnb-wrap .logo-wrap{
        max-width: 5.5rem;
    }
}

/*=================================================
                푸터
=================================================*/
.footer-wrap{
    color: #222222;

    border-top: 1px solid #dddddd;

    background: #FFFFFF;
}

.footer-wrap .each-line:not(:last-child){
    margin-right: 0.25rem;
    padding-right: 0.625rem;
}

.footer-wrap .each-line:not(:last-child)::after{
    height: 0.875rem;

    background: #222222;
}


/*=================================================
                컴포넌트 정보 페이지
=================================================*/