@charset "utf-8";

.tcenter {text-align: center;}
.cinner {max-width:768px;margin:0 auto;}

/* 앞, 뒤 버튼 스타일 */
.abtn_prv, .abtn_next {display:none;}
.cbtn_prv, .cbtn_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 50px;
    background-color: rgba(58, 210, 159, 0.5);
    color: #fff;
    padding: 30px 20px;
    
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.cbtn_prv:hover, .cbtn_next:hover {
    background-color: #3ad29f;
}

/* 좌측 버튼 (이전) */
.cbtn_prv {
    left: -60%;
	border-radius: 10px 0 0 10px;
}

/* 우측 버튼 (다음) */
.cbtn_next {
    right: -60%;
	border-radius: 0 10px 10px 0;
}

/* 반응형 - 모바일에서 버튼 위치 조정 */
@media (max-width: 768px) {

    .cbtn_prv, .cbtn_next {display:none;}
	.abtn_prv, .abtn_next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 40px;
    background-color: rgba(58, 210, 159, 0.5);
    color: #fff;
    padding: 20px 10px;
    
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
	z-index:100;
}


/* 좌측 버튼 (이전) */
.abtn_prv {
    left: 3px;
	border-radius: 10px 0 0 10px;
}

/* 우측 버튼 (다음) */
.abtn_next {
    right: 3px;
	border-radius: 0 10px 10px 0;
}
}


/*인기차트*/
.chart-gap {margin:40px 0;border-top:1px solid #ededed;}
	
	#chart {
	position: relative;
    max-width: 1200px;
    margin: 10px auto 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

#chart .section {
    flex: 1 1 calc(50% - 20px); /* 좌우 배치를 위한 Flexbox 설정 */
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, background-color 0.3s;
}

#chart .section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #70798f;
    position: relative;
    padding-left: 40px;
}

#chart .section h2 a {
    color: inherit;
    text-decoration: none;
}


#chart .section h2 > a > b {
    color: #3ad29f;
}

#chart .section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* 이미지 너비 */
    height: 24px; /* 이미지 높이 */
    background-image: url('../../../img/icon.png'); /* 여기에 이미지 URL 삽입 */
    background-size: cover; /* 이미지 크기 조정 */
    background-repeat: no-repeat;
}

#chart .section h2 .more-link {
    font-size: 0.9rem;
    font-weight: normal;
    color: #989898;
    text-decoration: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#chart .section h2 .more-link:hover {
    font-weight:700;
}


#chart .ranking-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: ranking; /* 순위 초기화 */
}

#chart .ranking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid #ededed;
    border-radius: 2px;
    padding: 10px 15px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    counter-increment: ranking; /* 순위 증가 */
    position: relative;
}

#chart .ranking-item::before {
    content: counter(ranking); /* 순위 표시 */
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #888;
}

#chart .ranking-item.active {
    transform: scale(1.05); /* 확대 효과 */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* 강조된 그림자 효과 */
    background-color: #FFF; /* 배경 강조 */
    z-index: 1;
}

#chart .ranking-item:hover {
    transform: scale(1.07); /* 확대 효과 */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* 그림자 강조 */
    background-color: #FFF; /* 배경 강조 */
    opacity: 1; /* 완전 투명도 */
    z-index: 2; /* 다른 항목 위로 */
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

#chart .ranking-title {
    flex-grow: 1;
    margin-left: 30px; /* 넘버링 공간 확보 */
    font-size: 15px;
    color: #444;
	font-weight:600;
}

@media (max-width: 768px) {
    #chart .section {
        flex: 1 1 100%; /* 모바일에서는 한 줄에 한 섹션 */
		margin: 0 10px;
    }
}

/* 기존 스타일 + 순위 등락 색상 추가 */
#chart .rank-up, 
#chart .rank-down, 
#chart .rank-neutral, 
#chart .rank-new {
    font-size: 10px;
	text-align:center;
	width:20px;
}

#chart .rank-up {
    color: #ff4d4f; /* 상승 */
    font-weight: 700;
}

#chart .rank-down {
    color: #8c8c8c; /* 하락 */
}

#chart .rank-neutral {
    color: #8c8c8c; /* 유지 */
}

#chart .rank-new {
    color: #ff4d4f; /* 신규 */
    font-weight: 700;
}

#logos {
        display: flex; /* 로고를 가로로 배치 */
		flex-wrap: wrap;
        gap: 16px; /* 로고 사이의 간격 */
        align-items: center; /* 높이를 일관되게 맞춤 */
    }

.strm-logo {
  background: url('../../../img/strm2.png') no-repeat;
  background-size: 248px 223px; /* 이미지 전체 크기 설정 */
  display: inline-block;
}
.uplus {
    display: inline-block;
    background-position: 0px -80px;
    width: 73px;
    height: 17px;
	}
.tving {
    display: inline-block;
    background-position: 0px -166px;
    width: 52px;
    height: 15px;
	}
.wavve {
    display: inline-block;
    background-position: -120px -124px;
    width: 57px;
    height: 15px;
}
.p2p {
    display: inline-block;
    background-position: -118px -162px;
    width: 56px;
    height: 18px;
}
.disneyplus {
    display: inline-block;
    background-position: 0px -22px;
    width: 56px;
    height: 31px;
	}
.appletv {
    display: inline-block;
    background-position: -184px -42px;
    width: 35px;
    height: 18px;
}
.coupangplay {
    display: inline-block;
    background-position: 0px 0px;
    width: 105px;
    height: 17px;
}

.netflix {
    display: inline-block;
    background-position: 0px -102px;
    width: 57px;
    height: 16px;
}
.line-1{ 
	display: -webkit-box !important; /* 플렉스박스처럼 동작 (필수) */
    -webkit-box-orient: vertical; /* 박스 방향을 세로로 설정 */
    -webkit-line-clamp: 1; /* 최대 2줄로 제한 */
    overflow: hidden; /* 넘치는 내용 숨김 */
    text-overflow: ellipsis; /* 넘치는 부분을 ... 처리 */
    word-wrap: break-word; /* 단어 줄바꿈 허용 */
	}

.rb_module_3 > .module_latest_wrap {padding-left:0 !important;}
.rb_module_4 > .module_latest_wrap {padding-right:0 !important;}
/* 1.1.4 { */
.writer_prof {margin-top: 25px; margin-bottom: 20px;}
.chk_box input[type="checkbox"] + label span {display: none !important;}
.chk_box input[type="radio"] + label span {display: none !important;}
input[type="checkbox"] + label {padding-left: 30px !important;}
#bo_cate {border-bottom: 0px;}
.rb_bbs_wrap .rb_bbs_list {border-top:1px solid #ddd !important;}
#faq_wrap {border-top:1px solid #ddd !important;}
.rb_prof_tab #bo_cate {border-bottom:1px solid #ddd; margin-bottom: 20px;}

/* } */

/* 1.1.5 { */
.point_info_btns {border:1px solid #ddd; border-radius: 6px; padding-left: 10px; padding-right: 10px; height:25px; font-size: 12px; display: flex;  justify-content:center; align-items: center;}
.point_info_btns i {margin-top: 2px; margin-right: 4px;}
.point_info_btns:hover {border-color:#aaa;}
.point_info_btns.act {border-color:#aaa;}
.point_info_btns_wrap {margin-top: 3px; position: relative;}
.point_info_btns_wrap ul {margin-top: 10px; background-color: #f9f9f9; border-radius: 6px; padding: 15px; display: flex; gap:15px; justify-content: center;}
.point_info_btns_wrap ul dl {text-align: center;}
.point_info_btns_wrap ul dl dd {margin-top: 2px; padding-bottom: 2px; font-size: 12px;}
.point_info_opens h6 {display: block;}
.rb_bbs_wrap #bo_cate {margin-top: 0px !important;}

.point_info_opens {
    padding: 20px;
    border: 1px solid #eee;;
    border-radius: 6px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .02);
    background: #fff;
    min-width: 280px;
    position: relative;
    font-size: 13px;
    position: absolute; top:35px; right:0px;
    z-index: 2;
    display: none;
}
/* } */

/* 1.2.6 { */
.gallery-item-info-sub {margin-top: 15px !important;}
.notification, .notification-custom {border:1px solid #000 !important;}
.cbp-hrmenu-btm {box-shadow: none !important; border:0px !important;}
.gallery-item-tit {margin-top: 10px !important;}
.content_box {transition: box-shadow 0.3s ease, transform 0.2s ease;}


.content_box.clicked {}
.content_box.dragging {box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1); border-radius: 10px; background-color: #fff; opacity: 0.6}
.placeholders_box {border: 1px dashed #ddd;background: none;visibility: visible !important; margin: 20px;box-sizing: border-box; height: auto;}
.content_box .admin_ov {cursor: grab !important}
.content_box .admin_ov:active  {cursor: grabbing !important;}
.win_btn {padding-bottom: 30px;}
.sv_wrap .sv a {color:#fff !important;}
.user_prof img {height:80px; width:auto;}
.rb_prof .rb_prof_info_img img {height:80px; width:auto;}
/* } */

/* 1.2.7 { */
#bo_v_con img {border:1px solid rgba(0,0,0,0.1);}
.bbs-view-image {height:100%; overflow: auto;}
.gallery-item-img img {border:1px solid rgba(0,0,0,0.1);}
.rb_bbs_wrap .rb_thumb_wrap img {border:1px solid rgba(0,0,0,0.1);}
#faq_wrap .con_inner {line-height: 150%; font-size: 14px;}
.system_del_btn {float:right !important; background-color: #fff !important; border:1px solid #ddd !important; border-radius: 6px !important;}
.system_del_btn a {color:#000 !important; font-size: 12px;}
#memo_list h1#win_title {padding-right: 20px !important;}
/* } */

/* 1.2.8 { */
.bbs-view-image {height:100%; overflow:inherit !important;}
.bbs-view-image img {max-width: 100%; height:auto;}
/* } */

/* 1.3.9 { */
.cbp-hrmenu .cbp-hrsub {z-index: 98;}
#m_gnb_close_btn {width: 60px; height:80px;}
.cbp-hrmenu-btm > ul > li {position: relative; background-repeat: no-repeat; background-position: right 20px top 27px;}
.cbp-hrmenu-btm > ul > li.add_arr_svg {background-image: url('../rb.img/icon/arr_down.svg');}
.cbp-hrmenu-btm > ul > li.cbp-hropen {background-image: url('../rb.img/icon/arr_up.svg');}
.cbp-hrmenu-btm > ul > li .add_arr_btn {position: absolute; top:0px; right:0px; width:50px; height:60px;}
/* } */

/* 1.3.10 { */
.rb_bbs_wrap .writer_prof .writer_prof_ul1 {width: 65% !important;}
/* } */

/* 1.3.11 { */
.cbp-hrmenu-btm > ul > li.add_arr_svg.cbp-hropen {background-image: url('../rb.img/icon/arr_up.svg');}
.cbp-hrmenu-btm > ul > li.cbp-hropen {background-image: none;}
.sv_wrap .sv a {display: block;}
/* } */

/* 1.4.12 { */
.sh-side-options-container {position: absolute; top:50%; transform: translateY(-50%); margin-top: 0px !important; bottom:auto !important; margin-right: 0px; left: -100px !important;}
.chat_open_btn {position: fixed; z-index: 98; background-color: #fff; padding: 15px; border-radius: 40%; box-shadow: -10px 0px 20px 2px rgba(0, 0, 0, .06);}
.chat_open_btn:hover {background-color: #f3f5fd;}
.chat_open_btn img {width: 30px; height:auto;}
.chat_open_btn_inner {position: relative;}
.chat_open_btn_inner span {background-color: #2D3748; color:#fff; font-size: 10px; padding: 5px 8px; border-radius: 22px; position: absolute; right:-15px; top:-15px;}
#scroll_container .swiper-container {overflow: inherit;}
#bo_cate.swiper-container {overflow: hidden;}
/* } */

/* 1.5.13 { */
.rb_prof_info_img {position: relative; float:left;}
#prof_ch_btn {position: absolute; bottom:-5px; right:-3px;}
/* } */

/* 1.6.14 { */
.rb_bbs_wrap .rb_bbs_list {border-top:0px !important; padding-top: 0px !important;}
.rb_bbs_wrap #bo_cate {margin-bottom: 20px !important; border-bottom: 1px solid #eee;}
.rb-board-table th {border-bottom: 0px !important; background-color: #f9f9f9;}
.rb_bbs_for {border:1px solid #eee; border-radius: 10px; padding: 12px !important; margin-bottom: 20px;}
.rb_bbs_for:hover {border-color:#ccc !important;}
.rb_bbs_wrap .rb_bbs_for_cont_subj a {font-size: 20px !important;}
.bn_border {box-shadow: none; border:1px solid rgba(0,0,0,0.1);}

.rb_bbs_wrap_qa .rb_bbs_for {border:0px !important; border-bottom:1px solid #eee !important; border-radius: 0px !important; padding: 0px !important;  padding-bottom: 20px !important;}
.qa_sub_tit {padding-bottom: 20px !important; margin-bottom: 25px;}
.qa_sub_wrap .rb_bbs_for_cont {padding-right: 0px !important;}
.qa_sub_wrap .rb_thumb_wrap {text-align: right;}
/* } */

/* 1.6.15 { */
.rb_prof .rb_prof_info_txt {width: 70%; line-height: 140%; word-break: keep-all;}
.rb_prof .copy_urls {background-color: transparent !important;}
/* } */

/* 2.0.0 { */
#mb_login_od_wr {padding: 0px !important; border:0px !important;}
#mb_login_od_wr h2 {text-align: center; font-size: 18px !important; margin-top: 70px !important; margin-bottom: 20px !important;}
#mb_login_od_wr p {border-radius: 10px; word-break: keep-all;}
.bemember_tit {text-align: center; font-size: 18px !important; margin-top: 70px !important; margin-bottom: 20px !important;}
.bn_bg_color_label {width:20px; height:20px; display:block; border-radius:50%; border:1px solid rgba(0,0,0,0.1);}
.flex_left {display: flex; gap:10px; align-items: center;}
html {overflow-x: hidden;}
.footer_copy_ul1_li2 {width: 60%;}
.footer_copy_ul1_li2 dd {float:left; margin-right: 20px;}
.content_box .admin_ov {z-index: 96 !important}
.content_box_set:hover .admin_ov {opacity: 1; z-index: 97 !important}
.content_box_set {border: 0.1px dashed #B9FAFF;}
.content_box_set {border-style: dashed dashed dashed dashed;}
.placeholders_box {border: 0px;background: #f9f9f9;border-radius: 10px;}
.hd_pops {background-color: #fff !important;}
/* } */

/* 2.0.1 { */
.rb_bbs_wrap #bo_vc article {scroll-margin-top:140px;}
#search_box_wrap {width: 355px; left: -20px;}
/* } */

/* 2.0.3 { */
.rb_member .rb_login .rb_login_box li span {font-size: 13px !important;}
.rb_member .rb_login .rb_login_box .rb_login_logo {margin-bottom: 40px !important;}
.rb_member .rb_reg_sub_title {margin-bottom: 40px !important;}
.rb_member .rb_reg .btn_frmline {height:40px;}
.au_input {min-height:100px !important;}
.rb_prof_tab {margin-top: 30px;}
#sod_list #cp_frm {position: fixed; top:50%; left: 50%; transform: translate(-50%, -50%); margin-left: 0px; margin-top: 0px; box-shadow: 20px 20px 40px rgba(0,0,0,0.05);}
#sod_frm_pay .pay_tbl td .btn_frmline {
    padding: 0 10px;
    border: 1px solid #38b2b9;
    color: #38b2b9;
    background: #fff;
    height: 26px;
    border-radius: 3px;
}
.od_coupon td, #sod_frm_pay .od_coupon td, .od_coupon td, #sod_frm_pay .od_coupon th {text-align: center !important;}
#sod_frm_pay .pay_tbl td {line-height: 25px;}
.rb_login_box .textarea_divs {overflow-y: auto; min-height: 200px; height:200px; border:1px solid #ddd; border-radius: 10px; padding: 20px;}
.rb_login_box .textarea_divs img {max-width: 100%; height:auto;}
/* } */

/* 2.1.4 { */
.gnb_wrap .snb_wrap .my_btn_wrap {float:right;}
.shop_select_to_html .menulist ul.wide {width: auto !important; min-width: 146px; display: block !important; min-height: auto !important;}
/* } */

/* 2.1.5 { */
#sod_frm_pay .sod_frm_point {border-radius: 10px;}
#sod_frm_pay .sod_frm_point div {background-color: transparent; padding: 15px;}
#sod_frm_pay .sod_frm_point #od_temp_point {border-radius: 6px;}
#sod_frm_pay .sod_frm_point div label {font-weight: normal;}
#settle_bank #od_deposit_name {padding: 10px; border-radius: 6px;}
.sit_option h3 {display:block !important;}
.tail_fixed_gnb {position: fixed; left: 0px; bottom:0px; width: 100%; padding-top: 20px; padding-bottom: 20px; z-index: 98; text-align: center;}
.tail_fixed_gnb button {display: inline-block; width: 18%;}

.rb_prof.rb_prof_new {margin-top: 0px; position: relative;}
.rb_prof.rb_prof_new .rb_prof_info_img img {border-radius: 20px; border:1px solid rgba(0,0,0,0.05) !important;}
.rb_prof.rb_prof_new .rb_prof_info_txt {color:#888; margin-top: 35px; display: flex; gap:0px 15px; align-items: center; flex-direction: row; flex-wrap: wrap;}
.rb_prof.rb_prof_new .rb_prof_info_txt {align-items: center;}
.rb_prof.rb_prof_new .rb_prof_info_nick {font-size: 36px; margin-top: 10px;}
.rb_prof.rb_prof_new .rb_prof_info_nick span {font-size: 12px; color:#fff; background-color: #25282B; padding: 3px 10px 3px 10px; border-radius: 6px; display: inline-block; vertical-align: middle;}
.rb_prof.rb_prof_new .rb_prof_info {}
.rb_prof.rb_prof_new .rb_prof_btn {position: absolute; right:0px; bottom:0px;}
.rb_prof.rb_prof_new .copy_urls img {width: 35px; height:35px; border-radius: 6px;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns {width: 30px; height:35px; background-color: transparent !important; color:#25282B; border:0px solid #25282B; line-height: 30px; display: inline-block; border-radius: 6px; padding-left: 3px; padding-right: 0px;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns.fl_btns_txt {width: auto; background-color: #f1f1f1 !important; padding-left: 15px; padding-right: 15px; line-height: 35px;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns:hover {opacity: 0.5;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns.fl_btns_txt:hover {opacity: 0.7;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns img {height:20px;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns.gd_btn {border:0px; line-height: 35px; width: 45px;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns.gd_btn img {height:16px;}
.rb_prof.rb_prof_new .copy_urls {height:35px; line-height: 35px; background-color: #f9f9f9; display: inline-block; border-radius: 6px; text-align: center;}
.rb_prof.rb_prof_new .my_subs_btn_wrap {margin-top: 1px; margin-left: 20px; float:right;}
.rb_prof.rb_prof_new .rb_prof_r {float:right; width: 30%; margin-top: 30px; position: sticky; top:120px;}
.rb_prof.rb_prof_new .rb_prof_l {float:left; width: 70%; padding-right: 40px; margin-top: 30px;}
.rb_prof.rb_prof_new .rb_prof_r_box {background-color: #f9f9f9; padding: 30px; border-radius: 10px;}
.rb_prof.rb_prof_new .rb_prof_info_info {float:left; margin-left: 30px; width: 50%;}
.rb_prof.rb_prof_new .rb_prof_info_nick {margin-top: 5px;}
.rb_prof.rb_prof_new .rb_prof_info_nick span {margin-left: 15px;}
.rb_prof.rb_prof_new .rb_prof_info_info .rb_prof_info_txt {margin-top: 5px;}
.rb_prof.rb_prof_new .rb_prof_btn {position: absolute; top:0px; right:0px; bottom:auto;}
.rb_prof.rb_prof_new .rb_prof_info_txt {width: 100%;}
.rb_prof.rb_prof_new .rb_prof_btn .fl_btns.fl_btns_txt {border-radius: 45px;}
.rb_prof.rb_prof_new .fl_btns_txt_mgl {margin-left: 15px;}
/* } */

@media all and (max-width:1024px){

    /* 1.1.4 { */
    .rb_prof_tab #bo_cate {margin-bottom: 20px !important;}
    /* } */
    
    /* 1.1.5 { */
    .rb_bbs_wrap .rb_bbs_top {right:20px;}
    /* } */
    
    /* 1.2.6 { */
    .gnb_wrap .snb_wrap .qm_wrap button {margin-left: 10px;}
    .gnb_wrap .snb_wrap .qm_wrap a {margin-left: 10px;}
    /* } */
    
    /* 1.3.10 { */
    .rb_bbs_wrap .writer_prof .writer_prof_ul1 {width: 100% !important;}
    /* } */
    
    /* 1.6.14 */
    .chat_btn_pos_left {left:20px !important; bottom:20px !important;}
    .chat_btn_pos_right {right:20px !important; bottom:20px !important;}
    .mod_bn_wrap {padding: 0px;}
    .mod_bn_wrap .swiper-container {padding-left: 0px !important; padding-right: 0px !important; border-radius: 0px !important}
    .rb_bbs_wrap .rb_bbs_for_info {right:15px !important; top:20px !important;}
    .mo_date_wrap a {color:#999;}
    .qa_sub_wrap .rb_bbs_for_cont {padding-right: 0px !important; width: 65% !important;}
    #poll {margin-left: 20px; margin-right: 20px;}
    .bbs_main_wrap_tit {margin-bottom: 20px !important;}
    #poll .poll_con p {padding: 20px 20px !important;}
    #poll ul {padding: 10px 20px !important;}
    #poll_btn {padding: 0px 20px 20px !important;}
    /* } */
    
    /* 1.7.15 { */
    .rb_prof .rb_prof_info_txt {width: 100%;}
    /* } */
    
    /* 2.0.0 { */
    .mod_bn_wrap {padding: 20px; border-top:1px solid rgba(0,0,0,0.1);}
    .index {padding-bottom: 0px;}
    .footer_copy_ul1_li2 {text-align: center; width: 100%;}
    .footer_copy_ul1_li2 dd {float:none; display: inline-block; margin-right: 0px; word-break: keep-all; margin-left: 5px; margin-right: 5px;}
    footer .footer_gnb_ul2 a {padding-left: 7px; padding-right: 7px;}
    .bbs_main {border-top:0px;}
    .mod_bn_wrap {border-top:0px;}
    /* } */
    
    /* 2.0.1 { */
    .rb_bbs_wrap_new {padding-left: 0px; padding-right: 0px;}
    /* } */
    
    /* 2.0.3 { */
    #search_box_wrap {left: 0px; width: 100%;}
    .cbp-hrmenu-btm {padding-bottom: 100px !important;}
    #sod_bsk_list #mod_option_frm {width: 90%; left: 5%; margin-left: 0px; margin-top: 0px; transform: translateY(-50%); z-index: 100}
    #sod_bsk_list .mod_option_bg {z-index: 99;}
    .od_coupon_wrap .tbl_head02 table {width: 100% !important;}
    #sod_list #cp_frm {width: 90%;}
    #sod_frm_pay #sc_coupon_frm, #sod_frm_pay #od_coupon_frm {width: 100%;}
    .sod_frm_mobile .od_coupon .tbl_head02 .btn_frmline {
        padding: 0 7px;
        border: 1px solid #d4d6db;
        border-radius: 3px;
        color: #3a8afd;
        background: #fff;
        line-height: 24px;
        margin: 0px 0 0;
        font-size: .923em;
    }
    /* } */
    
    /* 2.1.5 { */
    .rb_prof.rb_prof_new .tbl_wrap {overflow-x: auto;}
    .rb_prof.rb_prof_new .tbl_wrap table {width: 1024px;}
    .rb_prof.rb_prof_new .local_sch #stx {margin-top: 5px; width: 80%; max-width: 80%;}
    .rb_prof.rb_prof_new .local_sch #search {margin-top: 5px; width: 80%; max-width: 80%;}
    .rb_prof.rb_prof_new .local_sch .btn_submit {float:right; margin-top: 5px;}
    .rb_prof.rb_prof_new .anchor {display: none;}
    .rb_prof.rb_prof_new {padding-left: 20px; padding-right: 20px;}
    .rb_prof.rb_prof_new .rb_prof_btn {position: inherit; margin-top: 20px; border:1px dashed #ddd; padding: 10px; border-radius: 10px;}
    .rb_prof.rb_prof_new .rb_prof_info_nick {font-size: 24px;}
    .rb_prof.rb_prof_new .rb_prof_info_nick span {margin-top: -5px;}
    .rb_prof.rb_prof_new .rb_prof_info_info {width: 60%;}
    .rb_prof.rb_prof_new .copy_urls {width: 100%; text-align: left;}
    .rb_prof.rb_prof_new #sfl.select {width: 30%;}
    .rb_prof.rb_prof_new #sel_field.select {width: 30%;}
    .rb_prof.rb_prof_new .rb_prof_btn .fl_btns.fl_btns_txt {float:right; margin-left: 4px;}
    .rb_prof.rb_prof_new .fl_btns_txt_mgl {float:right}
    /* } */

    
}



/* 게시판 목록 */
#bo_cate {margin:25px 0}
#bo_cate h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_cate ul {zoom:1}
#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""}
#bo_cate li {display:inline-block;padding:2px}
#bo_cate a {display:block;line-height:28px;padding:5px 15px;border-radius:30px;border:1px solid #d6e9ff;color:#6794d3}
#bo_cate a:focus, #bo_cate a:hover, #bo_cate a:active {text-decoration:none;background:#3a8afd;color:#fff}
#bo_cate #bo_cate_on {z-index:2;background:#3a8afd;color:#fff;font-weight:bold;border:1px solid #3a8afd;
-webkit-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
-moz-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
box-shadow:inset 0 2px 5px rgb(33, 135, 202)}
.td_subject img {margin-left:3px}

.selec_chk {position:absolute;top:0;left:0;width:0;height:0;opacity:0;outline:0;z-index:-1;overflow:hidden}
.chk_box {position:relative}
.chk_box input[type="checkbox"] + label {position:relative;padding-left:20px;color:#676e70;vertical-align:baseline}
.chk_box input[type="checkbox"] + label:hover{color:#2172f8}
.chk_box input[type="checkbox"] + label span {position:absolute;top:10px;left:10px;width:15px;height:15px;display:block;background:#fff;border:1px solid #d0d4df;border-radius:3px}
.write_div .chk_box input[type="checkbox"] + label, .bo_vc_w .chk_box input[type="checkbox"] + label {padding-left:20px}
.write_div .chk_box input[type="checkbox"] + label span, .bo_vc_w .chk_box input[type="checkbox"] + label span {position:absolute;top:2px;left:0;width:15px;height:15px;display:block;margin:0;background:#fff;border:1px solid #d0d4df;border-radius:3px}
.chk_box input[type="checkbox"]:checked + label {color:#000}
.chk_box input[type="checkbox"]:checked + label span {background:url(./img/chk.png) no-repeat 50% 50% #3a8afd;border-color:#1471f6;border-radius:3px}
.all_chk.chk_box input[type="checkbox"] + label span {top:0;left:0}


/* 갤러리 목록 */
#bo_gall h2 {margin:0;padding:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#bo_gall #gall_ul {margin:10px -10px 0;padding:0;list-style:none;zoom:1}
#bo_gall #gall_ul:after {display:block;visibility:hidden;clear:both;content:""}
#bo_gall .gall_li {}
#bo_gall .gall_li .gall_chk {position:absolute;top:0;left:0;padding:5px;z-index:1}
#bo_gall .gall_box {position:relative;margin:0 0 50px 0;border-radius:0 0 2px 2px}
#bo_gall .gall_con {position:relative}

.gall_row .col-gn-0,.gall_row .col-gn-1,.gall_row .col-gn-2,.gall_row .col-gn-3,.gall_row .col-gn-4,.gall_row .col-gn-5,.gall_row .col-gn-6,.gall_row .col-gn-7,.gall_row .col-gn-8,.gall_row .col-gn-9,.gall_row .col-gn-10 {position:relative;min-height:1px;padding-left:10px;*padding-left:0;padding-right:10px;*padding-right:0;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-left:0}
.gall_row .col-gn-0,.gall_row .col-gn-1 {width:100%}
.gall_row .col-gn-2 {width:50%}
.gall_row .col-gn-3 {width:33.33333333%}
.gall_row .col-gn-4 {width:25%}
.gall_row .col-gn-5 {width:20%}
.gall_row .col-gn-6 {width:16.66666667%}
.gall_row .col-gn-7 {width:14.28571428%}
.gall_row .col-gn-8 {width:12.5%}
.gall_row .col-gn-9 {width:11.11111111%}
.gall_row .col-gn-10 {width:10%}

.gall_row .box_clear {clear:both}

#bo_gall .gall_now .gall_text_href a {color:#ff3061}

#bo_gall .gall_href a:link, #bo_gall .gall_href a:focus, #bo_gall .gall_href a:hover {text-decoration:none}
#bo_gall .gall_img {border-bottom:1px solid #eee;text-align:center;overflow:hidden}
#bo_gall .gall_img a,#bo_gall .gall_img .no_image,#bo_gall .gall_img .is_notice {display:block}
#bo_gall .gall_img img, #bo_gall .gall_img video {max-width:100%;height:auto !important}
#bo_gall .gall_img span {display:inline-block;background:#eaeaea;text-align:center;text-transform:uppercase;font-weight:bold;font-size:1.25em;color:#777}

#bo_gall .gall_text_href {margin:10px 0}
#bo_gall .gall_text_href a {font-weight:bold}
#bo_gall .gall_text_href img {margin:0 0 0 4px}
#bo_gall .bo_tit {display:block;line-height:30px;font-weight:bold;color:#000;font-size:1.2em}
#bo_gall .bo_tit .cnt_cmt {background:#e9eff5;color:#3a8afd;font-size:11px;height:16px;line-height:16px;padding:0 5px;border-radius:3px;vertical-align:middle}

#bo_gall .bo_cnt {color:#acacac;line-height:18px}
#bo_gall .profile_img img {border-radius:50%}
#bo_gall .bo_tit .fa-download {width:16px;height:16px;line-height:16px;background:#e89f31;color:#fff;text-align:center;font-size:10px;border-radius:2px;margin-right:2px;vertical-align:middle}
#bo_gall .bo_tit .fa-link {width:16px;height:16px;line-height:16px;background:#ad68d8;color:#fff;text-align:center;font-size:10px;border-radius:2px;margin-right:2px;vertical-align:middle;font-weight:normal}
#bo_gall .bo_tit .fa-link {width:16px;height:16px;line-height:16px;background:#ad68d8;color:#fff;text-align:center;font-size:10px;border-radius:2px;margin-right:2px;vertical-align:middle;margin-right:2px}
#bo_gall .bo_tit .new_icon {display:inline-block;width:16px;line-height:16px;font-size:0.825em;color:#23db79;background:#b9ffda;text-align:center;border-radius:2px;margin-left:2px;font-weight:bold;vertical-align:baseline}
#bo_gall .bo_tit .hot_icon {display:inline-block;width:16px;line-height:16px;font-size:0.833em;color:#fff;background:#e52955;text-align:center;border-radius:2px;vertical-align:middle;margin-right:2px}
#bo_gall .bo_tit .fa-lock {display:inline-block;line-height:16px;color:#999;text-align:center;vertical-align:middle}

#bo_gall .gall_info {line-height:1.5em;line-height:20px}
#bo_gall .gall_info strong {display:inline-block;margin:0}
#bo_gall .gall_info i {font-size:12px}
#bo_gall .gall_info .gall_date,
#bo_gall .gall_info .gall_view {display:inline-block;margin-left:10px;color:#777}

#bo_gall .gall_option {position:absolute;top:10px;right:10px}
#bo_gall .gall_option strong {background:#fff;padding:5px 10px;border-radius:30px;-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}

/* 게시판 목록 공통 */
#bo_btn_top {margin:10px 0}
#bo_btn_top:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx {margin-bottom:5px;float:right;zoom:1}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
#bo_list_total {float:left;line-height:34px;font-size:0.92em;color:#4e546f}

.btn_bo_user {float:right;margin:0;padding:0;list-style:none}
.btn_bo_user li {float:left;width:40px;text-align:center;margin-left:5px;background:#fff}
.btn_bo_user > li {position:relative}
.btn_bo_adm {float:left}
.btn_bo_adm li {float:left;margin-right:5px}
.btn_bo_adm input {padding:0 8px;border:0;background:#d4d4d4;color:#666;text-decoration:none;vertical-align:middle}
.bo_notice td {background:#fff6fa !important;border-bottom:1px solid #f8e6ee}
.bo_notice td a {font-weight:bold}
.bo_notice .notice_icon {display:inline-block;line-height:25px;border-radius:5px;font-weight:bold;color:#f9267f}

.more_opt {display:none;position:absolute;top:45px;right:0;background:#fff;border:1px solid #b8bfc4;z-index:999}
.more_opt:before {content:"";position:absolute;top:-8px;right:13px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #b8bfc4 transparent}
.more_opt:after {content:"";position:absolute;top:-6px;right:13px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
.more_opt li {border-bottom:1px solid #f1f1f1;padding:10px;float:inherit;width:90px;margin:0;color:#6b757c;text-align:left}
.more_opt li:last-child {border-bottom:0}
.more_opt li button, .more_opt li a {width:100%;border:0;background:#fff;color:#6b757c}
.more_opt li:hover a,
.more_opt li:hover button {color:#000}
.more_opt li i {float:right;line-height:20px}

.td_num strong {color:#000}
.bo_cate_link {display:inline-block;background:#e2eaf6;color:#3a8afd;font-weight:normal !important;height:20px;line-height:10px;padding:5px 8px;border-radius:5px;font-size:0.95em} /* 글제목줄 분류스타일 */
.bo_cate_link:hover {text-decoration:none}
.bo_current {color:#e8180c}
#bo_list .profile_img {display:inline-block;margin-right:5px}
#bo_list .profile_img img {border-radius:50%}
#bo_list .cnt_cmt {display:inline-block;margin:0 0 0 3px;font-weight:bold;color:#ed6478;font-size:0.86em}

#bo_gall li.empty_list {padding:85px 0;text-align:center}

.bo_sch_wrap {display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:999}
.bo_sch {position:absolute;top:50%;left:50%;background:#fff;text-align:left;width:330px;max-height:300px;margin-left:-125px;margin-top:-180px;overflow-y:auto;border-radius:5px;-webkit-box-shadow:1px 1px 18px rgba(0,0,0,0.2);-moz-box-shadow:1px 1px 18px rgba(0,0,0,0.2);box-shadow:1px 1px 18px rgba(0,0,0,0.2);border:1px solid #dde7e9;background:#fff;border-radius:3px}
.bo_sch:after {display:block;visibility:hidden;clear:both;content:""}
.bo_sch h3 {padding:15px;border-bottom:1px solid #e8e8e8}
.bo_sch legend {background:red}
.bo_sch form {padding:15px;display:block}
.bo_sch select {border:0;width:100%;height:40px;border:1px solid #d0d3db;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075)}
.bo_sch .sch_bar {display:inline-block;width:100%;clear:both;margin-top:15px;border:1px solid #d0d3db;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075)}
.bo_sch .sch_input {width:250px;height:38px;border:0;padding:0;background-color:transparent;float:left}
.bo_sch .sch_btn {height:38px;float:right;color:#656565;background:none;border:0;width:40px;font-size:15px}
.bo_sch .bo_sch_cls {position:absolute;right:0;top:0;color:#b5b8bb;border:0;padding:12px 15px;font-size:16px;background:#fff}
.bo_sch_bg {background:#000;background:rgba(0,0,0,0.1);width:100%;height:100%}


/* 게시판 쓰기 */
#char_count_desc {display:block;margin:0 0 5px;padding:0}
#char_count_wrap {margin:5px 0 0;text-align:right}
#char_count {font-weight:bold}

#autosave_wrapper {position:relative}
#autosave_pop {display:none;z-index:10;position:absolute !important;top:34px;right:0;width:350px;height:auto !important;height:180px;max-height:180px;border:1px solid #565656;background:#fff;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
#autosave_pop:before {content:"";position:absolute;top:-8px;right:45px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #000 transparent}
#autosave_pop:after {content:"";position:absolute;top:-7px;right:45px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
html.no-overflowscrolling #autosave_pop {height:auto;max-height:10000px !important} /* overflow 미지원 기기 대응 */
#autosave_pop strong {position:absolute;font-size:0;line-height:0;overflow:hidden}
#autosave_pop div {text-align:center;margin:0 !important}
#autosave_pop button {margin:0;padding:0;border:0}
#autosave_pop ul {padding:15px;border-top:1px solid #e9e9e9;list-style:none;overflow-y:scroll;height:130px;border-bottom:1px solid #e8e8e8}
#autosave_pop li {padding:8px 5px;border-bottom:1px solid #fff;background:#eee;zoom:1}
#autosave_pop li:after {display:block;visibility:hidden;clear:both;content:""}
#autosave_pop a {display:block;float:left}
#autosave_pop span {display:block;float:right;font-size:0.92em;font-style:italic;color:#999}
.autosave_close {cursor:pointer;width:100%;height:30px;background:none;color:#888;font-weight:bold;font-size:0.92em}
.autosave_close:hover {background:#f3f3f3;color:#3597d9}
.autosave_content {display:none}
.autosave_del {background:url(./img/close_btn.png) no-repeat 50% 50%;text-indent:-999px;overflow:hidden;height:20px;width:20px}

/* 게시판 읽기 */
#bo_v {margin-bottom:20px;background:#fff;box-sizing:border-box}

#bo_v_table {position:absolute;top:0;right:16px;margin:0;padding:0 5px;height:25px;background:#ff3061;color:#fff;font-weight:bold;line-height:2.2em}

#bo_v_title {}
#bo_v_title .bo_v_cate {display:inline-block;line-height:20px;background:#e2eaf6;color:#3a8afd;padding:0 10px;border-radius:3px;}
#bo_v_title .bo_v_tit {display:block;font-size:2em;margin:5px 0 0;word-break:break-all}

#bo_v_info {margin:0;border-bottom:1px solid #f1f1f1;color:#666}
#bo_v_info:after {display:block;visibility:hidden;clear:both;content:""} 
#bo_v_info h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#bo_v_info .profile_info {margin:20px 0 10px;display:inline-block;float:left}
#bo_v_info .profile_info .pf_img {float:left;margin-right:10px}
#bo_v_info .profile_info .pf_img img {border-radius:50%;width:50px;height:50px}
#bo_v_info .profile_info .profile_info_ct {float:left;padding:5px 0;line-height:18px}

#bo_v_info strong {display:inline-block;margin:0 10px 0 0;font-weight:normal}
#bo_v_info .sv_member,
#bo_v_info .sv_guest,
#bo_v_info .member,
#bo_v_info .guest {font-weight:bold}
#bo_v_info .profile_img {display:none}
#bo_v_info .sv_member {color:#000}
#bo_v_info .if_date {margin:0;color:#888}

#bo_v_file h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;list-style:none}
#bo_v_file li {padding:15px;position:relative;margin:10px 0;border:1px solid #dfdfdf;border-radius:5px;
-webkit-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
-moz-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%)}
#bo_v_file li i {float:left;color:#b2b2b2;font-size:2.35em;margin-right:20px}
#bo_v_file a {float:left;display:block;text-decoration:none;word-wrap:break-word;color:#000}
#bo_v_file a:focus, #bo_v_file li:hover a, #bo_v_file a:active {text-decoration:underline;color:#3a8afd}
#bo_v_file img {float:left;margin:0 10px 0 0}
#bo_v_file .bo_v_file_cnt {color:#b2b2b2;font-size:0.92em}
#bo_v_file li:hover {border-color:#bed4f4;color:#bed4f4}
#bo_v_file li:hover i {color:#3a8afd}
#bo_v_file li:hover .bo_v_file_cnt {color:#99c2fc}


#bo_v_link h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;list-style:none}
#bo_v_link li {padding:15px;position:relative;margin:10px 0;border:1px solid #dfdfdf;border-radius:5px;
-webkit-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
-moz-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%)}
#bo_v_link li i {float:left;color:#b2b2b2;font-size:2.35em;margin-right:20px}
#bo_v_link a {float:left;display:block;text-decoration:none;word-wrap:break-word;color:#000}
#bo_v_link a:focus, #bo_v_link li:hover a, #bo_v_link a:active {text-decoration:underline;color:#3a8afd}
#bo_v_link .bo_v_link_cnt {color:#b2b2b2;font-size:0.92em}
#bo_v_link li:hover {border-color:#bed4f4;color:#bed4f4}
#bo_v_link li:hover i {color:#3a8afd}
#bo_v_link li:hover .bo_v_link_cnt {color:#99c2fc}


#bo_v_top {zoom:1}
#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_top ul {padding:0;list-style:none;word-break:break-all}

#bo_v_bot {zoom:1}
#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_bot h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_bot ul {padding:0;list-style:none}

.bo_v_com {margin:20px 0;float:right}
.bo_v_com > li {position:relative;float:left;margin-left:5px}

.bo_v_nb {margin:20px 0;position:relative;clear:both;text-align:left}
.bo_v_nb:after {display:block;visibility:hidden;clear:both;content:""}
.bo_v_nb li {border-top:1px solid #f1f1f1;padding:13px}
.bo_v_nb li:last-child {border-bottom:1px solid #f1f1f1}
.bo_v_nb li:hover {background:#f6f6f6}
.bo_v_nb li i {font-size:13px;color:#b3b3b3}
.bo_v_nb li .nb_tit {display:inline-block;padding-right:20px;color:#b3b3b3}
.bo_v_nb li .nb_date {float:right;color:#b3b3b3}

#bo_v_atc {min-height:200px;height:auto !important;height:200px}
#bo_v_atc_title {position:absolute;font-size:0;line-height:0;overflow:hidden}

#bo_v_img {width:100%;overflow:hidden;zoom:1}
#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_img a.view_image {display:block}
#bo_v_img img {margin-bottom:20px;max-width:100%;height:auto}

#bo_v_con {margin:10px 0 30px;width:100%;line-height:1.7em;min-height:200px;word-break:break-all;}

#bo_v_con a {color:#000;text-decoration:underline}
#bo_v_con img {max-width:100%;height:auto;pointer-events: none !important;}
/*이미지 크게보기 링크 강제 제거*/
a.view_image {
    pointer-events: none !important;
}

#bo_v_act {margin-bottom:30px;text-align:center}
#bo_v_act .bo_v_act_gng {position:relative}
#bo_v_act a {margin-right:5px;vertical-align:middle;color:#4a5158}
#bo_v_act a:hover {background-color:#fff;color:#ff484f;border-color:#ff484f}
#bo_v_act i {font-size:1.4em;margin-right:5px}
#bo_v_act_good, #bo_v_act_nogood {display:none;position:absolute;top:30px;left:0;z-index:9999;padding:10px 0;width:165px;background:#ff3061;color:#fff;text-align:center}
#bo_v_act .bo_v_good {display:inline-block;border:1px solid #dedede;width:70px;line-height:46px;border-radius:30px}
#bo_v_act .bo_v_nogood {display:inline-block;border:1px solid #dedede;width:70px;line-height:46px;border-radius:30px}

#bo_v_sns {padding:0;list-style:none;zoom:1;float:left;display:inline-block}
#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_sns li {float:left;width:135px;margin-right:5px;text-align:left}
#bo_v_sns li a {height:35px;line-height:35px;text-align:center;border-radius:5px;color:#fff;font-size:0.95em}
#bo_v_sns li img {vertical-align:middle;margin-right:5px}
#bo_v_sns li .sns_f {display:block;background:#3b5997}
#bo_v_sns li .sns_t {display:block;background:#09aeee}
#bo_v_sns li .sns_g {display:block;background:#ea4026}
#bo_v_sns li .sns_k {display:block;background:#fbe300}

#bo_v_share {position:relative;padding:20px 0}
#bo_v_share:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_share .btn {padding:0 10px;color:#555;font-weight:normal;font-size:1em;width:80px;line-height:35px;height:35px;border-color:#d5d5d5;border-radius:5px}
#bo_v_share .btn:hover {background:#fff}
#bo_v_share .btn i {margin-right:5px;color:#4b5259;vertical-align:middle}


/* 게시판 댓글 */
.cmt_btn {width:100%;text-align:left;border:0;border-bottom:1px solid #f0f0f0;background:#fff;font-weight:bold;margin:30px 0 0px;padding:0 0 15px}
.cmt_btn span.total {position:relative;display:inline-block;margin-right:5px;font-size:1em;color:#3a8afd}
.cmt_btn span.cmt_more {float:right;display:inline-block;width:15px;height:10px; margin-top:5px}
.cmt_btn_op span.cmt_more {background-position:right -8px}
.cmt_btn b {font-size:1.2em;color:#000}
.cmt_btn span.total:after {position:absolute;bottom:-17px;left:0;display:inline-block;background:#3a8afd;content:"";width:100%;height:2px}
#bo_vc {}
#bo_vc h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_vc article {margin:20px 0;position:relative;border-bottom:1px solid #f0f0f0}
#bo_vc article:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc article .profile_img img {border-radius:50%}
#bo_vc article .pf_img {float:left;margin-right:10px}
#bo_vc article .pf_img img {border-radius:50%;width:50px;height:50px}
#bo_vc article .cm_wrap {float:left;max-width:870px;width:90%}
#bo_vc header {position:relative;width:100%}
#bo_vc header:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc header .profile_img {display:none}
#bo_vc header .icon_reply {position:absolute;top:15px;left:-20px}
#bo_vc .member, #bo_vc .guest, #bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold}
.bo_vc_hdinfo {color:#777}
#bo_vc h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_vc .cmt_contents {line-height:1.8em;padding:0 0 20px}
#bo_vc p a {text-decoration:underline}
#bo_vc p a.s_cmt {text-decoration:underline;color:#ed6479}
#bo_vc_empty {margin:0;padding:80px 0 !important;color:#777;text-align:center}
#bo_vc #bo_vc_winfo {float:left}
#bo_vc .bo_vl_opt {position:absolute;top:0;right:0}

.bo_vc_act {display:none;position:absolute;right:0;top:40px;width:58px;text-align:right;border:1px solid #b8bfc4;margin:0;list-style:none;background:#fff;zoom:1;z-index:9999}
.bo_vc_act:before {content:"";position:absolute;top:-8px;right:5px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #b8bfc4 transparent}
.bo_vc_act:after {content:"";position:absolute;top:-6px;right:5px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
.bo_vc_act li {border-bottom:1px solid #f0f0f0}
.bo_vc_act li:last-child {border-bottom:0}
.bo_vc_act li a {display:inline-block;padding:10px 15px}
.bo_vc_act li a:hover {color:#3a8afd}

.bo_vc_w {position:relative;margin:10px 0;display:block}
.bo_vc_w:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.bo_vc_w #char_cnt {display:block;margin:0 0 5px}
.bo_vc_w textarea {border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;width:100%;height:120px;
-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1)}
#wr_secret {}
.bo_vc_w_info {margin:10px 0;float:left}
.bo_vc_w_info:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w_info .frm_input {float:left;margin-right:5px}
.bo_vc_w_info #captcha {padding-top:10px;clear:both}
.bo_vc_w .btn_confirm {clear:both;margin-top:10px}
.bo_vc_w .btn_confirm label {margin-right:10px;border-radius:3px;text-align:center}
.bo_vc_w .btn_submit {height:45px;padding:0 20px;border-radius:3px;font-weight:bold;font-size:1.083em}
.bo_vc_w .btn_confirm .secret_cm label {font-size:1em !important}
.bo_vc_w_wr:after {display:block;visibility:hidden;clear:both;content:""}
.secret_cm {display:inline-block;float:left}

#bo_vc_send_sns {display:inline-block;float:left}
#bo_vc_sns {display:inline-block;margin:0;padding:0;list-style:none;zoom:1}
#bo_vc_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc_sns li {float:left;margin:0 5px 0 0}
#bo_vc_sns .sns_li_f {border-radius:3px;background:#3a589b;height:40px;line-height:40px;padding:0 0 0 10px}
#bo_vc_sns .sns_li_t {border-radius:3px;background:#00aced;height:40px;line-height:40px;padding:0 0 0 10px}
#bo_vc_sns .sns_li_off {background:#bbb}
#bo_vc_sns a {display:inline-block;padding:0 15px 0 5px}
#bo_vc_sns input {margin:0 5px 0 0}

/*글쓰기*/
#bo_w .bo_v_option li {display:inline-block;float:left;text-align:left;margin:0 5px 0 0}
#bo_w .bo_v_option li label {vertical-align:baseline}
#bo_w .bo_v_option .chk_box input[type="checkbox"] + label span {margin-left:0;margin-right:5px}
#bo_w .write_div {margin:10px 0;position:relative}
#bo_w .write_div:after {display:block;visibility:hidden;clear:both;content:""}
#bo_w .bo_w_info:after {display:block;visibility:hidden;clear:both;content:""}
#bo_w .bo_w_info .frm_input {float:left;margin-bottom:1%}
#bo_w #wr_password, #bo_w #wr_homepage {margin-left:1%}
#bo_w .wr_content.smarteditor2 iframe {background:#fff}
#bo_w .bo_w_tit {position:relative}
#bo_w .bo_w_tit .frm_input {padding-right:120px}
#bo_w .bo_w_tit #btn_autosave {position:absolute;top:5px;right:5px;line-height:30px;height:30px}
#bo_w .bo_w_link label {position:absolute;top:1px;left:1px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#bo_w .bo_w_link .frm_input {padding-left:50px}
#bo_w .bo_w_flie .lb_icon {position:absolute;top:0px;left:0px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#bo_w .bo_w_flie .frm_file {padding-left:50px;margin-top:3px}
#bo_w .bo_w_flie .file_wr {position:relative;border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;margin:0}
#bo_w .bo_w_flie .frm_input {margin:10px 0 0}
#bo_w .bo_w_flie .file_del {position:absolute;top:10px;right:10px;font-size:0.92em;color:#7d7d7d}
#bo_w .bo_w_select select {border:1px solid #d0d3db;width:100%;height:40px;border-radius:3px}
#bo_w .btn_submit {padding:0 20px;font-size:1.167em}
#bo_w .btn_cancel {border-radius:3px;font-size:1.167em}








/**********************
여기서부터 빌더전용 CSS입니다.
스킨작업은 가급적 CSS를 수정하지마시고, 
주석 후 새로 라인을 추가해주세요.
************************/



/* 목록 {*/
.rb_bbs_wrap {position: relative;}
.rb_bbs_wrap .rb_bbs_top {position: absolute;right:10px;margin-bottom: 30px;}
.rb_bbs_wrap .rb_bbs_top li {float:right}
.rb_bbs_wrap .rb_bbs_top li.cnts {margin-right: 10px; margin-top: 9px; font-size: 12px; color:#999;}

.rb_bbs_wrap #bo_cate {margin-bottom: 0px; margin-top: 30px; display: flex;}
.rb_bbs_wrap #bo_cate #bo_cate_ul {flex:1; position: relative;}
.rb_bbs_wrap #bo_cate a {display: inline-flex; padding: 0px 20px; border:0px; font-size: 16px; color:#000; background-color: transparent; line-height: 56px; position: relative;}
.rb_bbs_wrap #bo_cate a:first-child {padding-left: 0px;}
.rb_bbs_wrap #bo_cate a:hover {background-color: transparent; font-family:'font-B',sans-serif;}
.rb_bbs_wrap #bo_cate #bo_cate_on {background-color: transparent; font-weight: normal; box-shadow: none; color:#AA20FF; border:0px; font-family:'font-B',sans-serif;}
.rb_bbs_wrap #bo_cate li {padding: 0px; display: inline-block;}
.rb_bbs_wrap #bo_cate #bo_cate_ul:before {content: "";bottom: 0;position: absolute;width: 100%;margin: 0;height: 1px;background-color: rgba(0, 0, 0, .1);}
.rb_bbs_wrap #bo_cate #bo_cate_on::after {content: "";position: absolute;bottom: 0;right: 20px;left: 0px;height: 2px;background-color: currentColor;}
.rb_bbs_wrap .mo_date_wrap {margin-bottom: 5px;}


.rb_bbs_wrap .rb_bbs_list {border-top:0px solid #ddd; margin-top: 0px;}
.rb_bbs_wrap .rb_bbs_for {background:#fff;padding-top: 40px; padding-bottom: 40px; border-bottom: 1px solid #eee; position: relative; background-repeat: no-repeat;}
.rb_bbs_wrap .rb_bbs_for_info {float:left; width: 10%; box-sizing: border-box;}
.rb_bbs_wrap .rb_bbs_for_cont {float:left; width: 60%; padding-right: 40px;font-size:1.25em;}
.rb_bbs_wrap .rb_bbs_for_img {width:20%; float:right;}
.rb_bbs_wrap .rb_bbs_for_img img {height:auto; width: 100%;}
.rb_bbs_wrap .rb_bbs_for_info1_num {font-size: 16px; color:#999; float:left;}
.rb_bbs_wrap .rb_bbs_for_info1_chk {float:right; margin-top: -2px;}
.rb_bbs_wrap .rb_bbs_for_info2 {margin-top: 20px;}
.rb_bbs_wrap .rb_bbs_for_info2 li {color:#999; font-size: 12px;}
.rb_bbs_wrap .view_info_span {color:#999; font-size: 12px;}
.rb_bbs_wrap .view_info_span_ip {color:#999; font-size: 12px; margin-left: -10px;}
.rb_bbs_wrap .view_info_span a {color:#999; font-size: 12px;}
.rb_bbs_wrap .rb_bbs_for_info2 .ca_names {margin-top: 15px;}
.rb_bbs_wrap .rb_bbs_for_info2 .ca_names a {border-bottom: 2px solid #eee; color:#999; padding-bottom: 4px;}
.rb_bbs_wrap .rb_bbs_for_info2 .ca_names a:hover {color:#000; border-bottom: 2px solid #000;}
.rb_bbs_wrap .rb_bbs_for_cont_subj a {font-size: 22px;}
.rb_bbs_wrap .rb_bbs_for_cont_subj a i {opacity: 0.2}
.rb_bbs_wrap .rb_bbs_for_cont_txt {font-size: 14px; color:#777; line-height: 140%; margin-top: 10px; word-break: keep-all;}
.rb_bbs_wrap .rb_thumb_wrap {box-sizing: border-box; }
.rb_bbs_wrap .rb_thumb_wrap img {border-radius: 2px;}
.rb_bbs_wrap .rb_thumb_wrap a:hover img {opacity: .8;}
.rb_bbs_wrap .btns_gr_wrap {position:fixed; top:128px; left: 0px; width: 100%; z-index: 0; height:0px;}
.rb_bbs_wrap .btns_gr_wrap .sub {padding: 0px; height:0px; min-height: 0px;}
.rb_bbs_wrap .btns_gr_wrap .btns_gr {float:right; width: 50px; margin-right: -100px;}
.rb_bbs_wrap .btns_gr_wrap .btns_gr .fl_btns {width: 50px; height:50px; border:1px solid #ddd; background-color: #fff; border-radius: 6px; text-align: center; margin-bottom: 10px; position: relative; display: block; line-height: 45px;}
.rb_bbs_wrap .btns_gr_wrap .btns_gr .fl_btns:hover {border-color:#AA20FF;}
.rb_bbs_wrap .btns_gr_wrap .btns_gr .fl_btns.main_color_bg {background-color: #AA20FF; border-color:#AA20FF;}
.rb_bbs_wrap .btm_btns .fl_btns {line-height: 35px; display: inline-block; height:35px; border:1px solid #ddd; background-color: #fff; border-radius: 6px; text-align: center; margin-bottom: 10px; position: relative; color:#999; padding-left: 15px; padding-right: 15px;}
.rb_bbs_wrap .btm_btns .fl_btns:hover {border-color:#AA20FF; color:#AA20FF;}
.rb_bbs_wrap .btm_btns .fl_btns.main_color_bg {border-color:#AA20FF; color:#fff !important; background-color: #AA20FF;}

.rb_bbs_wrap .btm_btns {margin-top: 30px;}
.rb_bbs_wrap .rb_bbs_for_mem {margin-top: 0;}
.rb_bbs_wrap .rb_bbs_for_mem li {display: inline-block; margin-left: 0px; margin-right: 20px;}
.rb_bbs_wrap .rb_bbs_for_mem li dd {display: inline-block; margin-right: 10px;}
.rb_bbs_wrap .rb_bbs_for_mem li dd span {font-size: 11px; color:#000;}
.rb_bbs_wrap .lb_ico_new {margin-right:5px;background-color: #2e93ff; color:#fff; font-size: 12px; padding: 3px 5px; border-radius: 2px; display:inline-block; }
.rb_bbs_wrap .lb_ico_hot {margin-right:5px;background-color: #ff5a5a; color:#fff; font-size: 12px; padding: 3px 5px; border-radius: 2px; display:inline-block; }
.rb_bbs_wrap .lb_ico_noti {margin-right:5px;background-color: #454545; color:#fff; font-size: 12px; padding: 3px 5px; border-radius: 2px; display:inline-block; }
.rb_bbs_wrap .is_good span {color:#0094FF !important;}
.rb_bbs_wrap .is_nogood span {color:#FF4C00 !important;}
@media all and (max-width:1200px) {
	.rb_bbs_wrap .rb_bbs_top {position: relative; margin-bottom: 0px;}
}
/* } */

/* 보기 { */
.rb_bbs_wrap h2 {font-size: 22px; word-break: keep-all; line-height: 130%; margin-top: 0px;}
.rb_bbs_for_mem_view {border-bottom: 1px solid #ddd; padding-bottom: 30px;}
.rb_bbs_wrap .rb_bbs_for_mem_view .rb_bbs_for_mem_names {float:left; display: block;}
.rb_bbs_wrap .rb_bbs_for_mem_view .rb_bbs_for_mem_names span {margin-right: 10px;}
.rb_bbs_wrap .rb_bbs_for_mem_view .rb_bbs_for_mem_names span.profile_img {margin-right: 0px;}
.rb_bbs_wrap .rb_bbs_for_mem_view .rb_bbs_for_btm_info {float:right; display: block; margin-right: 0px; margin-left: 20px;}
.rb_bbs_wrap .rb_bbs_file_for {padding-top: 17px; padding-bottom: 17px; font-size: 12px; border-bottom:1px solid #eee; color:#888; background-color: #fff; padding-left: 0px; padding-right: 0px; box-sizing: border-box;}
.rb_bbs_wrap .rb_bbs_file_for i {margin-right: 10px;}
.rb_bbs_wrap .rb_bbs_file_for .file_contents {margin-top: 10px; padding: 0px 15px 0px 28px; border-radius: 0px; margin-bottom: -2px;}
.rb_bbs_wrap #bo_v_con {background:#f9f9f9;margin: 0px; padding-top: 40px; padding-bottom: 40px; font-size: 16px;}
.rb_bbs_wrap #bo_v_con img {max-width: 100%;}
.rb_bbs_wrap #bo_v_act .bo_v_good {display:inline-block;border:1px solid #ddd;width:70px;line-height:46px;border-radius:30px; background-color: #fff;}
.rb_bbs_wrap #bo_v_act .bo_v_nogood {display:inline-block;border:1px solid #ddd;width:70px;line-height:46px;border-radius:30px; background-color: #fff;}
.rb_bbs_wrap #bo_v_act a {margin-left: 2px; margin-right: 2px; width: auto !important; padding-left: 20px; padding-right: 20px;}
.rb_bbs_wrap #bo_v_act a:hover {border-color:#000; color:#000;}
.rb_bbs_wrap #bo_v_act {background-color: #f9f9f9; border-radius: 10px; padding: 20px; box-sizing: border-box;}
.rb_bbs_wrap #bo_v_btns {float:left;}
.rb_bbs_wrap #bo_v_share {padding-top: 0px; padding-bottom: 0px; float:right;}
.rb_bbs_wrap #bo_v_share li a span {display: none;}
.rb_bbs_wrap #bo_v_share li {width: 35px; margin-right: 0px; margin-left: 5px;}
.rb_bbs_wrap #bo_v_sns li img {margin-right: 0px;}
.rb_bbs_wrap .bo_v_nb li {padding-top: 17px; padding-bottom: 17px; font-size: 14px; cursor: pointer;}
.rb_bbs_wrap .bo_v_nb li:hover {background-color: #f9f9f9;}
.rb_bbs_wrap .bo_v_nb li .nb_date {font-size: 12px;}
.rb_bbs_wrap .cmt_btn {border-bottom: 1px solid #ddd;}
.rb_bbs_wrap .cmt_btn span.total:after {display: none;}
.rb_bbs_wrap .cmt_btn span.total {color:#000; font-size: 16px}
.rb_bbs_wrap .cmt_btn b {color:#999; font-size: 16px;}
.rb_bbs_wrap #bo_vc header .profile_img {display: inherit;}
.rb_bbs_wrap #bo_vc header {width: 80%;}
.rb_bbs_wrap #bo_vc article .pf_img {display: none;}
.rb_bbs_wrap .cm_wrap span {font-size: 12px; color:#999;}
.rb_bbs_wrap .cm_wrap {background-repeat: no-repeat; padding-top: 20px; padding-bottom: 20px; max-width: inherit !important; width: 100% !important;}
.rb_bbs_wrap #bo_vc .cmt_contents {padding-top: 0px; font-size: 14px; padding-bottom: 0px; margin-top: 15px; line-height: 130%; color:#222;}
.rb_bbs_wrap #bo_vc article {margin: 0px;}
.rb_bbs_wrap .bo_vc_w {margin: 0px;}
.rb_bbs_wrap .bo_vc_w textarea {font-size:14px !important; border-radius: 0px; resize: none; height:150px; margin-top: 30px; background-color: #f9f9f9; padding: 15px !important; padding-right: 70px !important; box-sizing: border-box; border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 0px !important; border-bottom-right-radius: 0px !important; border:1px solid #ddd; font-size: 16px; color:#000; box-shadow: none; line-height: 130%; overflow: hidden;}
.rb_bbs_wrap .bo_vc_w textarea:focus {border:1px solid #ddd !important; background-color: #fff;}
.rb_bbs_wrap .bo_vc_w textarea::placeholder {color:#999;}
.rb_bbs_wrap .p_times {display: block; margin-top: 5px;}
.rb_bbs_wrap #bo_vc .bo_vl_opt {top:20px;}
.rb_bbs_wrap #bo_vc .bo_vl_opt button {padding: 0px; height:auto; line-height: inherit; color:#000; width: 26px;}
.rb_bbs_wrap #bo_vc .bo_vl_opt button:hover {color:#999;}
.rb_bbs_wrap .bo_vc_act {top:30px;}
.rb_bbs_wrap .bo_vc_act li a:hover {color:#000;}
.rb_bbs_wrap .bo_vc_w_wr {padding: 15px; border:1px solid #ddd; border-top:0px; box-sizing: border-box; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;}
.rb_bbs_wrap .btn_confirm_btn_wrap {margin-right: 20px;}
.rb_bbs_wrap .btn_confirm_cm_wrap i {margin-right: 5px;}
.rb_bbs_wrap .bo_vc_w .btn_confirm {margin-top: 0px;}
.rb_bbs_wrap .bo_vc_w .btn_confirm label {margin: 0px; font-size: 14px; display: inherit; color:#000;}
.rb_bbs_wrap .bo_vc_w .btn_submit {height:40px; border-radius: 6px; font-weight: normal; font-size: 16px; padding-left: 25px; padding-right: 25px;}
.rb_bbs_wrap .cm_wrpa_write_left {float:left;}
.rb_bbs_wrap .cm_wrpa_write_left span {color:#999; font-size: 14px; padding-left: 5px; line-height: 40px;}
.rb_bbs_wrap .cm_wrpa_write_left span.main_color {padding-left: 0px;}
.rb_bbs_wrap .cm_wrpa_write_right {float:right;}
.rb_bbs_wrap #char_cnt {position: absolute; top:50px; right:17px; text-align: right;font-weight: normal; font-size: 12px; color:#999; margin: 0px;}
.rb_bbs_wrap .bo_vc_w_info {margin-top: 0px; margin-bottom: 0px; float:none; margin-bottom: 15px; padding-bottom: 15px; margin-left: -15px; margin-right: -15px; border-bottom: 1px solid #eee; padding-left: 15px; padding-right: 15px; box-sizing: border-box;}
.rb_bbs_wrap .bo_vc_w_info #captcha {margin-top: 30px;}
.rb_bbs_wrap .bo_vc_w_info .frm_input {float:none; border:1px solid #ddd; height:30px; width: 100px; border-radius: 6px !important; padding-left: 10px; padding-right: 10px;}
.rb_bbs_wrap .bo_vc_w_info_ul1 {margin-top: -60px;}
.rb_bbs_wrap .copy_urls {float:left;}
.rb_bbs_wrap .copy_urls li {width:35px; margin-right: 0px; margin-left: 5px;}
.rb_bbs_wrap .copy_urls li a {display: block; height: 35px;line-height: 35px;text-align: center;border-radius: 5px;color: #fff;font-size: 0.95em;}
.rb_bbs_wrap .bbs_bn_box {margin-top: 30px; margin-bottom: 10px;}
.rb_bbs_wrap #bo_v_img .view_image {display: inline;}

#bo_v_act_good, #bo_v_act_nogood {display:none;position:absolute;top:50px;left:0;z-index:9999;padding:7px 10px;width:auto; font-size: 12px; background:#ff3061;color:#fff;text-align:center; font-weight: normal; word-break: keep-all; border-radius: 10px;}
/* } */

/* 작성자 서명 { */
.rb_bbs_wrap .writer_prof {background-color: #f9f9f9; padding:30px; box-sizing: border-box; border-radius: 10px;}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 {float:left; width: 55%;}
.rb_bbs_wrap .writer_prof .writer_prof_ul2 {float:right;}
.rb_bbs_wrap .writer_prof .writer_prof_ul2 a {display: inline-block; vertical-align: top;}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 .writer_prof_li_prof_img {float:left; margin-right:20px;}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 .writer_prof_li_prof_img img {width: 50px; height:50px; border-radius: 10px;}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 .writer_prof_li_prof_txt {float:left; color:#999;}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 .writer_prof_li_prof_txt span {}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 .writer_prof_li_prof_txt .prof_nick .sv_wrap a {font-size: 18px; font-family:'font-R',sans-serif; color:#000;}
.rb_bbs_wrap .writer_prof .writer_prof_ul1 .writer_prof_li_prof_txt .prof_nick {display: block; margin-bottom: 5px; margin-top: 3px;}
.rb_bbs_wrap .writer_prof .writer_prof_li_txt {margin-top: 15px; font-size: 16px; color:#666; line-height: 130%; word-break: keep-all;}
.rb_bbs_wrap .writer_prof_ul2 .fl_btns {width: 50px; height:50px; border:1px solid #ddd; background-color: #fff; border-radius: 6px; text-align: center; margin-bottom: 0px; position: relative; display: block; line-height: 45px;}
.rb_bbs_wrap .writer_prof_ul2 .fl_btns:hover {border-color:#AA20FF;}
.rb_bbs_wrap .writer_prof_ul2 .gd_btn {width: auto; background-color: #AA20FF; color:#fff; font-size: 16px; padding-left: 20px; padding-right: 20px; border:0px;}
.rb_bbs_wrap .writer_prof_ul2 .gd_btn i {margin-top: 0px; margin-right: 5px; float:left;}
.rb_bbs_wrap .writer_prof_ul2 .gd_btn span {float:right; margin-top: 2px;}
/* } */

/* 쓰기 { */
.rb_bbs_wrap.rb_bbs_write_wrap {margin-top: 0px;}
.rb_bbs_wrap #char_count_wrap {position: absolute; top:35px; right:17px; text-align: right;font-weight: normal; font-size: 12px; color:#999; margin: 0px;}
.rb_bbs_wrap .help_text {font-size: 12px; color:#999; display: block; margin-bottom: 10px; word-break: keep-all;}
.rb_bbs_wrap .help_text_gap {font-size: 12px; color:#999; display: block; margin-bottom: 10px; word-break: keep-all; margin-top: 15px;}
.rb_bbs_wrap .ca_name {width: 35%;}
.rb_bbs_wrap .wr_subject {width: 70%; height:60px; font-size: 18px; padding-left: 20px; padding-right: 20px; box-sizing: border-box;}
.rb_bbs_wrap .rb_inp_wrap {margin-bottom: 10px;}
.rb_bbs_wrap .cke_sc {display: none !important;}
.rb_bbs_wrap .wr_content {position: relative;}
.rb_bbs_wrap .wr_content textarea {border:1px solid #ddd; padding: 20px; box-sizing: border-box; box-shadow: none; border-radius: 10px; resize: none;}
.rb_bbs_wrap .guest_inp_wrap {background-color: #f9f9f9; border-radius: 10px; padding: 20px; box-sizing: border-box;}
.rb_bbs_wrap .guest_inp_wrap .input_tiny {width: 20%}
.rb_bbs_wrap .guest_inp_wrap .email {margin-top: 5px; width: 60%}
.rb_bbs_wrap .rb_inp_wrap_link {position: relative; margin-bottom: 10px;}
.rb_bbs_wrap .rb_inp_wrap_link i {position: absolute; top:14px; left: 15px;}
.rb_bbs_wrap .rb_inp_wrap_link .input {padding-left: 40px; box-sizing: border-box;}
.rb_bbs_wrap .rb_inp_wrap_gap {margin-top: 30px;}
.rb_bbs_wrap .rb_inp_wrap_confirm {text-align: center; margin-top: 30px;}
.rb_bbs_wrap .rb_inp_wrap_confirm .btn_cancel {width:auto;background-color: #aaa;color: #fff;height: 47px;border-radius: 10px;border: 0px; line-height: 47px; font-size: 14px; font-weight: normal; padding-left: 30px; padding-right: 30px;}
.rb_bbs_wrap .rb_inp_wrap_confirm .btn_submit {width:auto;background-color: #AA20FF;color: #fff;height: 47px;border-radius: 10px;border: 0px; font-size: 14px; font-weight: normal; padding-left: 30px; padding-right: 30px;}
.rb_bbs_wrap .rb_inp_wrap_confirm .btn_submit:hover {opacity: 0.8}
.rb_bbs_wrap #bo_vc_w #wr_content {border-bottom-left-radius: 0px !important; border-bottom-right-radius: 0px !important;}
/* } */

/* 파일업로드 { */
.swiper-wfile {margin-top: 10px;}
.au_input{width:100%;height:100%;display:block;opacity:0;position:absolute;top:0;left:0;z-index:97;}
.au_btn_search_file{background-color:#279e6b;padding:15px;text-align:center;cursor:pointer; border-radius: 6px; color:#fff;}
                        
.au_file_list{width: 100%; box-sizing: border-box; position: relative;}
.au_file_list_img_wrap {height:90px; overflow: hidden; border-radius: 6px; border:1px solid #eee; box-sizing: border-box;}
.au_file_list img {width: 100%; height:auto; min-height:100%;}
.au_progress{display:none;border-radius:4px;text-align:center; margin-top: 10px; background-color: rgba(0,0,0,0.05);}
.au_bars {font-size: 10px; color:rgba(0,0,0,1); background-color: rgba(0,0,0,0.1); border-radius:4px; transition: all 350ms cubic-bezier(0.07, 1, 0.07, 1);}
.cut {overflow: hidden;text-overflow: ellipsis;white-space: nowrap;width: 100%;display: block;}
.au_btn_del{border-radius:4px;background-color:#f00;color:#fff !important;opacity:1;cursor:pointer; position: absolute; bottom:25px; right:5px; font-size: 11px; padding: 2px 5px 2px 5px;}
.au_btn_del2{border-radius:4px;background-color:#279e6b;color:#fff;opacity:1;cursor:pointer; position: absolute; bottom:25px; right:5px; font-size: 11px; padding: 2px 5px 2px 5px; z-index: 3}
#file_list .swiper-slide_lists dd {display: none; right:37px; color:#fff !important;}
#file_list .swiper-slide_lists:nth-child(1) dd {display: block !important;}
                            
.au_btn_search_file {border:2px dashed #f0f0f0 !important; background-color: #fff !important; color:#999 !important; min-height:100px; padding-top: 35px !important;}
                            
.w_pd {padding-top: 23px; }
.w_etc {display: block; width: 40px; margin:0 auto; text-align: center; background-color: #aaa; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_pdf {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #e7191b; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_ppt {display: block; width: 40px; margin:0 auto; text-align: center; background-color: #f68100; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_pptx {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #f68100; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_jpg {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #87cd6d; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px}
.w_zip {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #fec200; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_hwp {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #006fbe; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_xlsx {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #00753e; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_xls {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #00753e; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_doc {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #01528a; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}
.w_docx {display: block;  width: 40px; margin:0 auto; text-align: center; background-color: #01528a; color:#fff; padding-top: 14px; padding-bottom: 18px; font-weight: bold; border-radius: 6px;}

#son {height:10px;}
/* } */


/* 검색 { */
.bo_sch_bg {background: rgba(0,0,0,0.5);}
/* } */


/* 툴팁 { */
.rb_bbs_wrap .tooltips {
    opacity: 0;
    transition: all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: default;
    position: absolute;
    left:50px;
    width: max-content;
    color: #fff;
    background-color: #212121;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 100%;
    top:50%;
    transform: translateY(-50%);
}
.rb_bbs_wrap .tooltips:after {
    border-top: 4px solid rgba(0, 0, 0, 0);
    border-left: 4px solid #212121;
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid rgba(0, 0, 0, 0);
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}


.rb_bbs_wrap .btns_gr_wrap .btns_gr .fl_btns:hover .tooltips {left: 60px; opacity: 1;}

.rb_bbs_wrap .writer_prof_ul2 .fl_btns .tooltips {left: 50%; transform: translateX(-50%); bottom:-20px; top:auto;}
.rb_bbs_wrap .writer_prof_ul2 .fl_btns .tooltips:after {
    top:-7px; left: 50%; transform: translateX(-50%);
    border-top: 4px solid rgba(0, 0, 0, 0);
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid #212121;
}
.rb_bbs_wrap .writer_prof_ul2 .fl_btns:hover .tooltips {opacity: 1; bottom:-30px;}
/* } */

/* 검색창 { */
.bo_sch select {height:47px; border-radius: 10px; width: 100%;}
.bo_sch .sch_bar {margin-top: 10px; border:0px; box-shadow: none; position: relative;}
.bo_sch .sch_bar input {width: 100%; padding-right: 47px;}
.bo_sch .sch_btn {float:none; position: absolute; top:0px; right:0px; height:47px; width:47px;}
.bo_sch h3 {font-size: 16px;}
.bo_sch {border:0px; border-radius: 10px; box-shadow: 10px 10px 30px rgba(0,0,0,0.2);}
/* } */

.rb-board-table {width: 100%; border-collapse: collapse;}
.rb-board-table thead {}
.rb-board-table tbody {}
.rb-board-table th {padding-top: 20px; padding-bottom: 20px; text-align: center;  font-family:'font-B',sans-serif; font-weight: normal; border-bottom: 1px solid #ddd;}
.rb-board-table td {padding-top: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee;}
.rb-board-table td.rb-board-no {width: 10%; text-align: center}
.rb-board-table td.rb-board-writer {width: 20%; text-align: center;}
.rb-board-table td.rb-board-views {width: 15%; text-align: center;}
.rb-board-table td.rb-board-date {width: 15%; text-align: center;}
.rb-board-table td.rb-board-title {width: 60%; padding-right: 15px; padding-left: 15px;}
.rb-board-table td.rb-board-title a {font-size: 16px;}
.rb-board-table td .cats {color:#999 !important; padding-right: 10px;}
.rb-board-table .bbs_basic_infos_wrap {margin-top: 10px; font-size: 12px !important; color:#999 !important;}
.rb-board-table .bbs_basic_infos_wrap a {font-size: 12px !important; color:#999;}
.rb-board-table td.rb-board-title {background-repeat: no-repeat;}

.btm_btns_left {float:left;}
.btm_btns_right {float:right;}
.btm_btns_right .main_color_bg img {height:12px; margin-top: -2px;}
.rb_bbs_wrap #bo_v_share {float:none; text-align: center;}
.rb_bbs_wrap #bo_v_share ul {display: inline-block; float:none; vertical-align: top; margin-left: -1px; margin-right: -1px;}
.rb_bbs_wrap #bo_v_act {margin-top: 50px;}
.btm_btns_right a {float:left; margin-right: 4px;}

/* 반응형 처리 { */
@media all and (max-width:768px) {
    .board_pc {display: none;}
    .rb_bbs_wrap .rb_bbs_for_info {float:none; width: auto; position: absolute; top:39px; right:-5px; padding-right: 0px; z-index: 97;}
    .rb_bbs_for_info1_num {display: none;}
    .rb_bbs_for_info2 {display: none;}
    .mo_date_wrap {color:#999; font-size: 12px; margin-bottom: 5px;}
    .rb_bbs_wrap .rb_bbs_for_cont {width: 45%;}
	.rb_bbs_wrap .rb_bbs_for_img {width: 50%;}
    .bo_v_nb li .nb_tit {display: block;}
    .bo_v_nb li .nb_date {float:none;}
    .rb_bbs_wrap .bo_v_nb li a {display: block; margin-top: 7px;}
    .rb_bbs_wrap .cm_wrpa_write_left {float:none; text-align: left; word-break: keep-all;}
    .rb_bbs_wrap .cm_wrpa_write_right {float:none; text-align: left; padding-top: 10px;}
    .rb_bbs_wrap .bo_vc_w .btn_submit {float:right; margin-top: -5px;}
    
    .rb_bbs_wrap .btns_gr_wrap .btns_gr {margin-right: 0px;}
    .rb_bbs_wrap .btns_gr_wrap {width: auto; top:65%; transform: translateY(-50%); left: auto; right:20px; z-index: 98; height:auto;}
    .rb_bbs_wrap .tooltips {display: none;}
    .bo_sch {margin-left: 0px; transform: translateX(-50%);}
    
    .rb_bbs_wrap .ca_name {width: 60%;}
    .wr_content #char_count_wrap {display: none;}
    .rb_bbs_wrap .guest_inp_wrap .input_tiny {width: 30%;}
    .rb_bbs_wrap .guest_inp_wrap .email {width: 80%;}
    .rb_bbs_for_mem_names span {word-break: keep-all;}
    .rb_bbs_wrap h2 {font-size: 24px; margin-top: 5px;}
    
    .rb_bbs_wrap .rb_bbs_for_mem li {margin-right: 10px;}
    .rb_bbs_wrap .rb_bbs_for_mem_view .rb_bbs_for_btm_info {margin-left: 10px;}
    
    .rb_bbs_wrap .cont_info_wrap_l {float:none; width: 100%;}
    .rb_bbs_wrap .cont_info_wrap_r {float:none; width: 100%;}
    .rb_bbs_wrap .writer_prof {padding: 20px; position: relative;}
    .rb_bbs_wrap .writer_prof .writer_prof_ul2 {position: absolute; top:20px; right:20px;}
    .rb_bbs_wrap .writer_prof .writer_prof_li_txt {float:none; width: 100%; font-size: 14px; margin-top:20px; word-break: keep-all;}
    .rb_bbs_wrap .writer_prof .writer_prof_ul1 {float:none; width: 100%;}
    
    .view_info_span_date {display: none;}
    
    .rb-board-table td.rb-board-no {width: 10%;}
    .rb-board-table td.rb-board-title {width: 90%;margin-right: 5px;}
    .write_mobiles {display:inline-block; margin-right: 10px;}
    
    .btm_btns_left {float:none;}
    .btm_btns_right {float:none; margin-top: 0px;}
    
    .btns_gr {display: none;}
    .rss_pc {display: none !important;}
    .btm_btns_left .btn_bo_sch {float:right;}
    .btm_btns_right .main_color_bg {width: 100%; height:50px !important; font-size: 16px;}
    .btm_btns_right .main_color_bg img {height: 18px; margin-right: 10px;}
}

.rb_inp_wrap2 {
	display: grid;
    grid-template-columns: 1fr 1fr; /* 3개의 열 구성 */
    gap: 10px;
	margin-bottom:10px;
}
.rb_inp_wrap3 {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3개의 열 구성 */
    gap: 10px;
	margin-bottom:10px;
}
/* } */