@charset "utf-8";

/* Board Reset
-------------------------------------------------------------------------------------------------------- */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

/* 상단 100% 스타일 */

#xet_board {
    position: relative;
    line-height: 1.5;
    color: #1e1e1e;
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    margin-bottom: 10%;
}

#xet_board.black {
    color: #ccc;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.xet_clearfix {
    *zoom: 1;
}

.xet_clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.fs-10 {
    font-size: 10px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.pd-10 {
    padding: 10px;
}

.pd-15 {
    padding: 15px;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* header
-------------------------------------------------------------------------------------------------------- */
.header_text {
    font-size: clamp(60px, 8vw, 200px);
    font-weight: bold;
    margin: 1em 0;
    color: #1e1e1e;
}

.footer_text {
    margin-top: 15px;
}

/* 게시판 제목 */
.boardTitle {
    position: relative;
    margin-bottom: 30px;
}

.boardTitleText {
    font-size: 18px;
    font-weight: bold;
}

.boardTitleText a {
    text-decoration: none;
    color: #333;
}

.boardTitleText a img {
    max-width: 100%;
}

/* 게시판 부제목 */
.boardTitleText a em {
    font-style: normal;
    font-weight: normal;
    color: #555;
}

/* 게시판 상세설명 */
.boardTitle .boardDescription {
    font-size: 14px;
    margin-top: 15px;
    color: #555;
}

/* colorset - board_dark */
#xet_board.black .boardTitleText a {
    color: #fff;
}

#xet_board.black .boardTitleText a em {
    color: #ccc;
}

#xet_board.black .boardDescription {
    color: #ccc;
}



/* 탭 스타일 카테고리 
-------------------------------------------------------------------------------------------------------- */
.categoryWrp {
    margin-bottom: 4em;
}

.categoryList {
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.categoryList li {
    display: inline-block;
    position: relative;
    padding: 0;
}

.categoryList li a {
    display: inline-block;
    text-decoration: none;
    font-size: clamp(18px, 3vw, 26px);
    line-height: 2em;
    color: #969696;
    padding-right: 1em;
    font-weight: 400;
}

.categoryList li a.on {
    color: #463a39;
}

.categoryList li a:hover {
    color: #463a39;
}

/* 2차 카테고리 */
.categoryList ul {
    list-style: none;
    z-index: 9;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    margin-top: -1px;
    background: #fff;
    border: 1px solid #e1e1e1;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.categoryList li li {
    float: none;
    margin: 0;
    padding: 0;
    width: 180px;
}

.categoryList li li a {
    float: none;
    display: block;
    border: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

/* 3차 카테고리 */
.categoryList ul ul {
    top: 0px;
    left: 100%;
}

/* hover view sub category */
.categoryList li:hover>ul {
    display: block;
    -moz-animation: fadeIn .3s ease-in;
    -webkit-animation: fadeIn .3s ease-in;
    animation: fadeIn .3s ease-in;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* colorset - board_dark */
#xet_board.black .categoryList li a {
    background-color: #000;
    border-color: #333;
    color: #ccc;
}

#xet_board.black .categoryList li a.on {
    color: #fff;
    background: #333;
}

#xet_board.black .categoryList ul ul {
    background: #000;
    border-color: #333;
}

/* 셀렉트 스타일 */
.category-nav {
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    background-color: #fff;
}

.category-nav ul {
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-nav ul li {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    width: 25%;
    border-right: 1px solid #e1e1e1;
}

.category-nav ul li.category-all {
    width: 60px;
}

.category-nav ul li .angle-down {
    position: absolute;
    top: 0;
    right: 10px;
    height: 40px;
    line-height: 40px;
}

.category-nav ul li a {
    display: block;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
}

.category-nav ul ul {
    display: none;
    position: absolute;
    left: -1px;
    right: -1px;
    top: 100%;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    background-color: #f9f9f9;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category-nav ul ul li {
    float: none;
    display: block;
    width: 100%;
    border: 0;
    border-top: 1px solid #e1e1e1;
}

.category-nav ul ul li:first-child {
    border-top: 0;
}

.category-nav ul li:hover>ul {
    display: block;
    -moz-animation: fadeIn .3s ease-in;
    -webkit-animation: fadeIn .3s ease-in;
    animation: fadeIn .3s ease-in;
}

/* colorset - board_dark */
#xet_board.black .category-nav {
    background-color: #000;
    border-color: #333;
    color: #ccc;
}

#xet_board.black .category-nav ul li {
    border-color: #333;
}

#xet_board.black .category-nav ul li a {
    color: #ccc;
}

#xet_board.black .category-nav ul ul {
    background-color: #111;
    border-color: #333;
}

@media (max-width: 767px) {
    .category-nav ul>li {
        width: 100%;
    }

    .category-nav ul.child2>li {
        width: 50%;
    }

    .category-nav ul.child3>li {
        width: 33.3333%;
    }

    .category-nav ul>li:last-child {
        border-right: 0;
    }
}


#xet_board .checkAll {
    margin-bottom: 5px;
    padding: 5px;
}

#xet_board .no_list {
    text-align: center;
}



/* Require Password 비밀번호 요구 박스
-------------------------------------------------------------------------------------------------------- */
.requirePassword {
    margin-top: 10px;
    text-align: center;
}

.requirePassword fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.requirePassword h3 {
    font-size: 16px;
    padding: 0;
    margin: 20px 0;
    color: #555;
}

.requirePassword .inputText {
    display: inline-block;
    padding: 0 10px;
    width: 200px;
    height: 32px;
    line-height: 32px;
    text-indent: 5px;
    vertical-align: middle;
    color: #777;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
}

.requirePassword .inputText:focus {
    border-color: #555;
    color: #555;
}

/* colorset - board_dark */
#xet_board.black .requirePassword h3 {
    color: #ccc;
}

#xet_board.black .requirePassword .inputText {
    color: #777;
    background: #000;
    border: 1px solid #333;
}

#xet_board.black .requirePassword .inputText:focus {
    color: #ccc;
}


/* 삭제 박스 
-------------------------------------------------------------------------------------------------------- */
.smallBox {
    padding: 15px 0;
    text-align: center;
}

.smallBox p {
    font-size: 13px;
}

.smallBox h3 {
    font-size: 16px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    color: #ff0000;
    border-bottom: 1px solid #e8e8e8;
}

/* colorset - board_dark */
#xet_board.black .smallBox {}

#xet_board.black .smallBox h3 {
    border-color: #333;
}


/* 태그 출력 리스트 
-------------------------------------------------------------------------------------------------------- */
.tagCloud {
    padding: 15px 0;
}

.tagCloud * {
    margin: 0;
    padding: 0;
}

.tagCloud h3 {
    margin: 0 0 10px;
    padding-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.tagCloud ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tagCloud li {
    display: inline;
    list-style: none;
    margin: 0 5px 5px;
}

.tagCloud li.rank1 a {
    font-weight: bold;
    font-size: 12pt;
    color: #2ecc71;
}

.tagCloud li.rank2 a {
    font-weight: bold;
    font-size: 11pt;
    color: #e67e22;
}

.tagCloud li.rank3 a {
    font-weight: bold;
    font-size: 10pt;
    color: #27ae60;
}

.tagCloud li.rank4 a {
    font-size: 9pt;
    color: #8e44ad
}

.tagCloud li.rank5 a {
    font-size: 8pt;
    color: #7f8c8d;
}


/* colorset - board_dark */
#xet_board.black .tagCloud {}

#xet_board.black .tagCloud h3 {
    color: #ccc;
    border-color: #333;
}

#xet_board.black .tagCloud li a:hover {
    color: #fff;
}


/* Board Navigation
-------------------------------------------------------------------------------------------------------- */
.boardNavigation {
    position: relative;
    margin: 40px 0 15px 0;
    *zoom: 1;
}

.boardNavigation>.float_left {
    display: none;
}

.boardNavigation:after {
    content: "";
    display: block;
    clear: both;
}

/* mobile */
#boardNavigation-m {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    margin: 0;
    padding: 10px;
    background-color: #eee;
    border-top: 1px solid #e1e1e1;
}

#boardNavigation-m.boardNavigation a,
#boardNavigation-m.boardNavigation button,
#boardNavigation-m.boardNavigation .btn-search {
    display: inline-block;
    text-align: center;
    margin: 0;
    padding: 0 12px;
    line-height: 1;
    color: #333;
    text-decoration: none;
    vertical-align: top;
    border: 0;
    background: none;
}

/* Pagination  
-------------------------------------------------------------------------------------------------------- */
.pagination {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: center;
    display: block;
    font-size: 0;
    position: relative;
    vertical-align: middle;
}

.pagination.comment_page {
    margin-top: 0;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
}

.pagination>li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.pagination>li:first-child>a {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    margin-left: 0;
}

.pagination>li:last-child>a {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pagination>li+li {
    margin-left: -1px;
}

.pagination img {
    border: 0;
}

.pagination .page_more span,
.pagination a,
.pagination strong {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-size: 12px !important;
    width: 30px;
    height: 30px;
    line-height: 29px !important;
    vertical-align: top;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.pagination .page_more span {
    line-height: 22px;
}

.pagination i {
    font-size: 12px !important;
    line-height: 29px !important;
}

.pagination a {
    background: #fff;
    color: #555;
}

.pagination .page_on {
    font-weight: bold;
    border-color: #4b4b4b;
    background-color: #4b4b4b;
    color: #fff !important;
}

.pagination .page_mobile {
    width: 100px;
}

.pagination .prevEnd span,
.pagination .nextEnd span {
    visibility: hidden;
    font-size: 0;
}

.pagination .prevEnd,
.pagination .nextEnd {
    font-size: 14px;
}

/* colorset - board_dark */
#xet_board.black .pagination.comment_page {
    border-color: #333;
}

#xet_board.black .pagination .page_more span,
#xet_board.black .pagination strong,
#xet_board.black .pagination a,
#xet_board.black .pagination .page_on {
    border-color: #333;
    background-color: #111;
}

#xet_board.black .pagination a {
    background: #111;
    color: #ccc;
}

#xet_board.black .pagination .page_on {
    color: #fff;
    background-color: #4b4b4b;
    border-color: #4b4b4b;
}

/* Infinite Loading 
-------------------------------------------------------------------------------------------------------- */
#xet_board .ias-noneleft,
#xet_board .ias-spinner,
#xet_board .ias-trigger-prev,
#xet_board .ias-trigger-next {
    padding: 15px 0;
    text-align: center;
}

#xet_board .ias-trigger-prev a,
#xet_board .ias-trigger-next a {
    display: block;
    cursor: pointer;
    font-weight: bold;
    color: #2980b9;
}

#xet_board .ias-noneleft {
    padding: 0;
}

/* Infinite Gallery */
#xet_board .baord_gallery .ias-noneleft,
#xet_board .baord_gallery .ias-spinner,
#xet_board .baord_gallery .ias-trigger-prev,
#xet_board .baord_gallery .ias-trigger-next {
    padding: 15px 0;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

#xet_board .baord_gallery .ias-trigger-prev {
    top: 0;
}

#xet_board .baord_gallery .ias-trigger-prev a,
#xet_board .baord_gallery .ias-trigger-next a {
    display: block;
    cursor: pointer;
    font-weight: bold;
    color: #2980b9;
}

#xet_board .baord_gallery .ias-noneleft {
    padding: 0;
}


/* Search 
-------------------------------------------------------------------------------------------------------- */
#boardSearchForm-popup {
    z-index: 8000;
    /* position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%; */
    margin: 0;
    margin-bottom: 2em;
    text-align: center;
}

#boardSearchForm-popup.active {
    display: block;
}

#boardSearchForm-popup>div {
    width: 80%;
    padding: 0;
}

@media (max-width: 1024px) {
    #boardSearchForm-popup>div {
        width: 100%;
    }
}

.search_tit {
    font-size: 20px;
    color: #1a1f71;
    font-weight: bold;
    margin-bottom: 15px;
}

.search_tit p.tag {
    font-size: 16px;
    font-weight: 400;
    color: #969696;
    margin: 5px 0 5%;
}

#boardSearchForm-popup .boardSearchForm-popup-header {
    font-size: 14px;
    padding: 10px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #e8e8e8;
    color: #555;
}

#boardSearchForm-popup-close {
    float: right;
    font-size: 18px;
    background: none;
}

#boardSearchForm-popup .boardSearchForm-popup-body {
    padding: 10px 0;
    border-bottom: 1px solid #463a39;
}

/* 검색 결과 */
.boardSearchForm.keyword {
    margin: 20px 0;
    opacity: 0;
    visibility: hidden;
}

.boardSearchForm.keyword .boardSearch {
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid #c00;
}

/* 검색 폼 */
.boardSearchForm {
    margin: 0;
    padding: 0;
}

.boardSearchForm * {
    vertical-align: top;
}

.boardSearchForm .boardSearch {
    position: relative;
    width: 100%;
    /* height: 40px; */
    /* line-height: 38px; */
    font-size: 0;
    *zoom: 1;
    /* border-bottom: 2px solid #111; */
    /* border-radius:0; */
}

.boardSearchForm .boardSearch:after {
    content: "";
    display: block;
    clear: both;
}

.boardSearchForm .boardSearch .search {
    float: left;
    width: 150px;
    color: #463a39;
}

.boardSearchForm .boardSearch .search select {
    width: 100%;
    height: 32px;
    font-size: 20px;
    margin: 0;
    padding: 0 0 0 5px;
    border: 0;
    color: #463a39;
    background: url(../img/common/select_arrow.png) center right no-repeat;
    background-size: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    letter-spacing: 1px;
}

.boardSearchForm .boardSearch .inputText {
    width: 60%;
    float: left;
}

.boardSearchForm .boardSearch .inputText input {
    width: 100%;
    height: 30px;
    padding: 0 1em;
    font-size: 20px;
    margin: 0;
    color: #463a39;
    border: 0;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    letter-spacing: 1px;
}

.boardSearchForm .boardSearch .inputText input:focus {
    color: #111;
}

.boardSearchForm .boardSearch .search_btn_wrp {
    position: absolute;
    top: 0;
    right: 0;
}

.boardSearchForm .boardSearch .search_btn_wrp i {
    line-height: 32px;
    font-size: 18px;
    vertical-align: top;
}

.boardSearchForm .boardSearch .next_search_btn,
.boardSearchForm .boardSearch .cancel_btn,
.boardSearchForm .boardSearch .search_btn {
    display: inline-block !important;
    font-size: 12px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    cursor: pointer;
    color: #463a39;
    background: transparent;
    border: 0;
}

.boardSearchForm .boardSearch .next_search_btn {
    width: auto;
}

.boardSearchForm .boardSearch .cancel_btn {
    color: #c00;
}

.boardSearchForm .boardSearch .next_search_btn:hover,
.boardSearchForm .boardSearch .cancel_btn:hover,
.boardSearchForm .boardSearch .search_btn:hover {
    background: #4b4b4b;
    border-color: #4b4b4b;
    color: #fff;
}


/* colorset - board_dark */
#xet_board.black .boardSearchForm.keyword .boardSearch {
    background: #1b1b1b;
    color: #fff;
}




/* css3 
-------------------------------------------------------------------------------------------------------- */
.r3 {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.r5 {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.r50 {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.l-r3 {
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.r-r3 {
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.in-sd2px2 {
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, .2);
    box-shadow: inset 0 0 2px rgba(0, 0, 0, .2);
}


@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }

    .text-center-xs {
        text-align: center !important;
    }

    .float-none-xs {
        float: none !important;
    }

    .pd-xs-15 {
        padding: 15px !important;
    }

    .mg-xs-t20 {
        margin-top: 20px !important;
    }

    .pd-xs-b60 {
        padding-bottom: 60px !important;
    }

    .mg-xs-b10 {
        margin-bottom: 10px !important;
    }

    .mg-xs-b20 {
        margin-bottom: 20px !important;
    }

    .mg-xs-b50 {
        margin-bottom: 50px !important;
    }

    .mg-xs-b60 {
        margin-bottom: 60px !important;
    }

    .width-xs-100 {
        width: 100% !important
    }

    .search_tit p.tag {
        font-size: 13px;
    }

    #boardSearchForm-popup .boardSearchForm-popup-body {
        padding: 5px 0;
    }

    .boardSearchForm .boardSearch .search {
        width: 115px;
    }

    .boardSearchForm .boardSearch .search select,
    .boardSearchForm .boardSearch .inputText input,
    .boardSearchForm .boardSearch .search_btn_wrp i {
        font-size: 16px;
    }

    .boardSearchForm .boardSearch .inputText input {
        padding: 0;
    }
}