@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";
/**
 * OLYM Cascading Style Sheets
 * File Name : board.css
 * Description : 게시판 스타일시트
 * Author : Web business Team / Choi Hyun Mi
 * Email : designtj@olymcompnay.com
 * Date : 2017.06.01
 * Update : 2018.10.11
 * Copyright(c) 2018 OLYM Communications. All Rights Reserved.
*/
/* ///////////////////////////포인트컬러 변경///////////////////////////
                   #429af4 - 현 사이트의 포인트 컬러입니다.
				   검색해서 모두 바꾸기 해주세요!

 /////////////////////////////////////////////////////////////////// */

/***********************************************************/
/****************** 게시판 공통사항 시작 *******************/
/***********************************************************/

/* 반응형 게시판 필드 숨기기 */
.pc_x {
    display: none;
}

.mobile_o {
    display: none;
}

@media all and (max-width:800px) {
    .mobile_x {
        display: none !important;
    }

    .mobile_o {
        display: inline-block;
        font-size: 13px;
        padding-right: 30px;
    }

    .pc_x {
        display: table-cell;
    }
}

/* 반응형 게시판 필드 숨기기 END */

/********** NEW **********/
.i_notice {
    color: #429af4;
    font-size: 1.25em;
}

/* 공지글 */
.i_reply {
    transform: rotate(90deg);
    margin-right: 10px;
    color: #aaa;
}

/* 답글 */
.i_lock {
    color: #429af4;
    font-size: 0.875em;
}

/* 비밀글 */

/* 게시판용 체크박스 label 없는 경우 */
.board_check input[type="checkbox"] {
    display: none;
}

.board_check input[type="checkbox"]+label {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #dfdfdf;
    position: relative;
    background-color: #f2f2f2;
    border-radius: 3px;
}

.board_check input[type="checkbox"]:checked+label::after {
    content: '\f00c';
    font-family: "FontAwesome";
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    width: 20px;
    height: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 3px;
}

/* 게시판용 체크박스 label 있는 경우 */
.board_check2 input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.board_check2 input[type="checkbox"]+label {
    display: inline-block;
    position: relative;
    cursor: pointer;
}


/* 선택전 */
.board_check2 input[type="checkbox"]+label:before {
    content: ' ';
    display: inline-block;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: -4px 8px 0 0;
    text-align: center;
    vertical-align: middle;
    background-color: #f2f2f2;
    border: 1px solid #dfdfdf;
}
/* 선택후 */
.board_check2 input[type="checkbox"]:checked+label:before {
    content: '\f00c';
    font-family: "FontAwesome";
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
}


/* 게시판용 파일박스 */
.board_filebox label {
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border: 2px solid #429af4;
    color: #429af4;
    background: #fff;
    padding: 10px 30px;
    box-sizing: border-box;
    min-width: 100px;
    border-radius: 30px;
    line-height: 1.2em !important;
    transition: all 0.3s ease;
}

.board_filebox label:hover {
    background-color: #429af4;
    color: #fff;
}

.board_filebox input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 파일 필드 숨기기 */
.board_filebox span {
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border: 2px solid #429af4;
    color: #429af4;
    background: #fff;
    padding: 10px 30px;
    box-sizing: border-box;
    min-width: 100px;
    border-radius: 30px;
    line-height: 1.2em !important;
    transition: all 0.3s ease;
}

.board_filebox span:hover {
    background-color: #429af4;
    color: #fff;
}

.board_filebox_con {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    gap: 10px 30px;
    align-items: center;
}

.board_filebox_con .file_con {
    display: flex;
    align-items: center;
}

.board_filebox_con i {
    border-radius: 100%;
    margin-left: 10px;
    background-color: #ebebeb;
    display: flex;
    width: 28px;
    height: 28px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#board .board_filebox_con a:hover {
    text-decoration: none !important;
    color: #000;
}

#board .board_filebox_con a:hover i {
    background-color: #000;
    color: #fff;
}

/********** //NEW **********/

/* 게시판 기본 */
/* 글짜기준으로 줄바꿈, 글자에 공백이 없을때 넓이가 늘어나는 현상을 막기 위함 */
#board {
    position: relative;
    word-break: break-all !important;
    color: inherit;
}

/* 이미지가 게시판영역을 벗어나지 않게 최대 넓이 지정 */
#board img {
    max-width: 100%;
}

#board a {
    color: inherit;
}

#board a:hover {
    text-decoration: underline !important;
}

/*  등록된 글이 없습니다 */
td.no_post {
    text-align: center;
    height: 140px;
    box-sizing: border-box;
}

li.no_post {
    width: 100% !important;
    text-align: center;
    padding: 35px 0 60px 0 !important;
    height: auto !important;
}

#faq_list td.no_post {
    border-top: 1px solid #d7d7d7;
}

/* 게시판 기본 END */

/* 버튼 */
#board .btn {
    text-align: center;
    display: inline-block;
    border: 1px solid #b3b3b3;
    background: #fff;
    color: #666;
    padding: 10px 20px;
    box-sizing: border-box;
    min-width: 100px;
    border-radius: 30px;
    line-height: 1.2em !important;
    height: auto;
}

#board .btn:hover {
    background-color: #f7f7f7;
    text-decoration: none !important;
}

#board input.btn {
    cursor: pointer;
    _cursor: hand;
}

#board .btn_em1 {
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    font-weight: 600;
}

#board .btn_em1:hover {
    border: 1px solid #429af4;
    background-color: #429af4;
}

#board .btn_em2 {
    border: 1px solid #333;
    color: #333;
    font-weight: 600;
}

#board .btn_em2:hover {
    background: #333;
    color: #fff;
}

#board .btn_em3 {
    border: 1px solid #429af4;
    color: #429af4;
    font-weight: 600;
}

#board .btn_em3:hover {
    background: #429af4;
    color: #fff;
}

#board .btn_em4 {
    border: 1px solid #429af4;
    color: #fff;
    background-color: #429af4;
    font-weight: 600;
}

#board .btn_em4:hover {
    border: 1px solid #000;
    background-color: #000;
}

#board .btn_s1 {
    font-size: 12px;
    padding: 5px 15px;
    min-width: auto;
}

#board .btn_co1 {
    border: 1px solid #888;
    color: #666;
}

/* 달력선택 아이콘 */
#board .btn_calendar { position: relative; font-size: 0;
    width: 30px;
    height: 30px;
    display: inline-block;}

#board .btn_calendar::after {
    display: inline-block;
    content: '\f073';
    font-family: "FontAwesome";
    font-size: 22px;
    color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* 버튼 END */

/* SNS 공유하기 */
#board .share_area {
    display: none;
    position: absolute;
    right: 10px;
    top: 78px;
    z-index: 100;
}

#board .sns_share {
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 60px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

#board .sns_share::after {
    border-color: transparent transparent #fff transparent;
    border-style: solid;
    border-width: 7.5px;
    content: '';
    display: block;
    left: 70%;
    position: absolute;
    top: 1px;
    width: 0;
    transform: translate(-50%, -100%);
    z-index: 1;
}

#board .sns_share::before {
    border-color: transparent transparent #e9e9e9 transparent;
    border-style: solid;
    border-width: 8px;
    content: '';
    display: block;
    left: 70%;
    position: absolute;
    top: 0;
    width: 0;
    transform: translate(-50%, -100%);
    z-index: 0;
}

#board .sns_share>a {
    text-indent: -9999px;
    font-size: 0;
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 100%;
}

#board .btn_naverblog {
    background: url("/admode/module/board/images/kor/bg_naverblog.png") no-repeat center / cover;
}

#board .btn_facebook {
    background: url("/admode/module/board/images/kor/bg_facebook.png") no-repeat center / cover;
}

#board .btn_twitter {
    background: url("/admode/module/board/images/kor/bg_twitter.png") no-repeat center / cover;
}

#board .btn_kakaostory {
    background: url("/admode/module/board/images/kor/bg_kakaostory.png") no-repeat center / cover;
}

@media all and (max-width:640px) {
    #board .share_area {
        right: auto;
        left: 50%;
        top: 120px;
        transform: translate(-54%, 0);
    }
}

/* SNS 공유하기 END */

/* 게시판 카테고리 탭형식 */
#board_tab {
    margin-bottom: 40px;
    border: 1px solid #dbdbdb;
    padding: 30px;
    position: relative;
}

#board_tab::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    background-color: #f6f6f6;
}

#board_tab>ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#board_tab>ul>li {
    padding: 0 15px;
    position: relative;
}

#board_tab>ul>li::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    content: "";
    width: 1px;
    height: 20px;
    background-color: #ddd;
    transform: translate(0, -50%);
}

#board_tab>ul>li:last-child::after {
    display: none;
}

#board_tab>ul>li>a {
    display: block;
    text-align: center;
    padding: 5px 15px;
    color: #666;
    border: 2px solid #fff;
    box-sizing: border-box;
    border-radius: 30px;
}

#board_tab>ul>li.on>a,
#board_tab>ul>li:hover>a {
    background: #fff;
    border: 2px solid #429af4;
    color: #429af4;
    text-decoration: none !important;
}

@media all and (max-width:1000px) {
    #board_tab {
        padding: 15px;
    }

    #board_tab>ul>li {
        padding: 0 10px;
    }

    #board_tab>ul>li::after {
        height: 10px;
    }

    #board_tab>ul>li>a {
        padding: 3px 10px;
        font-size: 0.95em;
        border: none;
    }

    #board_tab>ul>li.on>a,
    #board_tab>ul>li:hover>a {
        border: none;
    }
}

@media all and (max-width:640px) {
    #board_tab {
        padding: 10px;
    }

    #board_tab>ul>li {
        padding: 0 5px;
    }
}

/* 게시판 카테고리 탭형식 END */

/* 게시판 카테고리 셀렉트형식 */
#board_category_select {
    position: absolute;
    right: 500px;
    z-index: 1000;
}

#board_category_select select {
    padding: 0 20px;
    min-width: 130px;
    height: 40px;
    border: none;
    color: #666;
    font-weight: 500;
    border-radius: 30px;
    -webkit-appearance: none;
    background: #f6f6f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 14L8 10H16L12 14Z'%3E%3C/path%3E%3C/svg%3E") no-repeat 92% center;
    background-size: auto 50%;
}

@media all and (max-width:1000px) {
    #board_category_select {
        left: 0;
        right: auto;
    }
}

@media all and (max-width:640px) {
    #board_category_select {
        position: relative;
        left: auto;
        margin-bottom: 10px;
    }

    #board_category_select select {
        width: 100%;
        box-sizing: border-box;
    }
}

/* 게시판 카테고리 셀렉트형식 END */

/* 게시판 상단 */
#board_top {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#board_top .post_info {
    font-size: 0.95em;
    font-weight: 600;
    margin-left: 30px;
}

#board_top .font_em1 {
    color: #429af4;
}

#board_top .post_total {
    margin-left: 20px;
}

#board_top .search_info {
    margin-right: 30px;
}

#board_top .search_info fieldset {
    display: flex;
    gap: 10px;
}

#board_top .search_info .search_box {
    border-bottom: 1px solid #7c7c7c;
}

#board_top .select_search {
    padding: 0 20px;
    min-width: 130px;
    height: 40px;
    border: none;
    color: #666;
    font-weight: 500;
    border-radius: 30px;
    -webkit-appearance: none;
    background: #f6f6f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 14L8 10H16L12 14Z'%3E%3C/path%3E%3C/svg%3E") no-repeat 92% center;
    background-size: auto 50%;
}

#board_top .input_search {
    width: 270px;
    line-height: 36px;
    border: none;
    color: #666;
    padding-left: 10px;
    box-sizing: border-box;
}

#board_top .btn_search {
    position: relative;
    cursor: pointer;
    _cursor: hand;
}

#board_top .btn_search input {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    _cursor: hand;
}

#board_top .btn_search::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-family: "FontAwesome";
    content: "\f002";
    color: #000;
    text-indent: 0;
}

@media all and (max-width:1000px) {
    #board_top {
        justify-content: center;
    }

    #board_top .post_info {
        display: none;
    }

    #board_top .search_info {
        margin-right: 0;
        width: 80%;
    }

    #board_top .search_info .search_box {
        width: 100%;
        display: flex;
    }

    #board_top .select_search {
        width: 30%;
        min-width: 100px;
    }

    #board_top .input_search {
        width: 100%;
    }
}

@media all and (max-width:640px) {
    #board_top .search_info {
        width: 100%;
    }
}

/* 게시판 상단 END */

/* 게시판 하단 */
/* page_navigation */
.list_page {
    padding: 15px 0;
    text-align: center;
    clear: both;
}

.list_page .num {
    margin: 0 3px;
    vertical-align: top;
    display: inline-block;
    width: 28px;
    line-height: 28px;
    color: #404040;
    text-align: center;
    font-size: 0.875em;
}

.list_page .num:hover {
    color: #429af4;
    font-weight: 600;
}

.list_page strong {
    margin: 0 3px;
    vertical-align: top;
    display: inline-block;
    border: 1px solid #429af4;
    border-radius: 30px;
    width: 26px;
    line-height: 26px;
    color: #429af4;
    text-align: center;
    font-size: 0.875em;
}

.list_page span {
    position: relative;
    margin: 0 3px;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 30px;
    width: 26px;
    height: 26px;
    text-indent: -9999px;
}

.list_page span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-family: "FontAwesome";
    font-size: 0.8em;
    color: #acacac;
    text-indent: 0;
}

.list_page .btn_first::after {
    content: "\f100";
}

.list_page .btn_prev::after {
    content: "\f104";
}

.list_page .btn_next::after {
    content: "\f105";
}

.list_page .btn_last::after {
    content: "\f101";
}

/* 하단 버튼 */
#board_bottom .btn_board_bottom {
    padding-top: 40px;
    height: 50px;
}

#board_bottom .btn_board_bottom li {
    float: left;
    padding-right: 5px;
}

#board_bottom .btn_board_bottom .li_right {
    float: right;
    padding-left: 5px;
}

#board_bottom .btn_board_bottom_right {
    padding-top: 40px;
    float: right;
    height: 50px;
}

#board_bottom .btn_board_bottom_right li {
    float: left;
    padding-left: 5px;
}

/* 게시판 하단 END */

/* 기본 게시판 뷰 */
.view_top {
    border-top: 2px solid #000;
}

.view_top .view_title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 35px;
    position: relative;
}

.view_top .view_title_box .t_cate {
    width: 10%;
    text-align: center;
}

.view_top .view_title_box .t_title {
    /*width: 80%;*/
    text-align: left;
}

.view_top .view_title_box .t_title .t_desc {
    color: #000;
    font-size: 1.4em;
    font-weight: 600;
}

.view_top .view_title_box .t_btn {
    width: 100px;
    text-align: center;
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 20px;
    color: #000;
}

.view_top .view_info_box {
    background-color: #f6f6f6;
    border-bottom: 1px solid #dbdbdb;
    padding: 15px 40px 15px 20px;
}

.view_top .view_info_box ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
}

.view_top .view_info_box ul li {
    font-size: 0.95em;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 500;
}

.view_top .view_info_box .tit {
    position: relative;
    margin-right: 20px;
}

.view_top .view_info_box .tit::after {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 10px;
    background-color: #dbdbdb;
    display: inline-block;
    content: "";
}


@media all and (max-width:800px) {
    .view_top .view_title_box {
        flex-direction: column;
        padding: 20px;
    }

    .view_top .view_title_box .t_cate {
        width: 100%;
    }

    .view_top .view_title_box .t_title {
        width: 100%;
        text-align: center;
    }

    .view_top .view_title_box .t_title .t_desc {
        font-size: 1.05em;
    }

    .view_top .view_info_box {
        padding: 15px 20px;
    }

    .view_top .view_info_box ul {
        gap: 20px;
        justify-content: center;
    }
}


/* 필드추가 */
.view_top .view_field_box>ul>li {
    border-bottom: 1px solid #dbdbdb;
    padding: 15px 40px 15px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.view_top .view_field_box>ul>li .tit {
    color: #000;
    box-sizing: border-box;
    padding-left: 40px;
}

.gallery_images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
}

.view_con {
    padding: 40px;
}

.view_bottom {
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-bottom: 1px solid #dbdbdb;
}

.view_bottom .t_title {
    width: 10%;
    text-align: center;
}

.view_bottom .t_file {
    width: 90%;
    text-align: left;
}

.view_bottom .t_file>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 50px;
}

@media all and (max-width:800px) {
    .view_top .view_field_box>ul>li {
        padding: 15px 20px;
        gap: 20px;
    }

    .view_top .view_field_box>ul>li .tit {
        padding-left: 0;
    }

    .view_con {
        padding: 20px;
    }

    .view_bottom {
        padding: 15px 20px;
    }

}

@media all and (max-width:440px) {
    .view_top .view_info_box ul li {
        position: relative;
    }

    .view_top .view_info_box ul li::after {
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translate(0, -50%);
        width: 1px;
        height: 10px;
        background-color: #dbdbdb;
        display: inline-block;
        content: "";
    }

    .view_top .view_info_box ul li:last-child::after {
        display: none;
    }

    .view_top .view_info_box .tit {
        display: none;
    }

    .view_bottom .t_title {
        display: none;
    }

    .view_bottom .t_file {
        width: 100%;
    }
}


.table_board_read,
.table_board_read td,
.table_board_read th {
    border: 0;
    font-size: inherit;
}

.table_board_read.poll { border-top:2px solid #000;}
.table_board_read .th {
    text-align: center;
    color: #2a2a2a;
    background: #f5f5f5;
    border-bottom: 1px solid #d7d7d7;
    padding: 9px 0;
}

.table_board_read .title {
    font-weight: 600;
    color: #2a2a2a;
}

.table_board_read .td {
    padding: 9px 20px;
    border-bottom: 1px solid #d7d7d7;
}

.table_board_read .td_con {
    padding: 20px;
}

.table_board_read .youtube_box {
    height: 450px;
}

@media all and (max-width:800px) {
    .table_board_read .th {
        padding: 9px 10px;
        font-size: 0.875em;
    }

    .table_board_read .td_con img {
        width: 100%;
    }

    /* 모바일 이미지 사이즈 */
}

@media all and (max-width:440px) {
    .table_board_read .youtube_box {
        height: 250px;
    }
}

/* 기본 게시판 뷰 END */

/* 뷰 -  댓글달기 */
.reply_box {
    position: relative;
}

.reply_box h2 a {
    display: block;
    background: url("/admode/module/board/images/kor/icon_reply_read.gif") no-repeat 15px 13px;
    padding: 10px 0 10px 40px;
    height: 22px;
    border-bottom: 1px solid #d7d7d7;
    font-weight: 600;
    color: #2a2a2a !important;
}

.reply_box h2 a:hover {
    color: #666;
    text-decoration: underline;
}

.reply_box .btn_open_right {
    position: absolute;
    top: 10px;
    right: 10px;
}

.commentList li {
    border-bottom: 1px solid #d7d7d7;
    padding: 20px;
}

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

.commentList li:hover {
    background-color: #f7f7f7;
}

.commentList li .btn_reply {
    float: right;
    margin-top: 10px;
}

.commentList li .name {
    font-weight: 600;
    color: #333;
}

.commentList li .date {
    font-weight: normal;
    font-family: verdana;
    font-size: 0.875em;
    color: #858585;
}

.commentList .li_reply {
    padding-left: 50px;
    background: url("/admode/module/board/images/kor/icon_reply_line.gif") no-repeat 25px 13px;
}

#write_comment ul {
    padding: 20px 20px 0;
}

#write_comment li {
    float: left;
    padding-right: 20px;
}

#write_comment li label {
    color: #333;
    font-weight: 600;
    padding-right: 10px;
}

#write_comment .comment_box {
    padding: 20px;
    border-bottom: 1px solid #d7d7d7;
}

#write_comment .reply_textarea {
    padding-left: 3px;
    border: 1px solid #e7e7e7;
    color: #565656;
    background: #f5f5f5;
    width: 100%;
    box-sizing: border-box;
}

#write_comment .btn_bottom {
    text-align: right;
    padding-top: 10px;
}

@media all and (max-width:800px) {
    #write_comment li {
        width: 100%;
        padding-bottom: 5px;
    }

    #write_comment li label {
        width: 30%;
        line-height: 30px;
        padding-left: 10px;
        float: left;
        box-sizing: border-box;
    }

    #write_comment li input {
        width: 70%;
        height: 30px;
        float: left;
        box-sizing: border-box;
    }
}

/* 뷰 - 하단 이전, 다음글 링크 */
.table_board_read_bottom,
.table_board_read_bottom td,
.table_board_read_bottom th {
    border: 0;
}

.table_board_read_bottom {
    table-layout: fixed;
}

.table_board_read_bottom th {
    text-align: left;
    border-bottom: 1px solid #dbdbdb;
    padding: 20px;
    width: 180px;
}

.table_board_read_bottom th i {
    border: 1px solid #dcdcdc;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.table_board_read_bottom td {
    padding: 20px;
    border-bottom: 1px solid #dbdbdb;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.table_board_read_bottom td:last-child {
    width: 180px;
    text-align: right;
}

@media all and (max-width:800px) {
    .table_board_read_bottom th {
        width: 90px;
    }

    .table_board_read_bottom td {
        text-overflow: clip;
        white-space: normal;
        overflow: auto;
    }

    .table_board_read_bottom td:last-child {
        width: 80px;
    }
}

@media all and (max-width:440px) {
    .table_board_read_bottom th {
        padding-right: 0;
    }

    .table_board_read_bottom td:last-child {
        display: none;
    }
}

/* 뷰 -  댓글달기 END */

/* 기본 게시판 쓰기 */
.write_box {
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-top: 2px solid #000;
    padding-top: 50px;
}

.write_box .form_group {
    display: flex;
    gap: 80px;
}

.write_box .write_item {
    width: 100%;
    display: flex;
    align-items: center;
}

.write_box .write_item .item_title {
    width: 15%;
    min-width: 220px;
    font-weight: 600;
    color: #000;
}

.write_box .write_item .item_desc {
    width: 85%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.write_box .write_item .item_desc .mb-2 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.write_box .write_item .item_desc .mb-2 .form-control{
    padding:0;
}
.write_box .write_item .item_desc .mb-2 + .mb-2 { margin-top:20px;}
.write_box .write_item .item_desc .form-text { margin:10px 0; font-size:14px; color:#f60;}

.write_box .write_item .item_desc .mb-3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.write_box .write_item .item_desc .mb-3 > li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.write_box .write_item .item_desc .input_form {
    width: 20%;
}


.write_box .form_group.col2 .item_title {
    width: 30%;
}

.write_box .form_group.col2 .item_desc {
    width: 70%;
}

.write_box .notice_group {
    width: 40%;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.write_box .select_group {
    width: 40%;
}

.write_box .p_autom {
    width: 100%;
}

.write_box .no_fx {
    display: block !important;
}

.write_box .write_item input[type="text"],
.write_box .write_item input[type="number"],
.write_box .write_item input[type="password"],
.write_box .write_item input[type="file"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    height: 40px;
    box-sizing: border-box;
    padding: 10px;
    transition: all ease 0.3s;
}

.write_box .write_item input[type="password"]{
    width: 80%;
}

.write_box .write_item input[type="text"]:focus,
.write_box .write_item input[type="number"]:focus,
.write_box .write_item input[type="password"]:focus,
.write_box .write_item input[type="file"]:focus {
    outline: 0;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    transition: all ease 0.3s;
}

.write_box .write_item select {
    padding: 0 50px 0 20px;
    /*width: 100%;*/
    box-sizing: border-box;
    height: 40px;
    border: none;
    color: #666;
    font-weight: 500;
    border-radius: 30px;
    -webkit-appearance: none;
    background: #f6f6f6 url("/admode/module/board/images/kor/bg_select.png") no-repeat calc(100% - 10px) center;
    background-size: auto 50%;
}
.write_box .write_item textarea { border: 1px solid #ddd; width:100%; box-sizing: border-box; padding:10px; font-family: "PretendardStd";}
.write_box .write_item textarea:focus { border: 1px solid #000 !important;}



@media all and (max-width:1000px) {
    .write_box .form_group {
        flex-direction: column;
        gap: 50px;
    }

    .write_box .write_item {
        gap: 20px;
    }

    .write_box .write_item .item_title {
        width: 10%;
        min-width: 80px;
    }

    .write_box .write_item .item_desc {
        width: 90%;
    }
}

@media all and (max-width:640px) {
    .write_box .write_item {
        flex-direction: column;
    }

    .write_box .write_item .item_title {
        width: 100%;
        min-width: auto;
    }

    .write_box .write_item .item_desc {
        width: 100%;
    }

    .write_box .select_group {
        width: 60%;
    }
}

@media all and (max-width:440px) {
    .write_box {
        padding: 20px;
        gap: 30px;
    }

    .write_box .write_item input[type="text"],
    .write_box .write_item input[type="password"],
    .write_box .write_item input[type="file"] {
        border: 1px solid #ddd;
    }

    .write_box .write_item .item_desc {
        flex-wrap: wrap;
        gap: 20px;
    }

    .write_box .form_group {
        gap: 30px;
    }

    .write_box .notice_group {
        justify-content: start;
        width: 100%;
    }

    .write_box .select_group {
        width: 100%;
    }
}


.table_board_write,
.table_board_write td,
.table_board_write th {
    border: 0;
    font-size: inherit;
}

.table_board_write {
    border-top: 2px solid #000;
}

.table_board_write th {
    text-align: left;
    color: #2a2a2a;
    background: #f5f5f5;
    border-bottom: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    padding: 7px 20px;
}

.table_board_write .th_div {
    border-left: 1px solid #d7d7d7;
}

.table_board_write td {
    text-align: left;
    padding: 7px 20px;
    border-bottom: 1px solid #d7d7d7;
}

.table_board_write .notice {
    font-size: 0.95em;
    font-weight: 600;
}

.table_board_write .textarea_form {
    height: 100px;
}

/* 링크게시판 내용 */
#board_write .box_policy {
    width: 100%;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
    letter-spacing: -0.05em;
}

#board_write .box_policy .privacy {
    border: 1px solid #d7d7d7;
    height: 120px;
    overflow-y: scroll;
    padding: 15px;
    color: #767676;
}

#board_write .box_policy .privacy h1 {
    color: #2a2a2a;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
}

#board_write .box_policy .privacy h2 {
    padding: 15px 0 10px;
    font-weight: 600;
    color: #666;
}

#board_write .box_policy .p_privacy {
    text-align: center;
    color: #767676;
    padding-top: 15px;
}

@media all and (max-width:440px) {
    .table_board_write {
        display: block;
    }

    .table_board_write th {
        display: block;
        border-right: none;
        background: none;
        border-bottom: none;
        padding: 7px 20px 0;
    }

    .table_board_write .th_div {
        border-left: none;
    }

    .table_board_write td {
        display: block;
    }

    .table_board_write td input[type="text"] {
        width: 100% !important;
    }

    .table_board_write .m_block {
        display: block;
    }
}

/* 기본 게시판 쓰기 END */

/* 게시물 삭제 */
#board_password {
    min-height: 250px;
}

#board_password .password_text {
    border-top: 1px solid #303030;
    border-bottom: 1px solid #d7d7d7;
    padding: 50px 20px;
    text-align: center;
}

#board_password .btn_bottom {
    padding: 10px 0;
    text-align: right;
}

#board_password .title .em {
    color: #2a2a2a;
    font-weight: 600;
}

#board_password .pw_input {
    padding: 20px 0;
    border: 1px dashed #d7d7d7;
    width: 60%;
    margin: 20px auto 0;
}

#board_password .pw_input span {
    margin-right: 20px;
    color: #2a2a2a;
    font-weight: 600;
}

@media all and (max-width:800px) {
    #board_password .pw_input {
        width: 100%;
    }
}

/* 게시물 삭제 END */

/**********************************************************/
/******************** 게시판 공통사항 끝 ********************/
/**********************************************************/

/* 일반게시판 olym_basic */
.table_board_basic,
.table_board_basic td,
.table_board_basic th {
    border: 0;
    font-size: inherit;
}

.table_board_basic {
    table-layout: fixed;
    border-top: 2px solid #000;
}

.table_board_basic th {
    padding: 25px 5px;
    color: #2a2a2a;
    border-bottom: 1px solid #a2a2a2;
    font-weight: 600;
    font-size: 0.95em;
}

.table_board_basic tbody tr:hover {
    background: #f7f7f7;
    transition: all 0.3s ease;
}

.table_board_basic tbody td {
    background: none;
}

.table_board_basic td {
    text-align: center;
    padding: 25px 0;
    border-bottom: 1px solid #d7d7d7;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

.table_board_basic td a {
    color: #666;
}

.table_board_basic td .font_co1 {
    color: #429af4;
    font-size: 0.95em;
    font-weight: 600;
}

.table_board_basic .td_left {
    text-align: left;
    padding-left: 15px;
}

/* 채용안내 진행상황 */
.rec_st {
    width: 90px;
    height: 30px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 0.875em;
    line-height: 1.1em;
}

.rec_st.ca1 {
    background-color: #429af4;
    color: #fff;
}

/* 모집중 */
.rec_st.ca2 {
    background-color: #e7e7e7;
    color: #b5b5b5;
}

/* 모집완료 */
.rec_st.ca3 {
    border: 2px solid #000;
    color: #000;
}

/* 모집예정 */
/* 일반게시판 olym_basic END */

/* 인증서 게시판 olym_certificate */
#cert_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

#cert_list ul .no_post { padding: 60px 0 !important; grid-column: 1 / span 4;border-top:1px solid #ddd; border-bottom:1px solid #ddd;}

#cert_list li .con_box {
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 460px; */
    box-sizing: border-box;
    padding: 40px;
}

#cert_list li .img {
    width: 100%;
    aspect-ratio: 22/30;
    position: relative;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: hidden;
}

#cert_list li .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#cert_list li .p_title {
    width: 90%;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;

}

#cert_list li .p_btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#cert_list li .p_btn a {
    font-size: 22px;
    color: #ccc;
    margin-top: -6px;
}

#cert_list li .p_btn a:hover {
    color: #000;
}

@media all and (max-width:1260px) {
    #cert_list ul {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    /* #cert_list li .con_box {
        height: 430px;
    }

    #cert_list li .img {
        width: 200px;
        height: 273px;
    } */
}

@media all and (max-width:800px) {
    #cert_list ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media all and (max-width:440px) {
    #cert_list ul {
        gap: 10px;
    }

    #cert_list li .con_box {
        /* height: 270px; */
        padding: 20px;
    }

    /* #cert_list li .img {
        width: 120px;
        height: 164px;
    } */

    #cert_list li .p_title {
        width: 100%;
        margin-top: 20px;
    }

    #cert_list li .p_btn {
        margin-top: 10px;
        gap: 10px;
    }
}

/* 인증서 게시판 olym_certificate END */

/* FAQ 게시판 olym_faq */
#faq_list {
    border-top: 2px solid #000;
}

#faq_list li {
    border-bottom: 1px solid #dbdbdb;
    padding: 25px;
    display: flex;
    gap: 20px;
}

#faq_list li .h_s {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

#faq_list li.q_box {
    align-items: center;
}

#faq_list li.a_box {
    background: #f7f7f7;
}

#faq_list li.a_box .h_s {
    color: #429af4;
}

#faq_list li .title {
    color: #2a2a2a;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding-right: 60px;
}

#faq_list li .title::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    display: block;
    font-family: "FontAwesome";
    content: "\f107";
    color: #000;
    text-indent: 0;
    transition: all ease 0.3s;
}

#faq_list li.open-accordion .title::after {
    transform: translate(0, -50%) rotate(180deg);
}

#faq_list li .board_check {
    margin-top: 6px;
}

#faq_list li .p_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#faq_list li .p_btn a {
    font-size: 22px;
    color: #ccc;
}

#faq_list li .p_btn a:hover {
    color: #000;
}

@media all and (max-width:800px) {
    #faq_list li {
        padding: 15px;
        gap: 15px;
    }

    #faq_list li .h_s {
        font-size: 17px;
    }

    #faq_list li .title {
        padding-right: 30px;
    }
}

/* FAQ 게시판 olym_faq END */



/* 갤러리 게시판 olym_gallery */
#gallery_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

#gallery_list ul .no_post { padding: 60px 0 !important; grid-column: 1 / span 3;border-top:1px solid #ddd; border-bottom:1px solid #ddd;}

#gallery_list ul li{position: relative; }

#gallery_list li .img_box {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

#gallery_list li .img_box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s ease-in-out;
}

#gallery_list li .img_box img:hover {
    transform: scale(1.1);
}

#gallery_list li .title_box {
    padding: 18px 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gallery_list li .title_box .p_desc {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

#gallery_list li .title_box .p_title {
    font-size: 21px;
    color: #000;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#gallery_list li .title_box .p_btn {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

#gallery_list li .p_date {
    font-family: 'Montserrat';
    color: #666;
    font-weight: 500;
}

@media all and (max-width:1260px) {
    #gallery_list li .title_box .p_title {
        font-size: 18px;
    }

    #gallery_list li .title_box .p_btn {
        font-size: 18px;
    }
}

@media all and (max-width:1000px) {
    #gallery_list li .title_box .p_title {
        font-size: 15px;
    }

    #gallery_list li .title_box .p_btn {
        font-size: 15px;
    }
}

@media all and (max-width:800px) {
    #gallery_list ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media all and (max-width:440px) {
    #gallery_list ul {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #gallery_list li .title_box {
        padding: 10px 0 5px 0;
    }
}

/* 갤러리 게시판 olym_gallery END */

/* 관련사이트 게시판 olym_link */
#link_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2vw;
}
#link_list ul .no_post { padding: 60px 0 !important; grid-column: 1 / span 4;border-top:1px solid #ddd; border-bottom:1px solid #ddd;}

#link_list li .con_box {
    border: 1px solid #dbdbdb;
}

#link_list li .img {
    width: 100%;
    aspect-ratio: 4/2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#link_list li a .p_title {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    background-color: #f6f6f6;
    color: #000;
}

#link_list li .p_btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#link_list li .p_btn a {
    font-size: 22px;
    color: #ccc;
    margin-top: -6px;
}

#link_list li .p_btn a:hover {
    color: #000;
}


@media all and (max-width:1000px) {
    #link_list ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media all and (max-width:640px) {
    #link_list ul {
        grid-template-columns: 1fr 1fr;
    }
    #link_list li a .p_title {
        padding: 15px;
    }
}

@media all and (max-width:440px) {
    #link_list ul {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    #link_list li a .p_title {
        padding: 10px;
    }
}

/* 관련사이트 게시판 olym_link END */


/* 포토뉴스게시판 (이미지 + 내용) olym_photonews */
#news_list .news_post {
    border-top: 1px solid #d7d7d7;
}


#news_list .news_post>li {
    border-bottom: 1px solid #d7d7d7;
    padding: 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
}

#news_list .news_post .no_post { padding: 60px 0 !important; justify-content: center; border-bottom:1px solid #ddd;}
#news_list .desc {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3vw;
    padding: 10px 0;
    position: relative;
}

#news_list .desc .news_wrap .title {
    font-size: 20px;
    color: #2a2a2a;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#news_list .desc .news_wrap .ellipsis {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#news_list .desc .news_wrap .p_date {
    font-size: 18px;
    font-family: 'Paperlogy-6SemiBold';
    color: #429af4;
}

#news_list .img {
    width: 30%;
}

#news_list .img a {
    background: #f1f1f1;
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

#news_list .img a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#news_list li .remove_btn {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    display: flex;
    gap: 10px;
}

@media all and (max-width:1000px) {
    #news_list .desc .news_wrap .title {
        font-size: 18px;
    }
    #news_list .desc .news_wrap .p_date { font-size:16px;}

    #news_list li .remove_btn {
        font-size: 18px;
    }
}

@media all and (max-width:440px) {
    #news_list .news_post>li {
        flex-direction: column;
        padding: 5vw;
    }

    #news_list .img {
        width: 100%;
    }


    #news_list .desc {
        padding: 0;
    }
    #news_list .desc .news_wrap .p_date { font-size:14px;}
}

/* 포토뉴스게시판 (이미지 + 내용) olym_photonews END */

/* 유튜브 게시판 olym_youtube1 */

#youtube_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3vw;
}

#youtube_list ul .no_post { padding: 60px 0 !important; grid-column: 1 / span 3;border-top:1px solid #ddd; border-bottom:1px solid #ddd;}

#youtube_list li .img_box {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#youtube_list li .img_box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s ease-in-out;
}

#youtube_list li .img_box img:hover {
    transform: scale(1.1);
}

#youtube_list li .img_box .btn_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: 100%;
    width: 4vw;
    height: 4vw;
    font-size: 1vw;
    background: #000000d3;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s
}

#youtube_list li .img_box:hover .btn_play {
    background: #429af4e2;
}

#youtube_list li .title_box {
    padding: 18px 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#youtube_list li .title_box .p_desc {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

#youtube_list li .title_box .p_title {
    font-size: 21px;
    color: #000;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#youtube_list li .title_box .p_btn {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

#youtube_list li .p_date {
    font-family: 'Montserrat';
    color: #666;
    font-weight: 500;
}

@media all and (max-width:1260px) {
    #youtube_list li .title_box .p_title {
        font-size: 18px;
    }

    #youtube_list li .title_box .p_btn {
        font-size: 18px;
    }
}

@media all and (max-width:1000px) {
    #youtube_list li .img_box .btn_play {
        width: 5vw;
        height: 5vw;
        font-size: 1vw;
    }

    #youtube_list li .title_box .p_title {
        font-size: 15px;
    }

    #youtube_list li .title_box .p_btn {
        font-size: 15px;
    }
}

@media all and (max-width:800px) {
    #youtube_list ul {
        grid-template-columns: 1fr 1fr;
    }

    #youtube_list li .img_box .btn_play {
        width: 6vw;
        height: 6vw;
        font-size: 1.5vw;
    }
}

@media all and (max-width:440px) {
    #youtube_list ul {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #youtube_list li .img_box .btn_play {
        width: 12vw;
        height: 12vw;
        font-size: 3vw;
    }

    #youtube_list li .title_box {
        padding: 10px 0 5px 0;
    }
}

/* youtube_modal */
.youtube_modal {
    display: none;
    position: fixed;
    z-index: 20000 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

.youtube_modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fefefe;
    width: 800px;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 1s;
}

.youtube_modal .modal-body {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.youtube_modal .modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@-webkit-keyframes animatetop {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.youtube_modal .modal-content .modal-header {
    padding: 15px 20px;
    background: #429af4;
}

.youtube_modal .modal-content .modal-header h2 {
    color: #fff;
    font-weight: 600;
}

.youtube_modal .modal-content .modal-header .close {
    cursor: pointer;
    float: right;
}

.youtube_modal .modal-content .modal-header .close i {
    color: #fff;
    font-size: 22px;
    transition: all 0.2s
}

.youtube_modal .modal-content .modal-header .close i:hover,
.youtube_modal .modal-content .modal-header .close i:focus {
    color: #000;
}

@media all and (max-width:800px) {
    .youtube_modal .modal-content {
        width: 90%;
    }
}

/* 유튜브 게시판 olym_youtube 1 END */

/* 신규 추가 [240102] */

/* ** pagination ** */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 50px;}
.pagination .page-navi { display: inline-flex; justify-content: center; align-items: center; color: #666;height: 40px; gap: 8px;}
.pagination .page-navi:hover { border-radius: 6px; background-color: #f9f9f9; transition: all 0.3s ease;}
.pagination .page-navi:active { background-color: #f9f9f9; transition: all 0.3s ease;}
.pagination .page-navi.prev { order: 1; padding: 0 4px;}
.pagination .page-navi.prev::before { display: inline-flex; justify-content: center; align-items: center; content: '\EA64'; font-family: "remixicon";}
.pagination .page-navi.next { order: 3; padding: 0 4px;}
.pagination .page-navi.next::after { display: inline-flex; justify-content: center; align-items: center; content: '\EA6E'; font-family: "remixicon";}
.pagination .page-links { display: flex; justify-content: center; align-items: center; order: 2; gap: 8px;}
.pagination .page-links .page-link { display: flex; justify-content: center; align-items: center; color: #000; min-width: 40px; height: 40px;}
.pagination .page-links .page-link:hover { border-radius: 6px; background-color: #f9f9f9; transition: all 0.3s ease;}
.pagination .page-links .page-link:active { color: #003675; transition: all 0.3s ease;}
.pagination .page-links .page-link.link-dot::before { content: "\EF79"; font-family: "remixicon";}
.pagination .page-links .page-link.active { font-weight: 800; color: #fff !important; border-radius: 6px; background-color: #003675;}
.pagination.m-page { display: none;}
/*@media (max-width: 1023px) {
.pagination.w-page { display: none;}
.pagination.m-page { display: flex; justify-content: flex-start; flex-direction: column;}
}*/

.note-frame {width: 100%;}
.note-editable { font-family: 'PretendardStd'; }
.note-editable p{ font-family: 'PretendardStd'; }
.note-current-fontname{ line-height: 14px; }
.note-editor.note-airframe.fullscreen, .note-editor.note-frame.fullscreen{background: white; }


.note-editable h1, .note-editable h2, .note-editable h3, .note-editable h4, .note-editable h5, .note-editable h6 { font-size: revert-layer; }
.view_con h1, .view_con h2, .view_con h3, .view_con h4, .view_con h5, .view_con h6{font-size: revert-layer; }

#board th, td{border-style: solid; }

.article_fixed{ position: absolute; right: 0;}
.fixed_wrapper{ width: 60px; }