i span {  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.text-primary {
    color: #0079D5;
}
.btn {
    font-size: 14px;
    border-radius: 4px;
}
@media (min-width: 1200px) {
    .btn {
        font-size: 17px;
    }
}
.btn-outline-dark {
    border: 1px solid #C6C6C6;
}


/* 게시판 검색 */
.board-search {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.board-search form {
    display: flex;

}
.board-search .search-select {
    position: relative;
    margin-right: 5px;
}
.board-search .search-select select {
    height: 44px;
    color: #555;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #D8D8D8;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-image: url(/pub/common/images/board/angle_down.svg);
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.board-search .search-select select::-ms-expand {
    display: none;
}
@media (min-width: 1200px) {
    .board-search .search-select select {
        width: 130px;
        height: 50px;
    }
}
.period-search.board-search .select-category {
    display: flex;
    align-items: center;
    width: 100%;
}
@media (min-width: 1200px) {
    .period-search.board-search .select-category {
        width: auto;
        margin-right: 5px;
    }
}
.period-search.board-search .select-category label {
    margin-right: 15px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .period-search.board-search .select-category select {
        width: 170px;
    }
}
.board-search .search-input {
    display: flex;
    height: 44px;
    padding-right: 5px;
    border-radius: 6px;
    border: 1px solid #D8D8D8;
    background: #fff;
}
@media (min-width: 1200px) {
    .board-search .search-input {
        width: 400px;
        height: 50px;
    }
}
.board-search .search-input input {
    display: block;
    border: none;
    color: #555;
    font-size: 15px;
    width: 100%;
    height: 100%;
}
.board-search .search-input button {
    color: #1D1D1D;
    font-size: 16px;
    border: none;
    background-color: #fff;
}


/* 게시판 카운트 */
.board-count {
    color: #555;
    margin-bottom: 20px;
}
.board-count strong {
    color: #1D1D1D;
}

/* 게시판 카테고리 */
.table-tabmenu {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 50px;
    margin-bottom: 25px;
    border-radius: 6px;
    background-color: #F8F8F8;
    overflow-x: scroll;
}
@media (min-width: 1200px) {
    .table-tabmenu {
        height: 60px;
        padding: 0 10px;
        margin-bottom: 35px;
        overflow-x: hidden;
    }
}
/*.table-tabmenu::after {
	content: "\f054";
	position: absolute;
	top: 10px;
	right: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	color: #fff;
	font-size: 14px;
	font-family: "Font Awesome 6 Pro";
	border-radius: 50%;
	background: #555;
}*/
.table-tabmenu .tabmenu-list {
    display: flex;
    width: 100%;
}
.table-tabmenu .tabmenu-list a {
    margin: 0 15px;
    padding-bottom: 12px;
    color: #555;
    font-size: 15px;
    white-space: nowrap;
}
@media (min-width: 1200px) {
    .table-tabmenu .tabmenu-list a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        margin: 0;
        padding: 0;
        font-size: 17px;
    }
    .table-tabmenu .tabmenu-list a+a::after {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        display: block;
        height: 16px;
        border-right: 1px solid #D8D8D8;

    }
}
.table-tabmenu .tabmenu-list a.active {
    color: #1D1D1D;
    font-weight: bold;
    border-bottom: 3px solid #1D1D1D;
}
@media (min-width: 1200px) {
    .table-tabmenu .tabmenu-list a.active {
        border-radius: 8px 8px 0 0;
        border: none;
        background-color: #fff;
    }
}



/* 게시판 리스트 */
.board-table tbody tr td.table-reply .text-info,
.board-reply .reply-box .reply-state .text-info {
    color: #0062ab !important;
}
@media (max-width: 1200px) {
    .board-table {
        display: flex;
        border-top: 1px solid #1D1D1D;
    }
    .board-table thead {
        display: none;
    }
    .board-table tbody {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }
    .board-table tbody tr {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #E4E4E4;
    }
    .board-table tbody tr td {
        padding: 0;
        font-size: 14px;
        border: none;
    }
    .board-table tbody tr td.table-title {
        font-size: 15px;
    }
    .board-table tbody tr td.table-title a {
        color: #555;
    }
    .board-table tbody tr td.table-title .text-comment {
        color: #1D1D1D;
        font-weight: bold;
    }
    .board-table tbody tr td.table-title .text-comment i {
        padding-right: 4px;
    }
    .board-table tbody tr td.table-reply {
        position: absolute;
        bottom: 10px;
        right: 0;
    }
    .board-table tbody tr.board-notice {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .board-table tbody tr.board-notice .table-notice {
        width: 50px;
    }
    .board-table tbody tr.board-notice .table-title {
        width: calc( 100% - 50px );
    }
    .board-table tbody td .label-notice {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 23px;
        color: #fff;
        font-size: 13px;
        border-radius: 20px;
        background-color: #1D1D1D;
    }
}

@media (min-width: 1200px) {
    .board-table {
        table-layout: fixed;
        border-top: 1px solid #1D1D1D;
    }
    .board-table thead th {
        padding: 22px 0;
        text-align: center;
        vertical-align: middle;
        color: #1D1D1D;
        font-size: 17px;
        background-color: #F8F8F8;
    }
    .board-table tbody td {
        padding: 19px 0;
        text-align: center;
        color: #555;
        font-size: 17px;
        border-bottom: 1px solid #E4E4E4;
    }
    .board-table tbody td.table-title {
        text-align: left;
    }
    .board-table tbody td.table-title a {
        display: inline-block;
        max-width: calc( 100% - 60px );
        color: #555;
        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;
    }
    .board-table tbody td.table-title small {
        padding: 0 3px;
        vertical-align: super;
    }
    .board-table tbody td.table-title .text-comment {
        color: #1D1D1D;
        font-weight: bold;
    }
    .board-table tbody td.table-title .text-comment i {
        padding-right: 4px;
    }
    .board-table tbody td .label-notice {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 28px;
        padding: 0 10px;
        color: #fff;
        font-size: 15px;
        border-radius: 20px;
        background-color: #1D1D1D;
    }
}




/* 게시판 뷰 */
.board-view .view-title {
    margin-bottom: 15px;
    color: #1D1D1D;
    font-size: 17px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .board-view .view-title {
        font-size: 25px;
    }
}
.board-view .view-data {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}
@media (min-width: 1200px) {
    .board-view .view-data {
        font-size: 17px;
    }
}
.board-view .view-data>span {
    position: relative;
    padding-right: 20px;
}
.board-view .view-data span::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 10px;
    display: block;
    height: 12px;
    border-right: 1px solid #D8D8D8;
}
@media (min-width: 1200px) {
    .board-view .view-data span::after {
        top: 8px;
    }
}
.board-view .view-data span:last-child::after {
    content: none;
}
.board-view .view-file {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 10px;
    color: #555;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #D8D8D8;
    /* commit test */
}
@media (min-width: 1200px) {
    .board-view .view-file {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 17px;
    }
}
.board-view .view-file a {
    color: #555;
}
.board-view .view-file .btns-group {
    padding-top: 8px;
}
@media (min-width: 1200px) {
    .board-view .view-file .btns-group {
        padding-top: 0;
    }
}
.board-view .view-file .btns-group a {
    padding-right: 15px;
}
@media (min-width: 1200px) {
    .board-view .view-file .btns-group a {
        padding: 0 5px 0 20px;
    }
}
.board-view .view-file .btns-group a i {
    padding-left: 5px;
}
.board-view .view-content {
    margin: 20px 0 25px;
    padding: 20px 0;
    border-top: 1px solid #1D1D1D;
    border-bottom: 1px solid #E4E4E4;

}
@media (min-width: 1200px) {
    .board-view .view-content {
        margin: 30px 0;
        padding: 35px 0;
        word-break: break-all;
    }
}
.board-view .view-content img {
    max-width: 100%;
}


/* 게시판 버튼 */
.board-btns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.board-list-btns {
    display: flex;
    justify-content: flex-end;
    margin: 25px 0;
}



/* 게시판 폼 */
.board-form {
    border: none;
}
.board-form .card-body {
    padding: 0;
    border-top: 1px solid #1D1D1D;
}
.board-form .card-body .form-group {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #E4E4E4;
}
@media (min-width: 1200px) {
    .board-form .card-body .form-group {
        align-items: center;
        padding: 13px 0;
    }
}
.board-form .card-body .form-group label {
    padding: 0  0 8px 0 !important;
    color: #1D1D1D;
    font-size: 15px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .board-form .card-body .form-group label {
        padding: 0 !important;
        font-size: 17px;
    }
}
.board-form .card-body .form-group label.form-check-label {
    font-weight: normal;
}
.board-form .card-body .form-group .form-control {
    color: #555;
    font-size: 15px;
    padding: .575rem .75rem;
}
.board-form .card-body .form-group .input-group input {
    border-radius: 5px !important;
}
.board-form .card-body .form-group select {
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-image: url(/pub/common/images/board/angle_down.svg);
}
.board-form .card-body .form-group .input-group .input-group-text {
    border: none;
    background-color: transparent;
}
.board-form .card-footer {
    padding: 20px 0 0 0;
    text-align: right;
    border: none;
    background-color: transparent;
}
.agree-text {
    display: flex;
    align-items: center;
    padding-top: 30px;
    color: #555;
    font-size: 17px;
}
.agree-text label {
    padding: 0 20px 0 10px;
}
.agree-text a {
    color: #555;
    text-decoration: underline;
}


/* 게시판 좋아요 */
.like-wrap .btn {
    margin-right: 10px;
    border-radius: 6px;
    border: 1px solid #C6C6C6;
}

/* 게시판 공유 */
.board-share {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.board-share .share-drop {
    border-radius: 6px;
    border: 1px solid #C6C6C6;
}
.board-share .share-drop .dropdown-toggle::before {
    content: "\f1e0";
    font-family: "Font Awesome 6 Pro";
    padding-right: 5px;
    border: none;
}
.board-share .share-drop.show .dropdown-toggle::before,
.board-share .share-drop .dropdown-toggle.show::before {
    font-weight: 900;
    color: #1D1D1D;
}
.board-share .share-drop .dropdown-toggle::after {
    content: none;
}
.board-share .share-drop .dropdown-menu.show {
    left: calc( 50% - 75px ) !important;
    display: flex;
    min-width: auto;
    margin-bottom: 10px !important;
    padding: 15px;
    color: #222;
    font-size: 20px;
    box-shadow: 0px 3px 6px #00000029;
}
.board-share .share-drop .dropdown-menu a {
    padding: 0 5px;
}
.board-share .share-drop .dropdown-item.show,
.board-share .share-drop .dropdown-item:hover,
.board-share .share-drop .dropdown-item:focus {
    border: none;
    background-color: transparent;
}


/* 게시판 댓글 */
.comment-wrap {
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 10px;
    background-color: #F8F8F8;
}
@media (min-width: 1200px) {
    .comment-wrap {
        margin-bottom: 40px;
    }
}
.comment-wrap form {
    display: flex;
    flex-wrap: wrap;
}
.comment-wrap form textarea {
    width: 100%;
    margin-bottom: 5px;
    height: 60px;
}
@media (min-width: 1200px) {
    .comment-wrap form textarea {
        width: calc( 100% - 88px );
        margin-bottom: 0;
        border-radius: 6px 0 0 6px;
    }
}
.comment-wrap form .btn {
    width: 100%;
}
@media (min-width: 1200px) {
    .comment-wrap form .btn {
        width: 88px;
        padding: 0;
        border-radius: 0 6px 6px 0;
    }
}
.comment-title {
    margin-bottom: 10px;
    color: #1D1D1D;
    font-size: 17px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .comment-title {
        font-size: 19px;
    }
}
.comment-list {
    padding: 5px 15px;
    border-radius: 5px;
    background-color: #F8F8F8;
}
@media (min-width: 1200px) {
    .comment-list {
        padding: 10px 30px;
        border-radius: 10px;
    }
}
.comment-list li {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px dashed #C6C6C6;
}
@media (min-width: 1200px) {
    .comment-list li {
        padding: 15px 0;
    }
}
.comment-list li:last-child {
    border-bottom: none;
}
.comment-list li .comment-contents {
    color: #555;
    font-size: 15px;
}
@media (min-width: 1200px) {
    .comment-list li .comment-contents {
        font-size: 17px;
    }
}
.comment-list li .comment-info {
    margin-top: 5px;
    color: #555;
    font-size: 14px;
}
@media (min-width: 1200px) {
    .comment-list li .comment-info {
        margin-top: 10px;
        font-size: 15px;
    }
}
.comment-list li .comment-info span {
    padding-right: 20px;
}
.comment-list li .comment-btns {
    margin-top: 5px;
    text-align: right;
}
@media (min-width: 1200px) {
    .comment-list li .comment-btns {
        position: absolute;
        right: 0;
        bottom: 20px;
    }
}


/* 게시판 답변 */
.board-reply .reply-box {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 6px;
    background-color: #F8F8F8;
}
@media (min-width: 1200px) {
    .board-reply .reply-box {
        padding: 20px 30px;
    }
}
.board-reply .reply-box .box-info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px dashed #C6C6C6;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .box-info {
        flex-wrap: nowrap;
        padding-bottom: 15px;
    }
}
.board-reply .reply-box .box-info p {
    position: relative;
    width: 100%;
    padding-bottom: 5px;
    color: #444;
    font-size: 15px;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .box-info p {
        width: auto;
        padding: 0 60px 0 0;
        font-size: 17px;
    }
}
.board-reply .reply-box .box-info p strong {
    color: #1D1D1D;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .box-info p+p::before {
        content: '';
        position: absolute;
        top: 5px;
        left: -30px;
        width: 1px;
        height: 16px;
        border-right: 1px solid #D8D8D8;
    }
}
.board-reply .reply-box .reply-state {
    font-size: 15px;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .reply-state {
        font-size: 17px;
    }
}
.board-reply .reply-box .reply-state strong {
    display: block;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .reply-state strong {
        display: inline-block;
    }
}
.board-reply .reply-box .reply-state .state-text {
    display: block;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .reply-state .state-text {
        display: inline-block;
    }
}
.board-reply .reply-box .box-content {
    padding: 15px 0 10px;
    color: #555;
    font-size: 17px;
}
@media (min-width: 1200px) {
    .board-reply .reply-box .box-content {
        padding: 30px 0;
    }
}


/* 기간 포함 검색 */
.period-search {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    background-color: #F8F8F8;
}
.period-search form {
    flex-wrap: wrap;
}
@media (min-width: 1200px) {
    .period-search form {
        width: 100%;
        flex-wrap: nowrap;
    }
}
.period-search .input-daterange {
    width: 100%;
    margin-bottom: 6px;
}
@media (min-width: 1200px) {
    .period-search .input-daterange {
        width: 50%;
    }
}
.period-search .input-daterange input {
    text-align: left;
    border-radius: 6px !important;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-image: url(/pub/common/images/board/ico_calendar.svg);
}
.period-search .input-group-append .input-group-text {
    border: none;
}
.period-search .search-select {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
}
@media (min-width: 1200px) {
    .period-search .search-select {
        width: 130px;
        margin-left: 15px;
    }
}
.period-search .search-input {
    width: 100%;
}
@media (min-width: 1200px) {
    .period-search .search-input {
        width: calc( 50% - 150px );
        margin-left: 5px;
    }
}






/* 사업공고 리스트 */
.board-business {
    border-top: 1px solid #707070;
}
.board-business .board-list {
    padding: 15px 0 12px;
    border-bottom: 	1px solid #E4E4E4;
}
@media (min-width: 1200px) {
    .board-business .board-list {
        padding: 20px 0 15px;
    }
    .board-business .board-list a {
        display: flex;
        width: 100%;
    }
}
.board-business .board-list .list-number {
    display: none;
}
@media (min-width: 1200px) {
    .board-business .board-list .list-number {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        color: #555;
        font-size: 17px;
    }
}
@media (min-width: 1200px) {
    .board-business .board-list .list-contents {
        width: calc( 100% - 240px );
    }
}
.board-business .board-list .list-contents .con-category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 7px;
    color: #555;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #C6C6C6;
}
@media (min-width: 1200px) {
    .board-business .board-list .list-contents .con-category {
        margin-bottom: 12px;
        padding: 2px 8px;
        font-size: 15px;
    }
}
.board-business .board-list .list-contents .con-title {
    margin-bottom: 10px;
    color: #1D1D1D;
    font-size: 17px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .board-business .board-list .list-contents .con-title {
        font-size: 19px;
    }
}
.board-business .board-list .list-contents .con-date {
    color: #555;
    font-size: 15px;
}
@media (min-width: 1200px) {
    .board-business .board-list .list-contents .con-date {
        font-size: 17px;
    }
}
.board-business .board-list .list-state {
    font-size: 15px;
    text-align: right;
}
@media (min-width: 1200px) {
    .board-business .board-list .list-state {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        font-size: 17px;
    }
}

/* 사업공고 모달 */
.businessmodal-btn {
    margin-bottom: 10px;
    color: #fff;
    background-color: #003660;
}
@media (min-width: 1200px) {
    .businessmodal-btn {
        margin-bottom: 0;
        margin-right: 10px;
    }
}
.businessmodal-btn:hover {
    color: #fff;
    background-color: #002B4D;
}
.businessmodal-btn:active {
    color: #fff !important;
    background-color: #00203A !important;
}
.business-modal .modal-header {
    padding: 15px 15px 0px;
    border: none;
}
@media (min-width: 1200px) {
    .business-modal .modal-header {
        padding: 35px 40px 0px;
    }
}
.business-modal .modal-header .modal-title {
    font-size: 15px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .business-modal .modal-header .modal-title {
        font-size: 17px;
    }
}
.business-modal .modal-header button {
    color: #1D1D1D;
    font-size: 12px;
    opacity: 1;
}
@media (min-width: 1200px) {
    .business-modal .modal-header button {
        font-size: 14px;
    }
}
.business-modal .modal-body {
    padding: 15px;
}
@media (min-width: 1200px) {
    .business-modal .modal-body {
        padding: 20px 40px 30px;
    }
}
.business-modal .modal-body .alim-wrap .alert {
    margin-bottom: 25px;
    padding: 15px;
    color: #0061AB;
    font-size: 15px;
    border-radius: 6px;
    background-color: #F2F8FD;
}
@media (min-width: 1200px) {
    .business-modal .modal-body .alim-wrap .alert {
        margin-bottom: 30px;
        padding: 20px;
        font-size: 17px;
    }
}
.business-modal .modal-body .alim-wrap .alim-title {
    margin-bottom: 5px;
    color: #1D1D1D;
    font-size: 15px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .business-modal .modal-body .alim-wrap .alim-title {
        margin-bottom: 10px;
        font-size: 17px;
    }
}
.business-modal .modal-body .alim-wrap .alim-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
}

@media (min-width: 1200px) {
    .business-modal .modal-body .alim-wrap .alim-list {
        padding: 15px 20px;
        font-size: 17px;
    }
}
.business-modal .modal-body .alim-wrap .alim-list div {
    margin: 3px 0;
}
@media (min-width: 1200px) {
    .business-modal .modal-body .alim-wrap .alim-list div {
        margin: 5px 0;
    }
}
.business-modal .modal-body .alim-wrap .alim-list input {
    margin-right: 8px;
}
.business-modal .modal-footer {
    padding: 5px 15px 15px;
    border: none;
}
@media (min-width: 1200px) {
    .business-modal .modal-footer {
        padding: 0 40px 40px;
    }
}





/* 카드뉴스 리스트 */
.board-card .card-wrap {
    display: flex;
    flex-wrap: wrap;
}
.board-card .card-wrap .card-list {
    position: relative;
    width: calc( 50% - 6px );
    margin-right: 12px;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #D8D8D8;
}
@media (min-width: 1200px) {
    .board-card .card-wrap .card-list {
        width: calc( 32.8% - 15px );
        margin-right: 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 1200px) {
    .board-card .card-wrap .card-list:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    .board-card .card-wrap .card-list:nth-of-type(3n) {
        margin-right: 0;
    }
}
.board-card .card-wrap .card-list .card-img {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.board-card .card-wrap .card-list .card-img:hover::after {
    content: '\f055';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 38px;
    font-weight: 300;
    font-family: "Font Awesome 6 Pro";
    background-color: rgba(0, 0, 0, .5);
}
.board-card .card-wrap .card-list .card-title {
    margin-top: 10px;
    color: #1D1D1D;
    font-size: 15px;
    font-weight: bold;
}
.board-card .card-wrap .card-list .card-date {
    margin-top: 5px;
    color: #555;
    font-size: 14px;
}
.board-card .card-wrap .card-list .card-date span {
    position: relative;
    padding-right: 15px;
}
.board-card .card-wrap .card-list .card-date span i {
    padding-right: 4px;
}
.board-card .card-wrap .card-list .card-date span+span::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -8px;
    display: block;
    height: 12px;
    border-right: 1px solid #D8D8D8;
}
.board-card .card-wrap .card-list .card-link {
    display: none;
    width: 100%;
    margin-top: 5px;
    color: #555;
    font-size: 14px;
    text-align: right;
}
.board-card .card-wrap .card-list .card-link a {
    color: #555;
}
.board-card .card-wrap .card-list .card-link i {
    padding-left: 4px;
}

.board-card .card-wrap .card-list .admin-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.board-card .card-modal .modal-content {
    border: none;
    background-color: transparent;
}
.board-card .card-modal .modal-content .btn-close {
    position: absolute;
    top: -35px;
    right: 5px;
    color: #fff;
    font-size: 25px;
    background: transparent;
    opacity: 1;
}
@media (min-width: 1200px) {
    .board-card .card-modal .modal-content .btn-close {
        top: 0;
        right: -40px;
        font-size: 30px;
    }
}
.board-card .card-modal .card-swiper {
    padding: 5px;
    border-radius: 10px;
    background: #fff;
}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper {
        padding: 10px;
    }
}
.board-card .card-modal .card-swiper .swiper .swiper-slide {
    text-align: center;
}
.board-card .card-modal .card-swiper .swiper img {
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
}
.board-card .card-modal .card-swiper .swiper-pagination {
    position: absolute;
    bottom: -25px;
    left: 0;
    color: #fff;
    font-size: 15px;
}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper .swiper-pagination {
        font-size: 17px;
    }
}
.board-card .card-modal .card-swiper .swiper-button-prev,
.board-card .card-modal .card-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper .swiper-button-prev,
    .board-card .card-modal .card-swiper .swiper-button-next {
        top: calc( 50% - 25px );
        width: 50px;
        height: 50px;
        border: 1px solid #D8D8D8;
        background: transparent;
    }
}
.board-card .card-modal .card-swiper .swiper-button-prev {
    left: -5px;

}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper .swiper-button-prev {
        left: -65px;
    }
}
.board-card .card-modal .card-swiper .swiper-button-next {
    right: -5px;

}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper .swiper-button-next {
        right: -65px;
    }
}
.board-card .card-modal .card-swiper .swiper-button-prev::after  {
    content: "\f104";
}
.board-card .card-modal .card-swiper .swiper-button-next::after  {
    content: "\f105";
}
.board-card .card-modal .card-swiper .swiper-button-prev::after,
.board-card .card-modal .card-swiper .swiper-button-next::after {
    color: #1D1D1D;
    font-size: 16px;
    font-family: "Font Awesome 6 Pro";
}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper .swiper-button-prev::after,
    .board-card .card-modal .card-swiper .swiper-button-next::after {
        color: #fff;
        font-size: 18px;
    }
}
@media (min-width: 1200px) {
    .board-card .card-modal .card-swiper .swiper-button-prev:hover,
    .board-card .card-modal .card-swiper .swiper-button-next:hover {
        background-color: #fff;
    }
    .board-card .card-modal .card-swiper .swiper-button-prev:hover::after,
    .board-card .card-modal .card-swiper .swiper-button-next:hover::after {
        color: #1D1D1D;
    }
}


/* 자주묻는질문 */
.faq-accordion {
    border-top: 1px solid #1D1D1D;
    border-bottom: 1px solid #E4E4E4;
}
.faq-accordion .accordion-item {
    border-bottom: 1px solid #E4E4E4;
}
.faq-accordion .accordion-header button {
    display: flex;
    align-items: center;
    padding: 15px 0;
    box-shadow: none;
}
@media (min-width: 1200px) {
    .faq-accordion .accordion-header button {
        padding: 20px;
    }
}
.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: #fff;
}
.faq-accordion .accordion-header button .faq-q {
    margin-right: 6px;
    color: #1D1D1D;
    font-size: 19px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .faq-accordion .accordion-header button .faq-q {
        font-size: 25px;
    }
}
.faq-accordion .accordion-header button .faq-title {
    color: #555;
    font-size: 15px;
}
@media (min-width: 1200px) {
    .faq-accordion .accordion-header button .faq-title {
        font-size: 17px;
    }
}
.faq-accordion .accordion-body {
    position: relative;
    display: flex;
    padding: 12px 6px;
    border-top: 1px solid #E4E4E4;
    background-color: #F8F8F8;
}
@media (min-width: 1200px) {
    .faq-accordion .accordion-body {
        padding: 30px 20px;
    }
}
.faq-accordion .accordion-body .faq-a {
    margin-right: 10px;
    color: #0079D5;
    font-size: 25px;
    font-weight: bold;
    line-height: 120%;
}
@media (min-width: 1200px) {
    .faq-accordion .accordion-body .faq-a {
        margin-right: 25px;
        font-size: 40px;
        line-height: 100%;
    }
}
.faq-accordion .accordion-body .faq-content {
    color: #555;
    font-size: 15px;
    line-height: 140%;
}
@media (min-width: 1200px) {
    .faq-accordion .accordion-body .faq-content {
        font-size: 17px;
    }
}
.faq-accordion .accordion-body .admin-buttons {
    position: absolute;
    right: 10px;
    bottom: 10px;
}


/* 영상 리스트 */
.movie-list {
    display: flex;
    flex-wrap: wrap;
}
.movie-list .card {
    width: calc( 51% - 12px );
    margin: 0 12px 12px 0;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #D8D8D8;
}
@media (min-width: 1200px) {
    .movie-list .card {
        width: calc( 33.333% - 30px );
        margin: 0 30px 30px 0;
        padding: 20px;
    }
}
@media (max-width: 1200px) {
    .movie-list .card:nth-of-type(2n) {
        margin-right: 0;
    }
}
@media (min-width: 1200px) {
    .movie-list .card:nth-of-type(3n) {
        margin-right: 0;
    }
}
.movie-list span {
    display: block;
}
.movie-list .card-img {
    width: 100%;
    padding-bottom: 56%;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (min-width: 1200px) {
    .movie-list .card-img {
        margin-bottom: 15px;
    }
}
.movie-list .card-title {
    margin-bottom: 5px;
    color: #1D1D1D;
    font-size: 15px;
    font-weight: bold;
    line-height: 130%;
}
@media (min-width: 1200px) {
    .movie-list .card-title {
        margin-bottom: 10px;
        font-size: 17px;
    }
}
.movie-list .card-date {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
    text-align: right;
}
@media (min-width: 1200px) {
    .movie-list .card-date {
        font-size: 15px;
    }
}

.youtube-form .youtube-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.youtube-form .youtube-input .input-url {
    font-size: 13px;
}
@media (min-width: 1200px) {
    .youtube-form .youtube-input .input-url {
        font-size: 17px;
    }
}
.youtube-form .youtube-input .input-id {
    width: 35%;
    margin-left: 5px;
}
@media (min-width: 1200px) {
    .youtube-form .youtube-input .input-id {
        width: auto;
    }
}
.youtube-form small {
    font-size: 13px;
}

.youtube-iframe {
    margin-bottom: 20px;
}
@media (min-width: 1200px) {
    .youtube-iframe {
        margin-bottom: 40px;
    }
}

.youtube-iframe iframe {
    width: 100%;
    height: 200px;
}
@media (min-width: 1200px) {
    .youtube-iframe iframe {
        height: 570px;
    }
}


/* 미디어 게시판 */
.board-media {
    display: flex;
    flex-wrap: wrap;
}
.board-media .media-card {
    position: relative;
    width: calc( 50% - 6px );
    margin-bottom: 12px;
    margin-right: 12px;
    padding: 12px 10px 40px;
    border-radius: 6px;
    border: 1px solid #D8D8D8;
}
@media (min-width: 1200px) {
    .board-media .media-card {
        width: calc( 33.333% - 14px );
        min-height: 214px;
        margin-bottom: 20px;
        margin-right: 20px;
        padding: 20px 25px 50px;
    }
}
@media (max-width: 1200px) {
    .board-media .media-card:nth-of-type(2n) {
        margin-right: 0;
    }
}
@media (min-width: 1200px) {
    .board-media .media-card:nth-of-type(3n) {
        margin-right: 0;
    }
}
.board-media .media-card .category {
    margin-bottom: 10px;
    color: #0079D5;
    font-size: 14px;
}
@media (min-width: 1200px) {
    .board-media .media-card .category {
        margin-bottom: 12px;
        font-size: 16px;
    }
}
.board-media .media-card .title {
    margin-bottom: 10px;
    color: #1D1D1D;
    font-size: 15px;
    font-weight: bold;
}
@media (min-width: 1200px) {
    .board-media .media-card .title {
        font-size: 17px;
    }
}
.board-media .media-card .date {
    position: absolute;
    right: 10px;
    bottom: 12px;
    color: #555;
    font-size: 14px;
}
.board-media .media-card .btn-groups {
    margin-bottom: 10px;
}
@media (max-width: 1200px) {
    .board-media .media-card .btn-groups .btn.btn-sm {
        padding: 5px;
    }
}
@media (min-width: 1200px) {
    .board-media .media-card .date {
        right: 30px;
        bottom: 20px;
        font-size: 16px;
    }
}
.board-media .admin-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}


/* 미디어 게시판 모달 */
.media-modal .modal-content {
    border: none;
    background-color: transparent;
}
.media-modal .modal-content .btn-close {
    position: absolute;
    top: -35px;
    right: 5px;
    color: #fff;
    font-size: 25px;
    background: transparent;
    opacity: 1;
}
@media (min-width: 1200px) {
    .media-modal .modal-content .btn-close {
        top: 0;
        right: -40px;
        font-size: 30px;
    }
}
.media-modal .modal-content .img-responsive {
    margin: 0 auto;
}



/* 포토뉴스 게시판 */
.photonews-view {
    width: 100%;
    display: flex;
    justify-content: center;
}
.board-photonews {
    width: 100%;
    padding: 0 10px;
}
@media (min-width: 1200px) {
    .board-photonews {
        width: 800px;
    }
}
@media (min-width: 1400px) {
    .board-photonews {
        width: 960px;
    }
}
.board-photonews .photonews-wrap {
    position: relative;
    margin-bottom: 10px;
}
@media (min-width: 1200px) {
    .board-photonews .photonews-wrap {
        margin-bottom: 15px;
    }
}
.board-photonews .swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.board-photonews .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.board-photonews .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board-photonews .photonews-swiper {
    width: 100%;
}
.board-photonews .photonews-swiperthumbs {
    padding: 15px 10px;
    background: #F8F8F8;
}
@media (min-width: 1200px) {
    .board-photonews .photonews-swiperthumbs {
        padding: 25px 20px;
    }
}
.board-photonews .photonews-swiperthumbs .swiper-slide {
    width: 25%;
    height: 80px;
    opacity: 0.4;
}
@media (min-width: 1200px) {
    .board-photonews .photonews-swiperthumbs .swiper-slide {
        height: 120px;
    }
}
.board-photonews .photonews-swiperthumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.board-photonews .swiper-button-next,
.board-photonews .swiper-button-prev {
    display: inline-flex;
    width: 36px;
    height: 36px;
    top: calc( 50% - 18px );
    border-radius: 50%;
    border: 1px solid #C6C6C6;
    background-color: #fff;
}
@media (min-width: 1200px) {
    .board-photonews .swiper-button-next,
    .board-photonews .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: calc( 50% - 25px );
    }
}
.board-photonews .swiper-button-prev {
    left: -16px;
}
@media (min-width: 1200px) {
    .board-photonews .swiper-button-prev {
        left: -25px;
    }
}
.board-photonews .swiper-button-next {
    right: -16px;
}
@media (min-width: 1200px) {
    .board-photonews .swiper-button-next {
        right: -25px;
    }
}
.board-photonews .swiper-button-next:after,
.board-photonews .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
    color: #1D1D1D !important;

}