html {
    font-size: 100% !important;
}

.bootbox-body {
    font-size: 15px;
    color:#000;
}

.bootbox .close {
    display:none;
}

a {
    cursor: pointer;
    color:#000;
}

body {
    background-color:var(--bs-primary);
    font-family: "Noto Sans", sans-serif;
}

/* 애니메이션  */
.ani-fade-in {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip {
    position: absolute;
    background-color: #000000cc;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 1080 !important;
}

.tooltip.show {
    opacity: 1;
}

.pull-right {
    float:right;
}


.container-post .btn {
    font-family: Alial !important;
    line-height: 155%;
}

/*상단 메뉴와 그 서버메뉴 */
.menuBar {
    z-index: 1100 !important;
}

.dropdown-menu {
    border-radius: 20px !important;
    overflow:hidden !important;
}
.jumenu-item {
    position: relative; /* 기준점이 되는 부모 요소 */
}
.jumenu-item ul.submenu-box {
    position: absolute;
    top: 100%; /* 링크 아래에 위치 */
    left: auto;
    right: 0; /* 부모의 오른쪽 끝에 맞춤 */
    z-index: 1000; /* 다른 요소 위에 나타나도록 */
    display: block; /* 항상 block 유지, 대신 visible 여부는 opacity로 */
    opacity: 0;
    transform: translateY(10px); /* 약간 아래로 내려간 상태로 시작 */
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 140px; /* 필요에 따라 너비 지정 */
    width: fit-content; /* 내용에 맞춰 너비 자동 조절 */
    white-space: nowrap; /* 줄바꿈 방지 */
    pointer-events: none; /* 마우스 이벤트 차단 (숨겨질 때) */
}
.jumenu-item:hover ul.submenu-box {
    opacity: 1;
    transform: translateY(0); /* 원래 위치로 슬라이드 업 */
    visibility: visible;
    pointer-events: auto; /* 마우스 이벤트 허용 */
}
.submenu-box span {
    font-size: 0.9rem;

}
.submenu-box li.submenu-item {
    float: none !important;   /* 기존 float 해제 */
    display: block !important;  /* 한 줄에 하나씩 표시 */
    padding: 5px 25px 5px 20px !important;
    margin: 0 !important;
    width: 100%;
    cursor: pointer;
}
.submenu-box li.submenu-item:first-child {
    padding-top: 20px !important;
}
.submenu-box li.submenu-item:last-child {
    padding-bottom: 20px !important;
}
.submenu-box li.submenu-item:hover {
    background-color: rgba(62, 49, 46, 0.05);
}
.submenu-box li.submenu-item a.submenu-link {
    padding: 0 !important;
}
.submenu-box li.submenu-item a.submenu-link span.submenu-name {
    padding: 0 !important;
    color:#000;
}
.submenu-box li.submenu-item:hover a.submenu-link {
    text-decoration: none;
}
.submenu-box li.submenu-item:hover a.submenu-link span.submenu-name {
    color:var(--bs-primary) !important;
}


.bannertitle .h6 {
    font-family: "Arial", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-left: 2px;
}
.bannertitle .h6:hover {
    color:#ffcc00;
}

/* 순차적인 애니메이션을 위해 각 요소에 다른 지연 시간을 줍니다. */
.ani-fade-in:nth-child(1) {
    animation-delay: 0s;
}

.ani-fade-in:nth-child(2) {
    animation-delay: 0.1s;
}

.ani-fade-in:nth-child(3) {
    animation-delay: 0.2s;
}

.ani-fade-in:nth-child(4) {
    animation-delay: 0.3s;
}

.ani-fade-in:nth-child(5) {
    animation-delay: 0.4s;
}

.ani-fade-in:nth-child(6) {
    animation-delay: 0.5s;
}

.ani-fade-in:nth-child(7) {
    animation-delay: 0.6s;
}

.ani-fade-in:nth-child(8) {
    animation-delay: 0.7s;
}

.ani-fade-in:nth-child(9) {
    animation-delay: 0.8s;
}

.ani-fade-in:nth-child(10) {
    animation-delay: 0.9s;
}

.ani-fade-in:nth-child(11) {
    animation-delay: 1.03s;
}

.ani-fade-in:nth-child(12) {
    animation-delay: 1.06s;
}

.ani-fade-in:nth-child(13) {
    animation-delay: 1.09s;
}

.ani-fade-in:nth-child(14) {
    animation-delay: 1.12s;
}

.ani-fade-in:nth-child(15) {
    animation-delay: 1.15s;
}

.ani-fade-in:nth-child(16) {
    animation-delay: 1.18s;
}

.ani-fade-in:nth-child(17) {
    animation-delay: 1.20s;
}

.ani-fade-in:nth-child(18) {
    animation-delay: 1.22s;
}

.ani-fade-in:nth-child(19) {
    animation-delay: 1.24s;
}

.ani-fade-in:nth-child(20) {
    animation-delay: 1.25s;
}


.ani-fade-in-left {
    opacity: 0;
    transform: translateX(-150px);
    animation: slideDown 1s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 순차적인 애니메이션을 위해 각 요소에 다른 지연 시간을 줍니다. */
.ani-fade-in-left:nth-child(1) {
    animation-delay: 0s;
}

.ani-fade-in-left:nth-child(2) {
    animation-delay: 0.1s;
}

.ani-fade-in-left:nth-child(3) {
    animation-delay: 0.2s;
}

.ani-fade-in-left:nth-child(4) {
    animation-delay: 0.3s;
}

.ani-fade-in-left:nth-child(5) {
    animation-delay: 0.4s;
}

.ani-fade-in-left:nth-child(6) {
    animation-delay: 0.5s;
}

.ani-fade-in-left:nth-child(7) {
    animation-delay: 0.6s;
}

.ani-fade-in-left:nth-child(8) {
    animation-delay: 0.7s;
}

.ani-fade-in-left:nth-child(9) {
    animation-delay: 0.8s;
}

.ani-fade-in-left:nth-child(10) {
    animation-delay: 0.9s;
}

.ani-fade-in-left:nth-child(11) {
    animation-delay: 1.03s;
}

.ani-fade-in-left:nth-child(12) {
    animation-delay: 1.06s;
}

.ani-fade-in-left:nth-child(13) {
    animation-delay: 1.09s;
}

.ani-fade-in-left:nth-child(14) {
    animation-delay: 1.12s;
}

.ani-fade-in-left:nth-child(15) {
    animation-delay: 1.15s;
}

.ani-fade-in-left:nth-child(16) {
    animation-delay: 1.18s;
}

.ani-fade-in-left:nth-child(17) {
    animation-delay: 1.20s;
}

.ani-fade-in-left:nth-child(18) {
    animation-delay: 1.22s;
}

.ani-fade-in-left:nth-child(19) {
    animation-delay: 1.24s;
}

.ani-fade-in-left:nth-child(20) {
    animation-delay: 1.25s;
}

.ani-fade-in-right {
    opacity: 0;
    transform: translateX(150px);
    animation: slideDown 1s forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 순차적인 애니메이션을 위해 각 요소에 다른 지연 시간을 줍니다. */
.ani-fade-in-right:nth-child(1) {
    animation-delay: 0s;
}

.ani-fade-in-right:nth-child(2) {
    animation-delay: 0.1s;
}

.ani-fade-in-right:nth-child(3) {
    animation-delay: 0.2s;
}

.ani-fade-in-right:nth-child(4) {
    animation-delay: 0.3s;
}

.ani-fade-in-right:nth-child(5) {
    animation-delay: 0.4s;
}

.ani-fade-in-right:nth-child(6) {
    animation-delay: 0.5s;
}

.ani-fade-in-right:nth-child(7) {
    animation-delay: 0.6s;
}

.ani-fade-in-right:nth-child(8) {
    animation-delay: 0.7s;
}

.ani-fade-in-right:nth-child(9) {
    animation-delay: 0.8s;
}

.ani-fade-in-right:nth-child(10) {
    animation-delay: 0.9s;
}

.ani-fade-in-right:nth-child(11) {
    animation-delay: 1.03s;
}

.ani-fade-in-right:nth-child(12) {
    animation-delay: 1.06s;
}

.ani-fade-in-right:nth-child(13) {
    animation-delay: 1.09s;
}

.ani-fade-in-right:nth-child(14) {
    animation-delay: 1.12s;
}

.ani-fade-in-right:nth-child(15) {
    animation-delay: 1.15s;
}

.ani-fade-in-right:nth-child(16) {
    animation-delay: 1.18s;
}

.ani-fade-in-right:nth-child(17) {
    animation-delay: 1.20s;
}

.ani-fade-in-right:nth-child(18) {
    animation-delay: 1.22s;
}

.ani-fade-in-right:nth-child(19) {
    animation-delay: 1.24s;
}

.ani-fade-in-right:nth-child(20) {
    animation-delay: 1.25s;
}

/*목록가기 버튼*/
.fixedBtn {
    position: fixed;
    left: calc(50% - 640px - 80px); /* 홈페이지 중앙에서 왼쪽으로 이동 */
    top: 50%; /* 상하 중앙 */
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0px 1px 1px rgba(0,0,0,.1),
    1px 2px 20px rgba(126, 114, 91, 0.1);
    cursor: pointer;
    transition: 0.15s;
}
.fixedBtn:hover {
    background-color:var(--bs-secondary);
    color:#fff;
    transition: 0.15s
}


/*책 선택 효과*/
.book-container {
    perspective: 1600px;
    display: inline-block;
}

.book {
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.book:hover {
    transform: rotateY(-10deg) rotateX(4deg);
}

.book::before,
.book::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #faf7f5;
    box-shadow: inset 0 0 70px rgba(0,0,0, 0.08);
    border:0.1px solid rgba(0,0,0,.2);
    z-index: -1;
}

.book::before {
    transform: rotateY(70deg);
    transform-origin: left center;
}

.book::after {
    top:0;
    transform: rotateY(-90deg);
    transform-origin: right center;
}

.book img {
    display: block;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.book:hover img {
    display: block;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

/*드래그 하이라이트 */
.highlighted {
    background-color:#E6FF0EFF
}
.highlighted-0 {
    color: red; /* 첫 번째 색상 */
}
.highlighted-1 {
    color: blue; /* 두 번째 색상 */
}
.highlighted-2 {
    color: green; /* 세 번째 색상 */
}

p {
    /*font-size: 17.6px;*/
    /*line-height: 260%;*/
}

#chapter.floating
{
    position: fixed;
    top: 63px;
}

@media only screen and (min-width: 700px) {


}

.d-flex-warp {
    flex-wrap: wrap;
}
.d-flex .flex1 {
    flex: 1;
}
.d-flex .flex2 {
    flex: 2
}
.d-flex .flex3 {
    flex: 3
}
.d-flex .flex4 {
    flex: 4
}
.d-flex .flex5 {
    flex: 5
}
.d-flex .flex8 {
    flex: 8
}
.d-flex .flex10 {
    flex: 10
}
.d-flex .flex1p5 {
    flex: 0 0 auto;
    width: 20%;
}

@font-face {
    font-family: 'SommangM';
    src: url('/common/assets/fonts/SommangM.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'RotisSemSer';
    src: url('/common/assets/fonts/RotisSemSer.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
.font-smm {
    font-family: 'SommangM', sans-serif !important;
    font-weight: 400 !important;
}
.font-rss {
    font-family: 'RotisSemSer', sans-serif !important;
    font-weight: 400 !important;
}

h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-weight: 800;
}

.fw300 {
    font-weight: 300 !important;
}
.fw400 {
    font-weight: 400 !important;
}
.fw500 {
    font-weight: 500 !important;
}
.fw600 {
    font-weight: 600 !important;
}
.fw700 {
    font-weight: 700 !important;
}
.fw800 {
    font-weight: 800 !important;
}

.flex1 {
    flex:1 !important;
}
.flex2 {
    flex:2 !important;
}
.flex4 {
    flex:4 !important;
}
.flex5 {
    flex:5 !important;
}
.flex6 {
    flex:6 !important;
}
.flex10 {
    flex:10 !important;
}

.form-label {
    font-size: 15px;
    color:#000;
    font-weight: 700
}
.form-control,
.form-select {
    font-size: 15px;
}

.pointer {
    cursor:pointer;
}

.line-height-100 {
    line-height: 100% !important;
}
.line-height-120 {
    line-height: 120% !important;
}
.line-height-150 {
    line-height: 150% !important;
}
.line-height-180 {
    line-height: 180% !important;
}
.line-height-220 {
    line-height: 220% !important;
}

.modal-content {
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    border-radius: 15px !important;
}

.hide {
    display:none !important;
}



.editMenuBox {
}

tbody td {
    font-size: 15px;
    vertical-align: top;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * 0);
}

.border-1 {
    border: 0.1px solid var(--bs-gray-300);
}

.boxShadow {
    box-shadow: 0 3px 50px rgba(59, 54, 52, 0.2),
                0 3px 20px rgba(51, 48, 44, 0.2),
                0 7px 18px rgba(45, 41, 36, 0.3)
}

.shadow-1 {
    box-shadow: 0 1px 1px rgba(59, 54, 52, 0.1),
                0 0 3px rgba(51, 48, 44, 0.06) !important
}

.coverImg .noImgtitle {
    font-size: 1.3rem;
}
.coverImg .text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5),
                 2px 2px 40px rgba(255,255,255, 0.2);
}
.coverImg.bg-noimage-primary {
    color: #fff;
    background: linear-gradient(to bottom, #0767e3, #0767e3,  #0767e3, #0858bf);
    box-shadow: inset 0px -5px 25px rgba(0,0,0,.1);
}


.ribbon {
    position: relative;
    min-height: 3.25rem;
}

.ribbon-box {
    position: absolute;
    top: 0.75rem;
    right: 0;
    padding: 0 0.7rem;
    height: 2rem;
    line-height: 2rem;
    z-index: 5;
    font-weight: 600;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    font-size: 0.8rem;
}
.ribbon-box::before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: "";
}

.ribbon-bookmark .ribbon-box {
    padding-left: 0.625rem;
    border-radius: 0 !important;
}
.ribbon-bookmark .ribbon-box::before {
    top: 0;
    right: 100%;
    height: 2rem;
    border: 1rem solid;
    border-left-width: 0.625rem;
    border-right-width: 0;
}

.ribbon-primary .ribbon-box {
    color: #fff;
    background-color: #272626
}

.ribbon-primary.ribbon-bookmark .ribbon-box::before {
    border-color: #272626;
    border-left-color: transparent
}

.ribbon-primary.ribbon-bookmark.ribbon-left .ribbon-box::before {
    border-color: #272626;
    border-right-color: transparent
}




.profile_40 {
    width: 40px;
    height: 40px;
    overflow:hidden;
    border-radius: 40px;
    border:0.1px solid rgba(0,0,0,.2);
    box-shadow: 2px 5px 15px rgba(59, 46, 46, 0.1);
}
.profile_40 img {
    width: 100%;
}

.profile_50 {
    width: 50px;
    height: 50px;
    overflow:hidden;
    border-radius: 40px;
    border:0.1px solid rgba(0,0,0,.2);
    box-shadow: 2px 5px 15px rgba(59, 46, 46, 0.1);
}
.profile_50 img {
    width: 100%;
}

/*label*/
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 180%;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}
a.label:hover,
a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.label:empty {
    display: none;
}
.btn .label {
    position: relative;
    top: -1px;
}

.label-primary {
    background-color: #005197;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #005197;
}
.label-transharf {
    background-color: rgba(0,0,0,.4);
    color:rgba(255,255,255,.5);
}
.label-transharf[href]:hover,
.label-transharf[href]:focus {
    background-color: rgba(0,0,0,.8);
}
.active .label-transharf {
    background-color: rgba(0,0,0,.4);
    color:#ffcc00
}

.label-success {
    background-color: #46c37b !important;
    color:#fff !important;
}
.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #34a263 !important;
    color:#fff !important;
}
.label-info {
    background-color: var(--bs-info);
}
.label-info[href]:hover,
.label-info[href]:focus {
    background-color: var(--bs-info)
}
.label-warning {
    background-color: #ffcc00 !important;
    color:#fff !important;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ffcc00 !important;
    color:#fff !important;
}
.label-danger {
    background-color: #ff3300 !important;
    color:#fff !important;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #ff3300 !important;
    color:#fff !important;
}
.badge-primary {
    background-color: #005197 !important;
    color:#fff !important;
}
.badge-success {
    background-color: #46c37b !important;
    color:#fff !important;
}
.badge-info {
    background-color: #70b9eb !important;
    color:#fff !important;
}
.badge-warning {
    background-color: #ffcc00 !important;
    color:#fff !important;
}
.badge-danger {
    background-color: #ff3300 !important;
    color:#fff !important;
}

.btn {
    cursor:pointer;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

#bbs_view .filebox {
    border: 0.5px dashed #ddd;`
    background-color: var(--bs-gray-100);
    padding: 10px 15px;
    margin: 20px 0 0 0 !important;
    border-radius: 15px;
}
#bbs_view .btn-alt-secondary {
    color: #1e2226 !important;
    background-color: #ebeef290 !important;
}
#bbs_view .btn-alt-secondary:hover {
    color: #1e2226 !important;
    background-color: rgba(218, 220, 223, 0.56) !important;
}

.row > *{
    padding-bottom: calc(var(--bs-gutter-y)* 0.8);
}


.select2-container--default .select2-selection--single {
    border-color: #f0f1f2 !important;
    background-color: #f0f1f2 !important;
    border-radius: var(--bs-border-radius) !important;
    padding: 3px !important;
    height: 36px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    top: 0;
    right: 6px !important;
    width: 20px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #005197 !important;
    color: white;
}

.bootstrap-tagsinput {
    background-color: #f0f1f2;
    border: 1px solid #f0f1f2;
    padding: 6px;
}

.flatpickr-input.form-control:disabled, .flatpickr-input.form-control[readonly], .input.form-control:disabled, .input.form-control[readonly] {
    background-color: #f0f1f2;
    border-color: #f0f1f2;
}

.ck-rounded-corners {
    border-radius: 3px;
    overflow:hidden;
}

.line-height-150 {
    line-height: 150%;
}
.line-height-180 {
    line-height: 180%;
}
.line-height-200 {
    line-height: 200%;
}

.spinner {
    padding-top: 7.5px;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 3px solid #EAEAEA;
    border-radius: 100%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation:spin 1000ms infinite linear;
}
@keyframes spin {
    100%{
        transform: rotate(360deg);
    }
}
.loading_, .sending_, .processing_, .searching_ {
    width:100%;
    position: fixed; top:45%; left:0; background: rgba(255,255,255,.6); text-align: center; padding:20px 0; display: none;
    font-size: 14px; font-weight: 900; color:#000; z-index: 9999;
}
.loading_ i, .sending_ i, .processing_ i, .searching_ i {
    font-size:30px
}

.inFile .imgfile {
    overflow:hidden;
    border-radius: 5px;
}
.inFile .imgfile img
{
    width: 100%;
}


.pages {
    margin: 0 10px;
}
.pagination {
    margin: 0;
}
.paginate_button a {
    padding: 6px 8px !important;
}

a.tag:hover {
    color:#ff3300;
}

th {
    vertical-align: middle;
}

/*checkbox */
.css-input {
    position: relative;
    display: inline-block;
    margin: 2px 0;
    font-weight: 400;
    cursor: pointer;
}
.css-input input {
    position: absolute;
    opacity: 0;
}
.css-input input:focus + span {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.css-input input + span {
    position: relative;
    display: inline-block;
    margin-top: -2px;
    margin-right: 3px;
    vertical-align: middle;
}
.css-input input + span:after {
    position: absolute;
    content: "";
}
.css-input-disabled {
    opacity: .5;
    cursor: not-allowed;
}
.css-checkbox {
    margin: 7px 0;
}
.css-checkbox input + span {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.css-checkbox input + span:after {
    top: 2px;
    right: 0;
    bottom: 0;
    left: 1px;
    font-family: "fontawesome";
    font-size: 10px;
    color: #fff;
    line-height: 18px;
    content: "\f00c";
    text-align: center;
}
.css-checkbox:hover input + span {
    border-color: #ccc;
}
.css-checkbox.css-checkbox-sm {
    margin: 9px 0 8px;
    font-size: 12px;
}
.css-checkbox.css-checkbox-sm input + span {
    width: 16px;
    height: 16px;
}
.css-checkbox.css-checkbox-sm input + span:after {
    font-size: 8px;
    line-height: 15px;
}
.css-checkbox.css-checkbox-lg {
    margin: 3px 0;
}
.css-checkbox.css-checkbox-lg input + span {
    width: 30px;
    height: 30px;
}
.css-checkbox.css-checkbox-lg input + span:after {
    font-size: 12px;
    line-height: 30px;
}
.css-checkbox.css-checkbox-rounded input + span {
    border-radius: 3px;
}
.css-checkbox-default input:checked + span {
    background-color: #999999;
    border-color: #999999;
}
.css-checkbox-primary input:checked + span {
    background-color: #5c90d2;
    border-color: #5c90d2;
}
.css-checkbox-info input:checked + span {
    background-color: #70b9eb;
    border-color: #70b9eb;
}
.css-checkbox-success input:checked + span {
    background-color: #46c37b;
    border-color: #46c37b;
}
.css-checkbox-warning input:checked + span {
    background-color: #f3b760;
    border-color: #f3b760;
}
.css-checkbox-danger input:checked + span {
    background-color: #ff3300;
    border-color: #ff3300;
}

.pointer {
    cursor: pointer;
}


#page-container.page-header-fixed #main-container {
     padding-top: 0rem;
}

/*header*/
header {
}
header .logo {
    width: 50px;
    height: 50px;
    margin-top: 15px;
    overflow: hidden;
}
header .logo img {
    width: 100%;
}
header .btn {
    padding-top: 8px;
    padding-left: 8px;
    padding-right: 8px;
    color:#000;
}
header .btn i {
    font-size:18px;
}

header .profile {
    width: 30px;
    height: 30px;
    overflow:hidden;
    border-radius: 50px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
header .profile img {
    width: 100%;
}

header .badge {
    background-color:#005197;
    color:#fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
header .btn {
    color:#000;
}
header .btn:hover {
    color:#005197;
}

header .alram-box {
    max-height: 400px;
    overflow:auto;
}
header .alrambox ul.nav-items {
}
header .alrambox ul.nav-items li.post {
    padding: 10px 20px;
    padding-bottom: 0;
}
header .alrambox ul.nav-items li.post:hover {
    background-color:var(--bs-black-trans-3);
}
header .alrambox ul.nav-items li.post .user {
    padding-right: 15px;
}
header .alrambox ul.nav-items li.post .pic {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    overflow:hidden;
}
header .alrambox ul.nav-items li.post .pic img {
    width: 100%;
}
header .alrambox ul.nav-items li.post .inf {
    width: 100%;
    border-bottom: 0.1px solid var(--bs-gray-200);
    padding-bottom: 10px;
}
header .alrambox ul.nav-items li.post:last-child .inf {
    border:0
}
header .alrambox ul.nav-items li.post .inf .comtitle {
    float:left;
    width: 100%;
}
header .alrambox ul.nav-items li.post .inf .ctitle {
    width: 100%;
}
header .alrambox ul.nav-items li.post .inf .date {
    width: 100%;
    color: var(--bs-gray-500);
}
header .alrambox .dropdown-menu.dropdown-menu-lg {
    width: 400px;
}

header .favorite-box {
    max-height: 700px;
    overflow:auto;
}
header .favorite-box .btn i {
    font-size: 11px;
}
header .favorite-box .h6 {
    font-size: 97%;
}
header .favorite-box .h7 {
    font-size: 87%;
}
header .favoritebox ul.nav-items {
}
header .favoritebox ul.nav-items li.post {
    padding: 10px 20px;
    padding-bottom: 0;
}
header .favoritebox ul.nav-items li.post:hover {
    background-color:var(--bs-black-trans-3);
}
header .favoritebox ul.nav-items li.post .user {
    padding-right: 15px;
}
header .favoritebox ul.nav-items li.post .pic {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    overflow:hidden;
}
header .favoritebox ul.nav-items li.post .pic img {
    width: 100%;
}
header .favoritebox ul.nav-items li.post .inf {
    width: 100%;
    border-bottom: 0.1px solid var(--bs-gray-200);
    padding-bottom: 10px;
}
header .favoritebox ul.nav-items li.post:last-child .inf {
    border:0
}
header .favoritebox ul.nav-items li.post .inf .comtitle {
    float:left;
    width: 100%;
}
header .favoritebox ul.nav-items li.post .inf .ctitle {
    width: 100%;
}
header .favoritebox ul.nav-items li.post .inf .date {
    width: 100%;
    color: var(--bs-gray-500);
}
header .favoritebox .dropdown-menu.dropdown-menu-lg {
    width: 400px;
}
header .favorite-box .fav .btn {
    padding: 15px 10px;
}
header .favorite-box .fav i {
    line-height: 120%;
}

.liTags {
    height: 18px;
    line-height: 140%;
    overflow: hidden;
}
.liTags a {
    white-space: nowrap;
}



/*Header Dark Mode*/
.page-header-dark header .profile {
    border:0.1px solid #ffffff99
}
.page-header-dark header .badge {
    background-color:#fff;
    color:var(--bs-primary);
}
.page-header-dark header .btn {
    color:#fff;
}
.page-header-dark header .btn svg {
    fill:#fff;
}
.page-header-dark header .btn:hover {
    color:#ffcc00;
}

.bg-body-light
{
    background-color:#fff !important;
    color:#000;
}

.btFav i {
    font-size: 11px !important;
}


.dropdown-menu.langTop {
    min-width: 150px
}
.dropdown-menu.langTop .active {
    background-color:var(--bs-gray-400);
}
.dropdown-menu.menuBar {
    min-width: 250px
}
.dropdown-menu.menuBar .active {
    background-color:var(--bs-gray-400);
}

.page-header-dark #main-container {
    background-color: var(--bs-primary);
    color:#fff;
}

.page-header-dark #hero {
    background-color: transparent;
    color:#fff;
}

#page-container.page-header-dark #page-header {
    background-color: transparent;
}



#page-container.dark-mode #main-container .bg-body-light {
    background-color: #fff;
}

.page-header-dark footer
{
    color:#fff;
}
@charset "UTF-8";
:root,
[jbch-theme=light] {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
}


#hero {
    background-size: cover;
    background-position: center center;
}

#hero .back-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none; /* 클릭이나 포인터 이벤트가 영상에 전달되도록 */
    z-index: 1;
}

#hero .back-video {
    position: absolute;
    left: 0;
    right:0;
    /*width: 100vw;*/
    height: 480px;
    z-index: 1; /* 내용 뒤에 위치하도록 */
    overflow:hidden;
}

#hero .back-video video {
    left: 50%;
    object-fit: cover;
    background-size: cover;
    width: 100vw;
    height: 480px;
}



/*index hero*/
#hero.index {
    color:#fff;
    height: 480px;
    /*overflow: hidden;*/
}
#hero.index .logo img {
    width: 60px;
}

#hero.index a {
    color:#fff;
}
#hero.index .hero-content {
    margin-top: 2rem;
}
#hero.index .menu ul {
    list-style:none;
    padding:0;
    margin:0;
}
#hero.index .menu ul li {
    padding: 20px 0 0 0;
    margin:0 0 0 20px;
    font-weight: 600;
    float:left;
    font-size: 1.1rem;
}
#hero.index .menu ul li a {
    padding:20px 10px 10px 10px;
}
#hero.index .menu ul li.active a {
    color:var(--bs-warning);
}
#hero.index .menu ul li:last-child a {
    padding-right: 0
}
#hero.index .menu ul li:hover a {
    color:#ffcc00;
}


.hero-content {
    position: relative;
    z-index: 10; /* 영상 위에 내용이 보이도록 */
    color: white; /* 내용이 눈에 띄도록 */
    text-align: center; /* 가운데 정렬 */
    /* 추가 스타일링 */
}

#hero.index .hero-area{
    text-align: center;
    overflow: hidden;
}
#hero.index .copyarea {
    width: 100%;
    height: 220px;
    text-align:center;
    padding-top: 100px;
}
#hero.index .copyarea h1 {
    font-family: serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0px;
    font-size: 32px;
    text-shadow: 0 6px 500px rgba(0,0,0,.2), 1px 1px 1px rgba(0,0,0,.3), 0 4px 20px rgba(0,0,0,.1), 0 2px 3px rgba(0,0,0,.1);
}

#hero.index .searcharea {
    width: 100%;
}

#hero.index .searcharea .search-box {
    display: flex;
    margin-top: 60px;
    align-items: center;
    border: 0px solid var(--bs-primary); ; /* 파란색 테두리 */
    padding: 2px;
    background-color:#fff;
    overflow:hidden;
    width: 500px;
    border-radius: 50px; /* 모서리 둥글게 */
}

#hero.index .searcharea .search-box input[type="text"] {
    border: none;
    padding: 7px 15px;
    margin-right: 5px;
    flex-grow: 1; /* input 박스가 남은 공간을 모두 차지하도록 */
}
#hero.index .searcharea .search-box input[type="text"]:focus {
    border: 0;
    outline: 0;
}

#hero.index .searcharea .search-box button {
    background: none;
    border: none;
    cursor: pointer;
    padding-right: 15px;
}

#hero.index .searcharea .search-box i {
    color: var(--bs-primary); /* 파란색 아이콘 */
}

#hero .jumenu-item > a {
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2), 1px 1px 10px rgba(0, 0, 0, 0.3);
}

/*서브 hero*/
#hero.sub {
    color:#fff;
    height: 310px;
    /*overflow: hidden;*/
}
#hero.sub .row .col-2 {
    backdrop-filter: blur(10px);
}
#hero.sub a {
    color:#fff;
}
#hero.sub .hero-content {
    margin-top: 2rem;
}
#hero.sub .menu ul {
    list-style:none;
    padding:0;
    margin:0;
}
#hero.sub .menu ul li {
    padding: 20px 0 0 0;
    margin:0 0 0 20px;
    font-weight: 600;
    float:left;
    font-size: 1.1rem;
}
#hero.sub .menu ul li.active a {
    color:var(--bs-warning);
}
#hero.sub .menu ul li a {
    padding:20px 10px 10px 10px;
}
#hero.sub .menu ul li:last-child a {
    padding-right: 0
}
#hero.sub .menu ul li:hover a {
    color:#ffcc00;
}
#hero.sub .hero-area{
    text-align: center;
    overflow: hidden;
}
#hero.sub .copyarea {
    width: 100%;
    text-align:center;
    padding-top: 75px;
    padding-bottom: 75px;
}
#hero.sub .copyarea h1 {
    font-weight: 900;
    font-style: normal;
    margin-bottom: 0px;
    font-size: 32px;
    text-shadow: 0 6px 500px rgba(0,0,0,.1), 0 4px 20px rgba(0,0,0,.1), 0 2px 3px rgba(0,0,0,.1);
}

.viewAddFiles div.addfile {
    margin-bottom: 30px;
}
.viewAddFiles div.addfile p {
    width: 100%;
    border-radius: 15px;
    box-shadow: -2px 0 3px rgba(0,0,0,.06), 2px 0 3px rgba(0,0,0,.06), 0 5px 3px rgba(0,0,0,.06);
    overflow:hidden;
}
.viewAddFiles div.addfile img {
    width: 100%;
}
.playBox video,
.viewAddFiles div.addfile video {
    width: 100%;
    border-radius: 15px;
    overflow:hidden;
}

.view-article img {
    border-radius: 15px;
}

.row > .col-20p {
    flex: 0 0 auto;
    width: 20%;
}

.view img {
    width: 100% !important;
    height: initial !important;
}

/*글 내용중 버튼 또는 첨부파일 목록버튼 */
#bbs_view a:not(:has(img)),
.view .view-article a:not(:has(img))  {
    background-color:var(--bs-secondary);
    border-radius: 20px;
    color: #fff;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 6px 22px;
}
/* #bbs_view : 게시판*/
#bbs_view a span {
    color:#fff !important;
}

.btn-danger {
    background-color: var(--bs-danger) !important;
}

.view .view-article a:hover {;
    background-color: #1281ACFF;
}

.view .message-content a {
    color: var(--bs-secondary);
}
.view .message-content a[target="_blank"]::before {
    font-family: 'fontawesome';
    content: "\f0c1 ";
    margin-right: 5px;
    font-size: 0.8em;
    color: var(--bs-secondary);
}

.table {
    --bs-table-bg: var(--bs-translate);
}

#btClearKeyword {
    display:none;
    margin-right: 10px;
}


.fr-video {
    display:block;
    position: relative;
    width: 100%;
    height: 0;
    text-align: center;
    border-radius: 15px;
    padding: 0;
    padding-top: 56.2% !important;
    box-shadow: 0 1px 1px rgba(0,0,0,.1),
    0 2px 10px rgba(0,0,0,.1);
    overflow: hidden;
}
.fr-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*모달*/
.modal .descript .d-flex {
    padding: 5px 0;
}
.modal .descript .d-flex:nth-child(5n) {
    margin-bottom: 30px;
}
.modal .descript .d-flex .paragraph {
    flex-basis: 35px;
    flex-shrink: 0; /* 0:고정 */
    color: var(--bs-gray-500);
    font-size: 13px;
}
.modal .descript .d-flex .sentence {
    flex-grow: 1; /*유연하게 늘리기 flex:1*/
}




/*footer*/
footer a {
    color: var(--ps-primary)
}
#page-footer {
    background-color: var(--bs-gray-200);
    color:#000;
    font-weight: 400;
}
footer .selLang {
    background-color: #fff;
    width: 100%;
}
footer .selLang a {
    color: var(--bs-gray-600);
    text-align:center;
    cursor: pointer;
    padding-top: 6px;
    padding-bottom: 6px;
    font-family: "Noto Serif SC", serif !important;
    font-weight: 400;
    font-size: 0.8rem;
    border-radius: 5px;
}
footer .selLang a.active {
    color:#000;
    font-weight: 600;
    background-color: var(--bs-gray-300);
}
footer .selLang a.flex1:hover {
    background-color: var(--bs-gray-200);
}


footer .widget {
    padding-bottom: 20px;
    font-size: 14px;
}
footer .widget .widget-title {
    margin-top: 0px;
    font-size: 14px;
    color: var(--bs-gray-700);
    padding-bottom: 20px;
}
footer .widget h4.widget-title {
    font-size: 17px;
    padding-bottom: 16px !important;
}
footer .widget .widget-title.line-bottom {
    border-bottom: 1px solid var(--bs-gray-500);
    margin-bottom: 10px;
    position: relative;
}
footer .widget .widget-title.line-bottom:after {
    background: var(--bs-info);
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 64px;
    z-index:1
}
footer .widget h4.widget-title.line-bottom:after {
    width: 118px;
}
footer ul.list {
    list-style: outside none none;
    margin-top: 13px;
    padding-left: 0;
}

footer .border-bottom {
    border-bottom: 0.1px solid var(--bs-gray-700) !important;
}

footer .copyright {
    font-weight: 400;
    font-size: 13px;
}

.radius8 {
    border-radius: 8px;

    overflow:hidden;
}

.card-group {
    transition: .6s;
}
.card-group:hover {
    border-color:var(--bs-secondary);
    transition: .07s;
}
.card-group a {
    /*color:#000;*/
}

.border-gray-500 {
    border:0.1px solid var(--bs-gray-500);
}

.border-top-white-1 {
    border-top:0.1px solid #ffffff90;
}

.card-group .card-group-title {
    display: flex;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}
.card-group .card-group-title a {
    color:#000;
}
.card-group-title i {
    margin-left: 5px;
}
.card-group .card-group-title > h5,
.card-group .card-group-title > .h5 {
    margin-right: 30px;
    margin-bottom:0;
}
.card-group .card-group-title > h5.active,
.card-group .card-group-title > .h5.active,
.card-group .card-group-title > h6.active,
.card-group .card-group-title > .h6.active {
    color: var(--bs-danger);
}
.btn-arrow-group .btn:first-child {
    margin-right: 10px;
}
.coverflow > .btn-circled,
.btn-arrow-group > .btn-circled
{
    width: 36px;
    height: 36px;
    text-align: center;
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0.35rem;
    line-height: 180%;
    padding-top: calc(var(--bs-btn-padding-y) * 1)
}
.coverflow > .btn-circled i,
.btn-arrow-group > .btn-circled i
{
    font-size: 1.4rem;
}

.btn-white {
    border-width: 0.1px;
}

.h6, h6 {
    font-size: 1rem;
}
.h7, h7 {
    font-size: 0.85rem;
    font-weight: 400;
}
.h8, h8 {
    font-size: 0.6rem;
    font-weight: 400;
}

.block-inline {
    display: inline-block !important;
}

h7, h8 {
    display: block;
    margin-block-start: 2.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.border-top-solid-500 {
    border-top: 0.1px solid var(--bs-gray-500);
}

.darkarea {
    color:#fff;
}
.darkarea .bg-gray-light {
    background-color: #00000020;
}
.darkarea .card-group-title a {
    color:#fff;
}
.darkarea .card-group-title a:hover {
    color:#ffcc00;
}
.darkarea a h6 {
    color:#fff !important;
}
.darkarea a .h6 {
    color:#fff !important;
}
.darkarea a .h7 {
    color:#ffffff70 !important;
}
.darkarea a:hover {
    text-decoration-color: white; /* 밑줄 색깔 지정 */
}

.bg-coolgray4 {
    background-color: #C9CACC;
}
.bg-coolgray2 {
    background-color: #E7E7E8;
}


.card-group-title a.active {
    color:var(--bs-warning)
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
}

.modal-lg, .modal-xl {
    --bs-modal-width: 800px;
}

/*영상 라이브 */
.screen {
    position: relative;
    width: 100%;
    height: 0;
    text-align: center;
    border-radius: 15px;
    padding: 0;
    padding-top: 56.2% !important;
    box-shadow: 0 1px 1px rgba(0,0,0,.1),
                0 2px 10px rgba(0,0,0,.1),
                0 2px 20px rgba(156, 133, 74, 0.2);
    overflow: hidden;
}
.screen iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.screen9x16 {
    position: relative;
    width: 100%;
    height: 0;
    text-align: center;
    border-radius: 10px;
    padding: 0;
    padding-top: 177% !important;
}
.screen9x16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.screen16x9 {
    position: relative;
    width: 100%;
    height: 0;
    text-align: center;
    border-radius: 5px;
    padding: 0;
    padding-top: 55.2% !important;
}
.screen16x9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.card-group .card-group-about {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color:#000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: var(--bs-black-trans-3);
}

.cImg_extra {
    width: 100%;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0,0,0,.1),
                0 2px 10px rgba(0,0,0,.1);
}
.cImg_extra.coverImg4x3 {
    padding-top: 25%;
    height: 75%;
}
.cImg_extra i {
    font-size: 60px;
    color:var(--bs-gray-300);
}

.cImg {
    width: 100%;
    position: relative;
    padding: 0;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0,0,0,.1), 3px 3px 20px rgba(119, 94, 67, .1);
    background-color: var(--bs-gray-200);
}
.cImg.coverImg1x1 {
    padding-top: 100% !important;
}
.cImg.coverImg1x2 {
    padding-top: 200% !important;
}
.cImg.coverImg2x3 {
    padding-top: 150% !important;
}
.cImg.coverImg3x4 {
    padding-top: 133.33% !important;
}
.cImg.coverImg16x9 {
    padding-top: 56.25% !important;
}
.cImg.coverImg4x3 {
    padding-top: 75% !important;
}
.cImg.coverImg3x2 {
    padding-top: 66.67% !important;
}
.cImg.coverImg2x1 {
    padding-top: 50% !important;
}
.cImg.coverImg9x16 {
    padding-top: 177.78% !important;
}
.cImg .coverImg {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.15s ease; /* 변환 속도와 타이밍 함수 조정 */
    transform: scale(1); /* 초기 스케일 설정 */
    overflow:hidden;
}
.cImg .coverImg:hover {
    transform: scale(1.1);
    transition: transform 0.15s ease; /* 변환 속도와 타이밍 함수 조정 */
    box-shadow: 0 1px 1px rgba(0,0,0,.2), 3px 3px 20px rgba(87, 67, 46, 0.4);
}

.card-group .card-group-content {
    width: 100%
}
.card-group .card-group-title h6,
.card-group .card-group-title .h6,
.card-group .card-group-content h6,
.card-group .card-group-content .h6
{
    font-size: 0.95rem !important;
    overflow: hidden;

}
.subbox {
    min-height: 38px;
}

.card-group .card-group-content .title {
    font-weight: 500;
    color:#000;
    cursor: pointer;
}
.card-group-content .info {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bs-gray-600);
    cursor: pointer;
    margin-bottom: 15px;
    line-height: 120%;
}
.card-group-content .info i {
    margin-left: 5px;
    color: var(--bs-gray-600);
}
.card-group-content .info i:first-child {
    margin:0;
}
.card-group-content .label.h7 {
    font-size: 0.7rem;
}

.card-group-content .icon {
    border: 0.1px solid var(--bs-gray-400);
    width: 60px;
    height: 60px;
    border-radius: 20px;
}

.width-wide {
    width: 100%;
}

/*랜덤 콘텐츠 제목 */
#randCont a h6,
#videoCont a h6,
#bestCont a h6,
{
    height: 38px;
    overflow: hidden;
}

/*카드 목록에서 마우스 오버시 제목 컬러변경*/
.row > [class^="col-"]:hover > a > h6 {
    color: var(--bs-primary) !important;
}

/*1280 사이즈 고정*/
@media (max-width: 1280px) {
    #page-container,
    #hero,
    .back-video,
    .back-video video
    {
        width: 1280px !important;
    }

}

thead, tbody, tfoot, tr, td, th {
    border-color: var(--bs-gray-100);
}

table tr:last-child > * {
    border-bottom:0;
    border-bottom-width: 0;
}

table .churchname {
    font-size: 13px;
    font-weight: 500;
    width: 140px;
}
table .date {
    font-size: 13px;
    font-weight: 400;
    width: 120px;
}
table tr:hover .date {
    color:#000;
}

table .title {
    cursor: pointer;
    font-weight: 500;
}
table .writer {
    width: 70px;
}
table .writer .pImg {
    width: 50px;
    height: 50px;
    border-radius: 40px;
    border: 0.1px solid var(--bs-gray-300);
    overflow: hidden;
}
table .writer .pImg img {
    width: 100%;
}

table td.title .likebox {
    color: var(--bs-danger);
}
.likebox i,
.h7.info i {
    color: var(--bs-black);
    margin-left: 5px;
}
.likebox i,
.h7.info i:first-child {
    margin:0;
}

.margin-auto {
    margin: 0 auto;
}

.label-count {
    font-size: 12px;
    font-weight: 500;
    background-color: var(--bs-gray-200);
    color:var(--bs-danger);
    border-radius: 3px;
    display: inline-block;
    margin: 5px auto;
    padding: 0 6px;
}


.block {
    border: 0.1px solid var(--bs-gray-400);
    box-shadow:0 0 0;
    border-radius: 5px;
    overflow:hidden;
}

.leftMenu > div:hover > a {
    color: var(--bs-primary);
    cursor:pointer;
}

.leftMenu ul {
    display:none;
    margin-top: 10px;
    list-style: none;
    padding:0;
}
.leftMenu ul.open {
    display:block;
}

.leftMenu ul li {
    border-left: 2px solid var(--bs-gray-200);
    color: var(--bs-gray-500);
    cursor:pointer;
    padding-left: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 5px;
}
.leftMenu ul li a {
    color: var(--bs-gray-500);
}
.leftMenu ul li:hover {
    color: var(--bs-primary);
}
.leftMenu ul li:hover a {
    color: var(--bs-primary);
}
.leftMenu ul li.active {
    border-left: 2px solid var(--bs-secondary);
    color:var(--bs-primary);
}


.container-post.book-reading {
    line-height: 220%;
    color:#333;
    letter-spacing: -0.5px;
    font-weight: 400;
    font-size: 1.1rem;
}
.container-post.book-reading strong {
    color: #000;
    font-weight: 600;
}
.container-post.book-reading h4 strong {
    color: #0d49a1;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: initial;
}
.container-post.book-reading h4 a strong {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}
.container-post.book-reading a strong {
    color: #fff;
}
.container-post.book-reading blockquote {
    font-family: "IBM Plex Sans KR", sans-serif;
    position: relative;
    display: flex;
    flex-direction: column; /* div들이 세로로 정렬되도록 설정 */
    color: #009bc1;
    margin: 60px 0px 60px 40px;
    font-weight: 500;
    font-size: 1rem;
}
.container-post.book-reading blockquote .h6 {
    font-size: .9rem;
}
.container-post.book-reading blockquote span {
    font-size: 14px;
    color:var(--bs-gray-500);
    font-weight: 400;
}


/* 여는 따옴표 */
.container-post.book-reading blockquote::before {
    font-family: "fontawesome";
    content: "\f10d";
    font-size: 1.5em;
    color: var(--bs-gray-300);
    margin-left: -30px;
    align-self: flex-start; /* 좌측 정렬 */
}

/* 닫는 따옴표 */
.container-post.book-reading blockquote::after {
    font-family: "fontawesome";
    content: "\f10e";
    font-size: 1.5em;
    color: var(--bs-gray-300);
    align-self: flex-end; /* 우측 정렬 */
    margin-top: 5px; /* 여백 추가 */
}



.view :not(blockquote) > .desc_bible {
    color: var(--bs-secondary);
    padding: 0 50px 30px 50px;
    line-height: 140%;
    font-size: 95%;
}

#bbs .board-card {
    border: 0.1px solid rgba(0, 0, 0, .1);
    border-radius: 10px !important;
}

.container-post.book-reading p {
    line-height: 200%;
}

.list-page {
    margin-top: 30px;
}
.list-page .btn-rounded,
.list-page-sub .btn-rounded {
    line-height: 148% !important;
    min-width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 20px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 5px;
    font-family: Arial;
}

/*게시판*/
#bbs .pageslist .btn-rounded {
}

#bbs .btn-group .btn.active {
    background-color: var(--bs-secondary-color);
    color: #fff;
}


.hideResult {
    display:none;
}

/*datatables*/
table > thead > tr > th {
    border-top: 0.1px solid var(--bs-primary) !important;
    font-weight: 400 !important;
}

table.dataTable > tbody > tr > td {
    padding: 15px 10px !important;
}

.dt-paging-button {
    min-width: 30px !important;
    height: 30px !important;
    text-align:center !important;
    padding: 4px 7px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 30px !important;
    background-color: var(--bs-gray-100) !important;
    border: 0.2px solid var(--bs-gray-200) !important;
}
body #page-container .dt-paging-button.current {
    border: 0.1px solid var(--bs-primary) !important;
    background-color: var(--bs-primary) !important;
    color: #fff !important;
}

div.dt-container .dt-paging .dt-paging-button {
    color: var(--bs-gray-600) !important;
}

div.dt-container .dt-search input,
div.dt-container .dt-input {
    border: 2px solid var(--bs-primary) !important;
    padding: 4px 13px !important;
    background-color: #fff !important;
    overflow: hidden !important;
    border-radius: 50px !important;
    margin-left: 5px;
    font-weight: 500;
}

div.dt-container .dt-search input:focus {
    outline: 0;
}


div.dt-container .dt-paging .dt-paging-button.first,
div.dt-container .dt-paging .dt-paging-button.previous,
div.dt-container .dt-paging .dt-paging-button.next,
div.dt-container .dt-paging .dt-paging-button.last {
    display:none;
}

div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, div.dt-container .dt-processing, div.dt-container .dt-paging {
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-gray-500) !important;
}



.table > :not(caption) > * > * {
     border-bottom: 0;
}


.card-group-content table .writer {
    padding-left:20px;
}

.card-group-content table tr:not(:last-child) td:nth-child(2),
.card-group-content table tr:not(:last-child) td:nth-child(3) {
    border-bottom: 0.1px solid var(--bs-gray-200)
}

.leftTags div a {
    color: var(--bs-gray-800);
}
.leftTags div a.active {
    color: var(--bs-secondary);
}
.leftTags div a:hover {
    color: var(--bs-secondary);
}

.leftMenu div a {
    color: var(--bs-gray-800);
}
.leftMenu div a:hover {
    color: var(--bs-secondary) !important;
}
.leftMenu div a.active {
    color: var(--bs-secondary) !important;;
}


a.tag {
    color: var(--bs-black-trans-80);
}

.li_chapter .row > * {
    padding-top:5px;
    padding-bottom: 5px;
    border-radius: 20px;
    background-color: var(--bs-gray-100);
    font-weight: 500;
}
.li_chapter .row > *:hover,
.li_chapter .row > div.active
{
    background-color:var(--bs-primary);
    color:#fff !important;
}

/*게시판 첨부파일*/
#bbs .box_addfiles .pos {
    position: absolute !important;
}
#bbs .box_addfiles .pos input.insertAddfile {
    position: absolute !important;
    outline: 0;
    opacity: .01;
    margin-top: -110px;
    width: 770px;
    height: 110px;
    cursor: pointer;
    text-indent: -9999px;
}

#bbs .border-bottom-solid-primary {
    border-bottom: 0.5px solid var(--bs-primary);
}
#bbs .label-primary {
    background-color: var(--bs-primary);
}
#bbs .bg-primary-color {
    color: #fff;
    background-color: var(--bs-primary) !important;
}
#bbs .bg-primary-color td {
    color: #fff;
    background-color: var(--bs-primary) !important;
}
#bbs .titlebox {
    border-bottom: 4px solid var(--bs-primary) !important;
}
#bbs #comment_area .write_com .btnWriteComment {
    background-color: var(--bs-primary) !important;
    border-radius: 20px !important;
    margin-left: 5px;
}

#bbs .editbody .btn-group > .btn:first-child {
    padding-left: 15px;
    padding-right: 10px;
}
#bbs .editbody .btn-group > .btn:last-child {
    padding-right: 15px;
    padding-left: 10px;
}

#bbs #comment_area .write_com .input-desc {
    border: 1px solid var(--bs-primary) !important;
    border-radius: 20px !important;
}

#bbs_view button {
    padding:0;
}

#yearSchesTrue .table tr:last-child td,
#yearSchesTrue .table tr:first-child th,
#bbs .table tr:last-child td,
#bbs .table tr:first-child th
{
    border-bottom: 1px solid var(--bs-primary) !important;
}
