@charset "utf-8";
/* ============================================
   애니메이션 키프레임
   ============================================ */

/* 헤더 첫 로딩 - 위에서 내려오기 */
@keyframes headerSlideDown {
    0%   { transform: translateY(-100%); opacity: 0; }
    60%  { transform: translateY(6px);   opacity: 1; }
    80%  { transform: translateY(-3px);              }
    100% { transform: translateY(0);                 }
}

/* 캡슐 버튼 - 통통 pulse */
@keyframes capsulePulse {
    0%   { transform: scale(1);    box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
    40%  { transform: scale(1.07); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
    60%  { transform: scale(0.97);                                            }
    80%  { transform: scale(1.03);                                            }
    100% { transform: scale(1);    box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
}

/* 캡슐 버튼 - 반짝임 shine */
@keyframes capsuleShine {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center;  }
}


/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap')*/

/* ### 기본 스타일 커스터마이징 시작 ### */



/* ============================================
   ch-fullwide 2단 헤더 (로고바 + 메뉴바)
   ============================================ */

/* 헤더 전체 */
.ch-fullwide {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 5000;
    transition: box-shadow 0.3s ease;
}
.ch-fullwide.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

/* ① 로고 바 */
.ch-logo-bar {
    width: 100%;
    transition: padding 0.3s ease;
}
.ch-logo-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 로고 */
.ch-fullwide .custom-logo {
    height: 64px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: height 0.3s ease;
}
.ch-fullwide .custom-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}
.ch-fullwide .logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* 대표상담 캡슐 버튼 (오른쪽) */
.ch-tel-capsule {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    line-height: 1;
    position: relative;
    overflow: hidden;
    /* pulse: 2초 대기 후 반복 */
    animation: capsulePulse 2.8s ease-in-out 2s infinite;
}
/* 반짝임 레이어 */
.ch-tel-capsule::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.45) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    background-position: -200% center;
    border-radius: 50px;
    animation: capsuleShine 2.4s ease-in-out 2.5s infinite;
    pointer-events: none;
}
.ch-tel-capsule:hover {
    filter: brightness(1.12);
    box-shadow: 0 8px 26px rgba(0,0,0,0.28);
    transform: translateY(-3px) scale(1.04);
    animation-play-state: paused;  /* hover시 pulse 멈춤 */
    transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ch-tel-capsule .fa { font-size: 20px; }

/* 모바일 햄버거 버튼 */
.ch-fullwide .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    padding: 0 14px;
    position: absolute;
    right: 0;
    top: 0; bottom: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* ② 메뉴 바 */
.ch-nav-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ch-nav-bar-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ch-nav-bar .menu-link {
    display: inline-block;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 17px 30px;
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.ch-nav-bar .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: rgba(255,255,255,0.8);
    transition: width 0.25s ease, left 0.25s ease;
}
.ch-nav-bar .menu-link:hover::after,
.ch-nav-bar .menu-link.active::after {
    width: 100%; left: 0;
}
.ch-nav-bar .menu-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.ch-nav-bar .menu-link.active { color: #fff; }

/* 관심고객등록 강조 */
.ch-nav-bar .menu-link-cta {
    background: rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}
.ch-nav-bar .menu-link-cta:hover { background: rgba(255,255,255,0.28); }
.ch-nav-bar .menu-link-cta.active,
.ch-nav-bar .menu-link-cta.active::after { background: rgba(255,255,255,0.15); width: 0; }

/* 섹션 앵커 스크롤 여백 */
[id] {
    scroll-margin-top: 100px;
}

/* 본문 시작 위치 - 헤더 바로 아래 붙이기 */
#bo_v_atc {
    border:10px solid #333;
    padding-top:0px; /* 헤더 높이만큼 패딩 */
    margin-top: 0 !important; /* 여백 제거 */
}

/* ============================================
   반응형 - 모바일 (768px 이하)
   ============================================ */
@media (max-width: 768px) {
    .ch-logo-bar-inner {
        justify-content: flex-start;
        padding: 8px 14px;
    }
    .ch-fullwide .custom-logo,
    .ch-fullwide .custom-logo img { height: 60px; }
    .ch-fullwide .mobile-menu-btn { display: flex; }
    .ch-nav-bar-inner {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        padding: 8px 0;
        box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        z-index: 100;
        background: inherit;
    }
    .ch-nav-bar-inner.active { display: flex; }
    .ch-nav-bar .menu-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 15px;
    }
    .ch-nav-bar .menu-link:last-child { border-bottom: none; }
    .ch-nav-bar .menu-link::after { display: none; }
}




.content-section {
    padding: 30px 0 60px 0; /* 기본 60px → 80px */
	border: 0px solid #eee;
}
.section-title {
    font-size: 32px; /* 기본 28px → 32px */
    color: #333;
    text-align: left; /* 왼쪽 정렬 */
}
.content-section-inner {
    max-width: 1400px; /* 기본 1200px → 1400px */
	margin:0 auto;
	border: 0px solid #333;
}



/* ============================================
   기존 게시판 스타일
   ============================================ */

/* 게시판 버튼 */
/* 목록 버튼 */
#bo_list a.btn_b01 {display:none;}
#bo_list a.btn_b01:focus, #bo_list .btn_b01:hover {}
#bo_list a.btn_b02, #bo_gall a.btn_b02 {display:inline-flex !important;align-items:center !important;height:36px !important;padding:0 16px !important;border-radius:8px !important;background:#2563eb !important;color:#fff !important;font-size:13px !important;font-weight:700 !important;text-decoration:none !important;transition:background .2s;}
#bo_list a.btn_b02:focus, #bo_list .btn_b02:hover, #bo_gall a.btn_b02:focus, #bo_gall .btn_b02:hover {background:#1d4ed8 !important;}
#bo_list a.btn_admin, #bo_gall a.btn_admin {display:inline-flex !important;align-items:center !important;justify-content:center !important;width:36px !important;height:36px !important;border-radius:8px !important;background:#4f46e5 !important;color:#fff !important;font-size:15px !important;transition:background .2s;} /* 관리자 전용 버튼 */
#bo_list a.btn_admin:focus, #bo_list a.btn_admin:hover, #bo_gall a.btn_admin:focus, #bo_gall a.btn_admin:hover {background:#3730a3 !important;}
.chk_all{margin:10px 0}
/* 읽기 버튼 */
#bo_v a.btn_b01 {}
#bo_v a.btn_b01:focus, #bo_v .btn_b01:hover {}
#bo_v a.btn_b02 {}
#bo_v a.btn_b02:focus, #bo_v .btn_b02:hover {}
#bo_v a.btn_admin {} /* 관리자 전용 버튼 */
#bo_v a.btn_admin:focus, #bo_v a.btn_admin:hover {}

/* 쓰기 버튼 */
#bo_w .btn_confirm {} /* 서식단계 진행 */
#bo_w .btn_submit {background:#ff555f;}
#bo_w .btn_cancel {}
#bo_w .btn_frmline {} /* 우편번호검색버튼 등 */

/* 게시판 목록 공통 */



#bo_cate {margin:0 !important;border:0 !important;padding:12px 0 16px !important;}
#bo_cate h2 {position:absolute;font-size:0;line-height:0;overflow:hidden;}
#bo_cate ul {display:flex !important;flex-wrap:wrap !important;gap:6px !important;list-style:none !important;padding:0 !important;margin:0 !important;}
#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:"";}
#bo_cate li {display:inline-flex !important;padding:0 !important;}
#bo_cate a {display:inline-flex !important;align-items:center !important;height:34px !important;padding:0 18px !important;border-radius:20px !important;border:1.5px solid #e5e7eb !important;background:#f3f4f6 !important;font-size:13px !important;font-weight:600 !important;color:#555 !important;text-decoration:none !important;transition:all .18s;}
#bo_cate a:hover {border-color:#2563eb !important;color:#2563eb !important;background:#eff6ff !important;}
#bo_cate #bo_cate_on {background:#2563eb !important;color:#fff !important;border-color:#2563eb !important;font-weight:700 !important;}



.bo_fx {margin-bottom:5px;padding:0 10px}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
#bo_list_total{position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden;font-size:0}
.btn_bo_user {position:relative;text-align:right;margin:16px 0;padding:0;list-style:none;display:flex;align-items:center;justify-content:flex-end;gap:6px;flex-wrap:wrap;}
.btn_bo_user li {display:inline-flex;align-items:center;}

.al_chk{margin:10px 0}

#bo_sch {background:#fff;border:1px solid #ccd4db;position:relative;margin:20px 0;border-radius:3px;
-webkit-box-shadow:inset  0 2px 6px #eaeaea;
-moz-box-shadow: inset 0 2px 6px #eaeaea;
box-shadow:inset 0 2px 6px #eaeaea }
#bo_sch:after {display:block;visibility:hidden;clear:both;content:""}
#bo_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#bo_sch select{border:0;border-right:1px solid #ccd4db;height:53px;float:left;width:30%;padding:0 10px}
#bo_sch .sch_input{border:0;padding:0;background-color:transparent;float:left;width:70%;;height:53px;padding:0 40px 0 10px}
#bo_sch .sch_btn{height:53px;position:absolute;top:0;right:0;border:0;width:40px;background:none;font-size:15px}

.view_is_list.btn_top{position:relative;z-index:auto;top:0;left:0}
.view_is_list{margin:8px 10px 0;height:50px;padding:10px;line-height:30px;border-radius:3px;border-bottom:1px solid #ccc;background:#fff;color:#333;text-align:right}
.view_is_list li{display:inline-block}

.btn_edit{display:none;position:absolute;top:40px;right:0;width:100px;background:#fff; border:1px solid #d4d4d4;z-index:599;
-webkit-box-shadow: 0 2px 3px #eee;
-moz-box-shadow:  0 2px 3px #eee;
box-shadow: 0 2px 3px #eee}
.btn_edit li {line-height:40px;width:100%;float:none;border-top:1px solid #f1f1f1;font-size:12px !important;text-align:left;padding:0 10px;position:relative}
.btn_edit li button{width:100%;font-size:12px !important;text-align:left;color:#6b757c !important;height:40px;background:none;border:0;vertical-align:Top}
.btn_edit li i{position:absolute;top:0;right:10px;line-height:40px;font-size:14px !important;;color:#92a1af}
.btn_edit li:hover{background:#f8f8f8}
.btn_edit li a {color:#6b757c;font-size:12px !important;vertical-align:Top}
.edit_op_btn{background:none;border:0;line-height:40px;width:30px;color:#adaaa7;font-size:15px}
.bo_notice td {background:#f5f6fa}

#gall_ul li{position:relative; height:240px;border:1px solid #d4d4d4;border-radius:10px}
#gall_ul .gall_img img{width:100%;height:auto}
#gall_ul .gall_text_href{position:relative;padding:10px;}
#gall_ul .gal_name{margin:10px 0}
#gall_ul .gal_name ,#gall_ul .sv_member{color:#333;font-weight:bold}
#gall_ul .gal_name img{vertical-align:top;border-radius:30px}
#gall_ul .bo_cate {position:absolute;top:0;left:0;}
#gall_ul .bo_cate_link {color:#1d4ed8;display:inline-block;background:#dbeafe;padding:2px 10px;line-height:22px;font-weight:700;text-decoration:none;font-size:11px;border-radius:20px;} 
#gall_ul .bo_notice {color:#fff;display:inline-block;background:#ed2e55;padding: 0 8px;line-height:25px;font-weight:normal;text-decoration:none;font-size:0.92em}
#gall_ul .gal_li_tit{font-weight:bold;font-size: 1.2em;letter-spacing:0px;margin-top:20px;border:0px solid #333;}
#gall_ul .gal_detail{margin:10px 0;line-height: 1.5em;}
#gall_ul .gal_info {padding:15px 10px;border-top:1px solid #f2f2f2;color:#000}
#gall_ul .gal_if_sp {position:relative;line-height: 24px;display:inline-block;margin-right:10px;padding-left:10px;}
#gall_ul .gal_if_sp:before{content: ''; position: absolute; left: 0;top: 10px;width: 4px;height: 4px; background: #ff90cc;border-radius: 2px;}
#gall_ul .gal_if_sp  strong{font-weight:normal}

#gall_ul .fa-download{width:16px;height:16px;line-height:16px;background:#ecaa30;color:#fff;text-align:center;font-size:10px;border-radius:2px}
#gall_ul .fa-link{width:16px;height:16px;line-height:16px;background:#2aa974;color:#fff;text-align:center;font-size:10px;border-radius:2px}
#gall_ul .fa-heart{width:16px;height:16px;line-height:16px;background:#ff0000;color:#fff;text-align:center;font-size:10px;border-radius:2px}
#gall_ul .new_icon  {display:inline-block;width:16px;height:16px;line-height:16px;background: #c56bed; color: #fff;text-align:center;font-size:10px;border-radius:2px}
#gall_ul .fa-lock{width:16px;height:16px;line-height:16px;background: #d8e7e1; color: #7db099;text-align:center;font-size:10px;border-radius:2px}





#gall_ul .bo_cate_link2 {color:#166534;display:inline-block;background:#dcfce7;padding:2px 10px;line-height:22px;font-weight:700;text-decoration:none;font-size:11px;border-radius:20px;} 
#gall_ul .bo_cate_link3 {color:#6b7280;display:inline-block;background:#f3f4f6;padding:2px 10px;line-height:22px;font-weight:700;text-decoration:none;font-size:11px;border-radius:20px;} 
#gall_ul .bo_cate_link4 {color:#92400e;display:inline-block;background:#fef3c7;padding:2px 10px;line-height:22px;font-weight:700;text-decoration:none;font-size:11px;border-radius:20px;} 
#gall_ul .bo_cate_link5 {color:#000;display:inline-block;background:#ffcc00;padding: 0 8px;line-height:30px;font-weight:normal;text-decoration:none;font-size:1.0em;border-radius:10px} 

#gall_ul .lt_cate {padding:10px;line-height:30px;border-bottom:1px solid #f2f2f2;margin-bottom:10px;}
#gall_ul .lt_date {color:#000;float:right;display:inline-block;position:relative;padding-left:10px;font-size:14px;}
/*#gall_ul .lt_date:before {content:'';position:absolute;left:0;top:12px;width:4px;height:4px;background:#ff90cc;border-radius:2px}*/

#gall_ul .lt_date2 {position:absolute;color:red;font-weight:bold;float:right;display:inline-block;position:relative;padding-left:10px;font-size:12px;background:#ffffcc;padding: 0 8px;line-height:30px;text-decoration:none;border-radius:10px}
#gall_ul .lt_date3 {position:absolute;color:#fff;float:right;display:inline-block;position:relative;top:60px;right:10px;padding: 0 8px;line-height:30px;z-index:999;}

@media (max-width: 969px){
   #gall_ul .gal_li_tit{font-weight:bold;font-size: 1.3em;letter-spacing:-1px;}
}





#gall_allchk{margin:20px 0}

@media (max-width: 969px){
    #bo_sch select,#bo_sch .sch_input,#bo_sch .sch_btn{height:40px}
    #bo_cate{padding:0 10px 10px}
}
/* 게시판 쓰기 */
#bo_w #wr_email, #bo_w #wr_homepage, #bo_w #wr_subject {width: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}

#wr_email, #wr_homepage, #wr_subject, .wr_link {width:100%}

/* 게시판 읽기 */
.view_tit{display:none}
#bo_v {margin:0 0 0 0;border:0px solid #ff0000;}
#bo_v_table {color:#999;font-size:0.9em;font-weight:bold}


/*로고이미지 - 삭제됨 (커스텀 헤더로 대체)*/
#bo_v_info {width:1000px;position:relative;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;text-align:c;color:#000;line-height:24px;padding:10px 0;margin:0 auto 0}
#bo_v_info h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_info strong {display:inline-block;font-weight:normal;margin:0 5px}
#bo_v_info .profile_img img{border-radius:50%;vertical-align:top}
#bo_v_info .icon_view{display:inline-block;background:url(./img/icon_view.png) no-repeat 50% 50%;background-size:80%;height:15px;width:20px;overflow:hidden;text-indent:-999px;vertical-align:middle;margin:0 3px 0 5px}
#bo_v_info .icon_comment{display:inline-block;background:url(./img/icon_comment.png) no-repeat 50% 50%;background-size:70%;height:15px;width:20px;overflow:hidden;text-indent:-999px;vertical-align:middle;margin:0 3px 0 5px}
#bo_v_info .if_sp{position:relative;line-height: 24px;display:inline-block;margin:0 10px;padding-left:10px;}
#bo_v_info .if_sp:before{content: ''; position: absolute; left: 0;top: 10px;width: 4px;height: 4px; background: #ff90cc;border-radius: 2px;}

#bo_v_edit{position:absolute;bottom:0;right:0;margin-top:0}
#bo_v_edit .view_btn{width:50px;height:45px;background:none;border:0;font-size: 15px;color: #9ea2a5;}
#bo_v_edit .view_btn:hover{color:#0060ff}
#bo_v_edit .bo_v_left{display:none;position:absolute;top:40px;right:0;width:100px;background:#fff; border:1px solid #d4d4d4;z-index:599;
-webkit-box-shadow: 0 2px 3px #eee;
-moz-box-shadow:  0 2px 3px #eee;
box-shadow: 0 2px 3px #eee}
#bo_v_edit .bo_v_left li {line-height:40px;width:100%;float:none;border-top:1px solid #f1f1f1;font-size:12px !important;text-align:left;padding:0 10px;position:relative}
#bo_v_edit .bo_v_left li button{width:100%;font-size:12px !important;text-align:left;color:#6b757c !important;height:40px}
#bo_v_edit .bo_v_left li i{position:absolute;top:0;right:10px;line-height:40px;font-size:14px !important;;color:#92a1af}
#bo_v_edit .bo_v_left li:hover{background:#f8f8f8}
#bo_v_edit .bo_v_left li a {color:#6b757c;font-size:12px !important}.bo_notice td {background:#f5f6fa}

#bo_v_file {margin:0 }
#bo_v_file h2  {position:absolute;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;padding:0;list-style:none}
#bo_v_file li {padding: 10px 10px 10px 60px;border: 1px solid #e8e8e8;background:#fff;color:#aaa;margin: 0 0 10px;border-radius:5px;position:relative;
-webkit-box-shadow: 0 0 5px  #e2e4f1;
-moz-box-shadow: 0 0 5px #e2e4f1;
box-shadow: 1px 2px 8px #e2e4f1
}
#bo_v_file li:hover{border:1px solid #4383fa}
#bo_v_file li i{position:absolute;top:50%;left:10px;font-size:20px;color:#aaa;width:40px;line-height:40px;text-align:center;margin-top:-20px}
#bo_v_file a {display:block;color:#4383fd;text-decoration:none;margin:0 0 3px}
#bo_v_file a strong{text-decoration:underline}
#bo_v_file  span {font-size:0.91em}

#bo_v_link {margin:0 }
#bo_v_link h2  {position:absolute;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_v_link ul {margin:0;padding:0;list-style:none}
#bo_v_link li {padding: 10px 10px 10px 60px;border: 1px solid #e8e8e8;background:#fff;color:#aaa;margin: 0 0 10px;border-radius:5px;position:relative;
-webkit-box-shadow: 0 0 5px  #e2e4f1;
-moz-box-shadow: 0 0 5px #e2e4f1;
box-shadow: 1px 2px 8px #e2e4f1}
#bo_v_link li:hover{border:1px solid #4383fa}
#bo_v_link li i{position:absolute;top:50%;left:10px;color:#aaa;font-size:20px;;width:40px;line-height:40px;text-align:center;margin-top:-20px}
#bo_v_link a {display:block;color:#4383fd;text-decoration:none;margin:0 0 3px}
#bo_v_link a strong{text-decoration:underline}
#bo_v_link span {font-size:0.91em}
.bo_v_link_cnt {font-size:0.92em}

#bo_v_top {margin:20px}
#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_top ul {margin:0;padding:0;list-style:none}
#bo_v_top ul:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top ul li{display:inline-block;}
.bo_v_left{float:left}
.bo_v_right{float:right}

#bo_v_bot {text-align:right;margin:20px 0}
#bo_v_bot a{vertical-align:top}

.bo_v_nb{margin:10px 0;border-top:1px solid #e8e8e8;text-align:left;position:relative;}
.bo_v_nb:after {display:block;visibility:hidden;clear:both;content:""}
.bo_v_nb li {border-bottom:1px solid #e8e8e8}
.bo_v_nb li a{display:block;padding:15px 0px;vertical-align:top;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
.bo_v_nb li i{color:#d1d7de;width:30px;text-align:center;}

#bo_v_atc {padding:0 0 0 0;border:0px solid #333; width:100%}
#bo_v_atc:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_atc_title {margin:0;padding:0;height:0;overflow:hidden}

#bo_v_img {border:0px solid #333;text-align:center;margin:0 auto;}
#bo_v_img:after {display:block;}

#bo_v_img img {margin-bottom:0px;height:auto; margin-top:0;}

/*#bo_v_con {min-height:200px;margin-bottom:20px;width:100%;font-size:1.250em;line-height:1.7em;word-break:break-all;overflow:hidden}
#bo_v_con a {color:#000;text-decoration:underline}
#bo_v_con img {max-width:100%;height:auto}*/

#bo_v_con {border:0px solid #333;margin:10px auto 30px;width:100%;max-width:800px;padding:15px;line-height:1.8em;font-size:1.4em;min-height:200px;}
#bo_v_con a {color:#000;text-decoration:underline}
#bo_v_con img {max-width:100%;height:auto}

#bo_v_act {margin-bottom:30px;text-align:center;float:right;}
#bo_v_act .bo_v_act_gng {position:relative}
#bo_v_act .btn {margin-right:5px;vertical-align:middle;border-radius:3px}

#bo_v_act_good, #bo_v_act_nogood {display:none;position:absolute;top:30px;left:0;padding:10px 0;width:165px;background:#ff3061;color:#fff;text-align:center}
#bo_v_act .bo_v_good{ color: #6d6d6d; border: 1px solid #d9d9d9;background:#fff;padding:0 20px;line-height:36px;display:inline-block;border-radius:3px}
#bo_v_act a.bo_v_good:hover{color:#ff0000;border-color:#ff0000}
#bo_v_act .bo_v_nogood{color: #6d6d6d; border: 1px solid #d9d9d9;background:#fff;padding:0 20px;line-height:36px;display:inline-block;border-radius:3px}
#bo_v_act a.bo_v_nogood:hover{background:#f3f3f3}
#bo_v_act .bo_v_good i,#bo_v_act .bo_v_nogood i{font-size:18px;}

#bo_v_share{float:left;position:relative;margin:0 0 20px;}
#bo_v_share:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_share .btn{border-radius:3px;margin-left:3px;height:36px;line-height:34px;padding: 0 15px;}
#bo_v_share .btn_scrap{display:inline-block;line-height:34px;border:1px solid #d9d9d9;background:#fff;float:left;padding:0 15px;border-radius:3px;color:#5f5f5f}
#bo_v_share .btn_scrap:hover{background:#f3f3f3}
#bo_v_share .btn i,#bo_v_share .btn_scrap i{color:#528eff }
.btn_share{display:none;}
.bo_v_snswr{position:relative;float:right}

#bo_v_sns {display:none;position:fixed;top:0;left:0;width:100%;height:100%;padding:0;list-style:none;z-index:99;zoom:1}
#bo_v_sns .bg{position:absolute;top:0;left:0;background:#eee;background:rgba(0,0,0,0.2);width:100%;height:100%}
.sns_wr{background:#fff;position:fixed;top:50%;left:50%;margin-left:-125px;margin-top:-125px;width:250px;}
#bo_v_sns h3{background:#f7f8f9;padding:10px 20px;line-height:30px;}
#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_sns ul{padding:10px}
#bo_v_sns li {text-align:center;;margin:5px}
#bo_v_sns li a{height:40px;padding:10px 0;border-radius:3px}
#bo_v_sns li .sns_f{display:block;background:#415b92}
#bo_v_sns li .sns_f:hover{background:#3a69b6}
#bo_v_sns li .sns_t{display:block;background:#35b3dc}
#bo_v_sns li .sns_t:hover{background:#1ec7fe}
#bo_v_sns li .sns_g{display:block;background:#d5503a}
#bo_v_sns li .sns_g:hover{background:#f4482c}
#bo_v_sns li .sns_k{display:block;background:#fbe300}
#bo_v_sns li img{vertical-align:top}
#bo_v_sns .btn_close{background:none;position:absolute;top:0;right:0;height:50px;width:50px;border:0;color:#777;font-size:15px}




/*모바일화면에서 보이는 로고이미지 사이즈/////////////////////////////////////////////////////////////////////////////////////////////*/
@media (max-width: 969px){
    .bo_v_tit{font-size:1.5em}
#bo_v_img img {width:100%;height:auto;}
#bo_v_info {width:100%;position:relative;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;text-align:c;color:#b5b5b5;line-height:24px;padding:10px 0;margin:0 auto 0;border:0px solid #333;}
}

/* 게시판 댓글 */

#bo_vc {}
#bo_vc h2 {border-bottom:1px solid #d6d6d6;margin:10px 0}
#bo_vc h3 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
.cmt_btn{text-align:left ;border:0;font-weight:bold;font-size:1.167em;padding:0  0 10px ;border:0;border-bottom:2px solid #5f82e7;background:none;}
.cmt_btn span{display:inline-block;background:#5f82e7;font-size:11px;color:#fff;font-weight:normal;padding:0 7px ;border-radius:30px;line-height:21px}
#bo_vc article {position:relative;margin:20px 0;padding-left:60px;}
#bo_vc header {line-height: 24px;background:#fff;padding:20px 20px 10px}
#bo_vc header:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc .profile_img{display:none}
#bo_vc .sv_member{color:#528eff}
#bo_vc .comment_profile_img{position:absolute;top:0;left:0;display: inline-block;padding-left: 10px;}
#bo_vc .comment_profile_img img, #bo_vc .profile_img img{border-radius:50%}
#bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold}
.bo_vc_hdinfo {position:relative;float:right;display:inline-block;color:#777;padding-left:10px}
.bo_vc_hdinfo:before { content: ''; position: absolute;left: 0; top: 10px;width: 4px;height: 4px;background: #ff90cc;border-radius: 2px; }
#bo_vc h1 {width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_vc .cmt_contents {background:#fff;line-height:1.8em}
#bo_vc .cmt_contents  p{padding:0 20px 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:25px  0 !important;text-align:center;color:#aaa}
#bo_vc #bo_vc_winfo {float:left}
#bo_vc footer:after {display:block;visibility:hidden;clear:both;content:""}

.bo_vc_act {border-top:1px solid #f2f2f2;padding:10px ;zoom:1}
.bo_vc_act:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_act li {display:inline-block;float:right;;margin:0 2px}
.bo_vc_act li a{color:#3497d9;text-decoration:underline;padding:0 6px}
.bo_vc_act li i{color:#aaa;font-size:15px;}
.bo_vc_act li a:hover i {color:#528eff}
.bo_vc_act .btn_rpl {float:left}

#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}
#wr_secret{}
.bo_vc_w_info{margin:5px 0}
.bo_vc_w_info:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w_info .frm_input{float:left;;width:49.5%;margin: 0 0 5px 0}
.bo_vc_w_info #wr_password{float:right;}
.bo_vc_w_info #captcha{;display:block;clear:both}
.bo_vc_w .btn_confirm{margin:10px 0;clear:both;text-align:right}
.bo_vc_w .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w .btn_submit{float:right;}
.bo_vc_w_wr:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w  .bo_vc_secret{float:left;display:block;}

#bo_vc_send_sns{display:block;float:left}
#bo_vc_sns {display: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;;padding: 10px 0 10px 10px}
#bo_vc_sns .sns_li_t{border-radius:3px;background:#00aced;height:40px;;padding: 10px 0 10px 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 }

@media (max-width: 639px){
    #bo_vc article{padding-left:0;margin:25px 0 }
    #bo_vc .comment_profile_img{left:10px;top:-20px}
}



.none{display:none;}
.mo_view {display: none;}

/*글쓰기*/
#bo_w{margin:20px 0}
#bo_w .bo_w_select select{border:1px solid #3497d9;background:#fff;width:100%}
#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;background:#eee;text-align:center}
#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;background:#eee;text-align:center}
#bo_w .bo_w_flie .frm_file{padding-left:50px;}
#bo_w .bo_w_flie .file_wr{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:5px 0 0 }
#bo_w .write_div{text-align:left;}



/*글쓰기*/
.bo_w_select select{border:1px solid #3497d9;background:#fff;width:100%}
.bo_w_link label{position:absolute;top:1px;left:1px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;background:#eee;text-align:center}
.bo_w_link .frm_input{padding-left:50px}
.bo_w_flie .lb_icon{position:absolute;top:0px;left:0px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;background:#eee;text-align:center}
.bo_w_flie .frm_file{padding-left:50px;}
.bo_w_flie .file_wr{border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;margin:0}
.bo_w_flie .frm_input{margin:5px 0 0 }
.write_div{text-align:left;}




.w_tables {background:#FFF;width:100%; border-top:0px solid #eee; }
.w_tables td {}
.w_tables .thead {width:10%; font-weight: bold; font-size: 14px; padding-left: 0px;padding:5px; border-bottom: 1px solid #eee;}
.w_tables .thead2 {text-align:left;font-size:14px;padding:15px; border-bottom: 1px solid #eee;}
.w_tables .cont_td {padding: 10px 10px 10px 0px;text-align:center;}
.w_tables .thead2 select{border:1px solid #3497d9;background:#fff;} 

.title {color:#FF555F;background:#FFF;padding:10px;font-weight:900;text-decoration:none;font-size:1.2em;border-radius:0px}


.cke_sc {display: none;}
.w_inputs {box-shadow: none; background-color: #f3f3f3; border: 0px; padding-left: 10px;}

.yellow {background:#ffffcc;}
.gray {background:#ff555f;}
.price {color:#ff555f;font-weight:900;}


@media (max-width: 768px){
    .pc_view {display: none;}
    .mo_view {display: block;}

#bo_v {margin-bottom:20px;box-sizing:border-box;width:100%;height:auto;margin:30px auto;}

.w_tables .thead {width:18%; font-weight: bold; font-size: 14px; padding-left: 0px;padding:5px; border-bottom: 1px solid #eee;}
}

/*이주연 추가//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#menu_part {display:none;} /* 기존 메뉴 숨김 */
#main_part {width:100%;margin:0 auto;border:0px solid #333;text-align:center;}
#add_part {width:100%;margin:0 auto;border:0px solid #333;text-align:center;}
#tel_part {position:absolute;border:0px solid #333;text-align:left;}
/*#tel_part img{margin:0 0 0 0px;border-radius:10px 10px 10px 10px;width:400px;height:125px;box-shadow: 0px 0px 10px rgba(0,0,0,0.1);}*/


@media (max-width: 899px) { 
#main_part {width:100%;margin:0 auto;border:0px solid #333;text-align:center;}
#main_part img{width:100%;height:auto;margin:0 0 0 0;border-radius:0px;}
#add_part {width:100%;margin:0 auto;border:0px solid #333;text-align:center;} 
#add_part img{width:100%;max-width:100%;height:auto;}
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/




.visit {
margin:0 auto;
width:100%;
padding:20px;
background:#ffdf2b;
color:#333333;
font-size:20px;
font-weight:bold;
text-align:center;
border-radius:20px 20px 0 0;
width:100%;
}

.osinun {
margin:10px auto;
width:90%;
max-width:800px;
padding:20px;
background:#ffdf2b;
color:#333333;
font-size:20px;
font-weight:bold;
text-align:center;
border-radius:20px;
}

.guansim {
margin:10px auto;
width:90%;
padding:30px;
background:#abc600;
color:#333333;
font-size:20px;
font-weight:bold;
text-align:center;
border-radius:20px;
cursor:pointer;
}


.campaign0 {
position:fixed;
bottom:0;
width:100%;
height:80px;
margin:0px auto;
padding:16px;
background:#ffdf2b;
color:
font-size:20px;
font-weight:bold;
text-align:center;
border-radius:10px 10px 0 0;
border-top:1px solid #333;
z-index:1;
}



.campaign2 {
margin:10px auto;
width:90%;
padding:20px;
background:#00c73c;
color:#ffffff;
font-size:20px;
font-weight:bold;
text-align:center;
border-radius:20px;
}




























 .tgl {
            display: none;
        }

        .tgl,
        .tgl:after,
        .tgl:before,
        .tgl *,
        .tgl *:after,
        .tgl *:before,
        .tgl+.tgl-btn {
            box-sizing: border-box;
        }

        .tgl::-moz-selection,
        .tgl:after::-moz-selection,
        .tgl:before::-moz-selection,
        .tgl *::-moz-selection,
        .tgl *:after::-moz-selection,
        .tgl *:before::-moz-selection,
        .tgl+.tgl-btn::-moz-selection {
            background: none;
        }

        .tgl::selection,
        .tgl:after::selection,
        .tgl:before::selection,
        .tgl *::selection,
        .tgl *:after::selection,
        .tgl *:before::selection,
        .tgl+.tgl-btn::selection {
            background: none;
        }

        .tgl+.tgl-btn {
            outline: 0;
            display: inline-block;
            width: 50px; /* 전체 가로사이즈 */
            height: 25px; /* 전체 세로사이즈 */
            position: relative;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .tgl+.tgl-btn:after,
        .tgl+.tgl-btn:before {
            position: relative;
            display: block;
            content: "";
            width: 50%;
            height: 100%;
        }

        .tgl+.tgl-btn:after {
            left: 0;
        }

        .tgl+.tgl-btn:before {
            display: none;
        }

        .tgl:checked+.tgl-btn:after {
            left: 50%;
        }

        .tgl-ios+.tgl-btn {
            background: #ccc; /* 체크전 백그라운드 컬러 */
            border-radius: 2em;
            padding: 2px;
            transition: all .4s ease;
            border: 1px solid #e8eae9;
        }

        .tgl-ios+.tgl-btn:after {
            border-radius: 2em;
            background: #fff; /* 버튼컬러 */
            transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
        }

        .tgl-ios+.tgl-btn:hover:after {
            will-change: padding;
        }

        .tgl-ios+.tgl-btn:active {
            box-shadow: inset 0 0 0 2em #e8eae9;
        }

        .tgl-ios+.tgl-btn:active:after {
            padding-right: .8em;
        }

        .tgl-ios:checked+.tgl-btn {
            background: #0099ff; /* 체크후 백그라운드 컬러 */
        }

        .tgl-ios:checked+.tgl-btn:active {
            box-shadow: none;
        }

        .tgl-ios:checked+.tgl-btn:active:after {
            margin-left: -.8em;
        }
		
		
		
		
		
		/* ============================================
   본문 위치 조정 (최종 설정)
   ============================================ */
#bo_v {
    margin-top: 140px !important;  /* 로고바(88px) + 메뉴바(49px) + 여유 */
}

/* 반응형 */
@media (max-width: 768px) {
    #bo_v {
    margin-top: 100px !important;
    }
}

@media (max-width: 480px) {
    #bo_v {
    margin-top: 100px !important;
    }
}

/* ============================================================
   헤더 B: 1단 클래식
   ============================================================ */
.hdr-b {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 5000;
    background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}
.hdr-b-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; height: 64px;
}
.hdr-b .custom-logo { flex-shrink: 0; display: flex; align-items: center; height: 64px; margin-right: 0; }
.hdr-b .custom-logo img { height: 80px; width: auto; object-fit: contain; }
.hdr-b #customNav { display: flex; flex: 1; justify-content: center; }
.hdr-b #customNav .menu-link {
    font-size: 14px; font-weight: 600; padding: 0 16px;
    text-decoration: none; line-height: 64px; position: relative;
    transition: color 0.2s; white-space: nowrap;
}
.hdr-b #customNav .menu-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 2px; background: currentColor; transition: left 0.2s, right 0.2s;
}
.hdr-b #customNav .menu-link:hover::after,
.hdr-b #customNav .menu-link.active::after { left: 12px; right: 12px; }
.hdr-b-tel {
    flex-shrink: 0; font-size: 15px; font-weight: 800;
    display: flex; align-items: center; gap: 7px; text-decoration: none; white-space: nowrap;
}
.hdr-b ~ #bo_v { margin-top: 64px !important; }

/* ============================================================
   헤더 C: 센터 심플
   ============================================================ */
.hdr-c {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 5000;
    box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}
.hdr-c-top {
    max-width: 1200px; margin: 0 auto; padding: 12px 24px 10px;
    display: flex; justify-content: center; align-items: center; position: relative;
}
.hdr-c .custom-logo { display: flex; align-items: center; }
.hdr-c .custom-logo img { height: 80px; width: auto; object-fit: contain; }
.hdr-c-tel {
    position: absolute; right: 24px; font-size: 13px; font-weight: 700;
    text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.hdr-c #customNav {
    display: flex; justify-content: center;
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.hdr-c #customNav .menu-link {
    font-size: 13px; font-weight: 600; padding: 10px 18px;
    text-decoration: none; position: relative; transition: color 0.2s; white-space: nowrap;
}
.hdr-c #customNav .menu-link::after {
    content: ''; position: absolute; bottom: 0;
    left: 50%; right: 50%; height: 2px; background: currentColor;
    transition: left 0.25s, right 0.25s;
}
.hdr-c #customNav .menu-link:hover::after,
.hdr-c #customNav .menu-link.active::after { left: 14px; right: 14px; }

/* ============================================================
   헤더 F: 미니멀 싱글라인 (글라스모피즘)
   ============================================================ */
.hdr-f {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 5000;
    background: rgba(255,255,255,0.94); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.hdr-f-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; height: 70px;
}
.hdr-f .hdr-f-logo {
    display: flex; align-items: center; flex-shrink: 0; height: 70px;
    padding-right: 24px; margin-right: 4px;
    border-right: 1px solid #e8e8e8;
}
.hdr-f .hdr-f-logo img { height: 80px; width: auto; object-fit: contain; }
.hdr-f #customNav { display: flex; flex: 1; justify-content: center; }
.hdr-f #customNav .menu-link {
    color: #555; font-size: 14px; font-weight: 500;
    padding: 0 20px; text-decoration: none; line-height: 70px;
    transition: color 0.2s; white-space: nowrap;
}
.hdr-f #customNav .menu-link:hover,
.hdr-f #customNav .menu-link.active { color: #111; font-weight: 600; }
.hdr-f-tel {
    flex-shrink: 0; font-size: 13px; font-weight: 800;
    margin-left: 24px; display: flex; align-items: center; gap: 7px;
    text-decoration: none; white-space: nowrap;
}
.hdr-f ~ #bo_v { margin-top: 70px !important; }

/* ============================================================
   공통 모바일 (768px 이하)
   ============================================================ */
@media (max-width: 768px) {
    /* B 모바일 */
    .hdr-b #customNav {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        flex-direction: column; background: #fff;
        box-shadow: 0 6px 16px rgba(0,0,0,0.1); padding: 8px 0; z-index: 100;
    }
    .hdr-b #customNav.active { display: flex; }
    .hdr-b #customNav .menu-link { line-height: 1; padding: 13px 20px; border-bottom: 1px solid #f5f5f5; }
    .hdr-b .hdr-b-tel { display: none; }

    /* C 모바일 */
    .hdr-c #customNav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: #fff;
        box-shadow: 0 6px 16px rgba(0,0,0,0.1); padding: 8px 0; z-index: 100;
    }
    .hdr-c #customNav.active { display: flex; }
    .hdr-c #customNav .menu-link { padding: 12px 20px; border-bottom: 1px solid #f5f5f5; }
    .hdr-c .hdr-c-tel { display: none; }

    /* F 모바일 */
    .hdr-f #customNav {
        display: none; position: absolute; top: 52px; left: 0; right: 0;
        flex-direction: column; background: rgba(255,255,255,0.97);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1); padding: 8px 0; z-index: 100;
    }
    .hdr-f #customNav.active { display: flex; }
    .hdr-f #customNav .menu-link { line-height: 1; padding: 13px 20px; border-bottom: 1px solid #f5f5f5; }
    .hdr-f .hdr-f-tel { display: none; }

    /* B/C/F 모바일 메뉴버튼 표시 */
    .hdr-b .mobile-menu-btn,
    .hdr-c .mobile-menu-btn,
    .hdr-f .mobile-menu-btn { display: flex !important; align-items: center; justify-content: center; }
}
@media (min-width: 769px) {
    .hdr-b .mobile-menu-btn,
    .hdr-c .mobile-menu-btn,
    .hdr-f .mobile-menu-btn { display: none !important; }
}


/* ============================================================
   헤더 G: 로고 좌측 + 메뉴 우측 1단 (Image 1 스타일)
   ============================================================ */
.hdr-g {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 5000;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hdr-g-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; height: 70px;
}
/* 로고 */
.hdr-g .hdr-g-logo {
    flex-shrink: 0; display: flex; align-items: center; height: 70px;
    margin-right: auto; /* 로고 좌측, 메뉴 우측으로 밀기 */
}
.hdr-g .hdr-g-logo img { height: 80px; width: auto; object-fit: contain; }
.hdr-g .hdr-g-logo .logo-text { font-size: 16px; font-weight: 800; }
/* 메뉴 */
.hdr-g #customNav { display: flex; align-items: center; }
.hdr-g #customNav .menu-link {
    font-size: 15px; font-weight: 600;
    padding: 0 22px; text-decoration: none; line-height: 70px;
    position: relative; transition: color 0.2s; white-space: nowrap;
}
.hdr-g #customNav .menu-link::after {
    content: ''; position: absolute; bottom: 0;
    left: 50%; right: 50%; height: 2px;
    background: currentColor; transition: left 0.2s, right 0.2s;
}
.hdr-g #customNav .menu-link:hover::after,
.hdr-g #customNav .menu-link.active::after { left: 14px; right: 14px; }
/* 본문 여백 */
.hdr-g ~ #bo_v { margin-top: 70px !important; }

/* ============================================================
   헤더 H: 로고 중앙 상단 + 메뉴바 하단 2단 (Image 2 스타일)
   ============================================================ */
.hdr-h {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 5000;
}
/* 로고 바 */
.hdr-h-logo-bar {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hdr-h-logo-inner {
    max-width: 1400px; margin: 0 auto; padding: 8px 40px;
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hdr-h .custom-logo { display: flex; align-items: center; }
.hdr-h .custom-logo img { height: 80px; width: auto; object-fit: contain; }
.hdr-h .custom-logo .logo-text { font-size: 17px; font-weight: 800; }
/* 모바일 햄버거는 우측 절대 배치 */
/* 모바일 햄버거는 우측 절대 배치 */
.hdr-h .mobile-menu-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 10;
}
/* 메뉴 바 */
.hdr-h #customNav {
    width: 100%;
    display: flex; justify-content: center; align-items: center;
}
.hdr-h #customNav .menu-link {
    color: #fff; font-size: 15px; font-weight: 500;
    padding: 0 24px; text-decoration: none; line-height: 58px;
    position: relative; transition: background 0.2s; white-space: nowrap;
}
.hdr-h #customNav .menu-link:hover,
.hdr-h #customNav .menu-link.active {
    background: rgba(0,0,0,0.12);
}
/* 활성 메뉴 하단 흰 밑줄 */
.hdr-h #customNav .menu-link::after {
    content: ''; position: absolute; bottom: 0;
    left: 50%; right: 50%; height: 2px;
    background: rgba(255,255,255,0.7); transition: left 0.2s, right 0.2s;
}
.hdr-h #customNav .menu-link.active::after { left: 16px; right: 16px; }
/* 본문 여백: 로고바(116px) + 메뉴바(58px) = 174px */
.hdr-h ~ #bo_v { margin-top: 154px !important; }
.hdr-h ~ #bo_v #bo_v_info:not(.none) { display: block !important; }
.hdr-h ~ #bo_v #bo_v_info.none { display: none !important; }

/* ============================================================
   G/H 모바일 (768px 이하)
   ============================================================ */
@media (max-width: 768px) {
    /* G 모바일 */
    .hdr-g #customNav {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        flex-direction: column; background: #fff;
        box-shadow: 0 6px 16px rgba(0,0,0,0.1); padding: 8px 0; z-index: 100;
    }
    .hdr-g #customNav.active { display: flex; }
    .hdr-g #customNav .menu-link {
        line-height: 1; padding: 14px 24px;
        border-bottom: 1px solid #f5f5f5; width: 100%; box-sizing: border-box;
    }
    .hdr-g #customNav .menu-link::after { display: none; }
    .hdr-g .mobile-menu-btn { display: flex !important; align-items: center; justify-content: center; }

    /* H 모바일 */
    .hdr-h #customNav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; z-index: 100;
        max-width: none; padding: 0;
    }
	.hdr-h .custom-logo img { height: 60px; }
    .hdr-h #customNav.active { display: flex; }
    .hdr-h #customNav .menu-link {
        line-height: 1; padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; box-sizing: border-box;
    }
    .hdr-h #customNav .menu-link::after { display: none; }
    .hdr-h .mobile-menu-btn { display: flex !important; align-items: center; justify-content: center; }
    .hdr-h ~ #bo_v { margin-top: 70px !important; }
}
@media (min-width: 769px) {
    .hdr-g .mobile-menu-btn,
    .hdr-h .mobile-menu-btn { display: none !important; }
}


/* ============================================================
   헤더 내 상담번호 배치 스타일 (tel_in_header = 'header')
   ============================================================ */

/* B타입 헤더 전화 */
.hdr-b .hdr-b-tel {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    padding: 8px 18px; border-radius: 30px; border: 2px solid currentColor;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.hdr-b .hdr-b-tel:hover { opacity: 0.8; }

/* C타입 헤더 전화 */
.hdr-c .hdr-c-tel {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    white-space: nowrap;
}

/* F타입 헤더 전화 */
.hdr-f .hdr-f-tel {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    white-space: nowrap;
}

/* G타입 헤더 전화 - 캡슐 버튼 */
.hdr-g .hdr-g-tel {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 800; text-decoration: none;
    padding: 10px 24px; border-radius: 30px;
    white-space: nowrap; flex-shrink: 0;
    margin-left: 20px;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.hdr-g .hdr-g-tel:hover { opacity: 0.88; transform: translateY(-1px); }

/* H타입 헤더 전화 - 로고바 우측 */
.hdr-h .hdr-h-tel {
    position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 16px; font-weight: 800; text-decoration: none;
    white-space: nowrap;
}
.hdr-h .hdr-h-tel:hover { opacity: 0.75; }

/* 모바일에서 헤더 내 전화번호 숨김 */
@media (max-width: 768px) {
    .hdr-b .hdr-b-tel,
    .hdr-c .hdr-c-tel,
    .hdr-f .hdr-f-tel,
    .hdr-g .hdr-g-tel,
    .hdr-h .hdr-h-tel { display: none !important; }
}

/* 부정클릭방지 인라인 배지 */
.fraud-badge-inline {
    display: inline-flex; align-items: center; gap: 4px;
    background: transparent; color: #999;
    font-size: 11px; font-weight: 500;
    padding: 3px 9px; border-radius: 20px;
    border: 0.5px solid #999;
    margin-left: 10px; vertical-align: middle;
    letter-spacing: 0.3px; white-space: nowrap;
}
.fraud-badge-inline svg { width: 12px; height: 12px; fill: #999; flex-shrink: 0; }
@media print { .fraud-badge-inline { display: none !important; } }


/* ========================================
   view.skin.php에서 이동된 스타일
   ======================================== */
        .divs9  { text-align: center; margin:50px auto; border:0px solid #333;width:100%;}
        .divs  {display:inline-block;text-align: center; margin:0 auto; border:0px solid #333;max-width:600px;}
        .divs  img {border:0px solid #333;width:100%;max-width:600px;border-radius:10px;}
        .reveal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; }
        .video-wrapper { width: 100%; z-index: 999; }
        .video-wrapper_div2 { width: 80%; margin: 0px auto; }
        .video-wrapper_div { position: relative; height: 0; padding-bottom: 56.25%; }
        .video-wrapper iframe { border: 0px; box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.2); z-index: 99; }
        .reveal .video-popup-closer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 99; }
        @media all and (max-width: 768px) {
            .divs9  { display:inline-block;text-align: center; margin:0 auto; border:0px solid #333;width:100%;}
            .video-wrapper_div2 { width: 100%; margin-top: 200px; z-index: 999; }
            .mov_ico {position: absolute; bottom:65px; right:19px; display:none;}
            .mov_ico img {width: 30px;}
            .divs  img{ display:block; margin: 0 auto; }
        }
.video-popup-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 25%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
}
.video-popup-close-btn:hover { background: rgba(0,0,0,0.9); }

.vr-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 20px auto;
}
.vr-card {
    background: #fff;
    border: 1px solid #e0e8f4;
    border-radius: 14px;
    padding: 22px 14px 18px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(24,95,165,0.07);
}
.vr-card:hover {
    box-shadow: 0 8px 28px rgba(24,95,165,0.18);
    transform: translateY(-4px);
}
.vr-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E6F1FB;
    color: #185FA5;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.vr-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E6F1FB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.vr-card-icon svg { width: 26px; height: 26px; fill: #185FA5; }
.vr-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.vr-card-cta {
    margin-top: 14px;
    padding: 10px 0;
    background: #185FA5;
    color: #fff;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}
.vr-card:hover .vr-card-cta { background: #0C447C; }

.content-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.content-section.anim-visible { opacity: 1; transform: translateY(0); }
.content-section.anim-visible .section-title {
    animation: sectionTitleSlide 0.5s ease 0.2s both;
}
@keyframes sectionTitleSlide {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
#bo_v_atc > #main_part, #bo_v_atc > #bo_v_img { opacity: 1 !important; transform: none !important; }

@keyframes slideUpBounce {
    0%   { transform: translateY(120px); opacity: 0; }
    60%  { transform: translateY(-10px); opacity: 1; }
    80%  { transform: translateY(4px);  opacity: 1; }
    100% { transform: translateY(0);    opacity: 1; }
}
@keyframes breathe {
    0%,  100% { transform: scale(1);    box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    50%        { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
}
.phone-float-btn {
    position: fixed; bottom: 210px; right: 15px;
    display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px;
    height: 58px; padding: 0 20px; border-radius: 34px; border: none; cursor: pointer; z-index: 9999;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    background: var(--brand-color, #1a2a4a);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: slideUpBounce 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.3s both, breathe 3s ease-in-out 1.4s infinite;
}
.phone-float-btn::before { content: ''; position: absolute; inset: 0; border-radius: 35px; background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%); opacity: 1; pointer-events: none; }
.phone-float-btn:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 12px 32px rgba(0,0,0,0.35); animation: none; }
.phone-float-btn:active { transform: translateY(-2px) scale(0.98); }
.phone-float-btn svg { width: 24px; height: 24px; fill: #fff; position: relative; z-index: 1; flex-shrink: 0; transition: transform 0.3s ease; }
@keyframes ring { 0%, 100% { transform: rotate(0deg); } 15%, 45% { transform: rotate(-14deg); } 30%, 60% { transform: rotate(14deg); } }
.phone-float-btn:hover svg { animation: ring 0.5s ease-in-out; }
.phone-number-text { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 0.8px; white-space: nowrap; position: relative; z-index: 1; display: block; }
.kakao-float-btn {
    position: fixed; bottom: 130px; right: 20px;
    width: 65px; height: 65px; border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(254,229,0,0.3); transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    background: linear-gradient(135deg, #FEE500 0%, #FFEB3B 100%); color: #000; z-index: 9999;
    animation: slideUpBounce 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.45s both;
}
.kakao-float-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,0.4); transform: translate(-50%,-50%); transition: width 0.5s, height 0.5s; }
.kakao-float-btn:hover::before { width: 100px; height: 100px; }
.kakao-float-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 6px 30px rgba(254,229,0,0.5); }
.kakao-float-btn svg { width: 32px; height: 32px; fill: #3C1E1E; position: relative; z-index: 1; }
@media (min-width: 1025px) {
    .phone-float-btn { min-width: 230px; height: 68px; padding: 0 32px; bottom: 460px; right: 25px; border-radius: 38px; }
    .phone-number-text { font-size: 19px; }
    .phone-float-btn svg { width: 30px; height: 30px; }
    .kakao-float-btn { width: 72px; height: 72px; bottom: 370px; right: 25px; }
    .kakao-float-btn svg { width: 36px; height: 36px; }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .phone-float-btn { min-width: 210px; height: 62px; padding: 0 28px; bottom: 440px; right: 20px; border-radius: 35px; }
    .phone-number-text { font-size: 17px; }
    .kakao-float-btn { width: 68px; height: 68px; bottom: 360px; right: 20px; }
}
@media (max-width: 768px) {
    .phone-float-btn { width: 62px; height: 62px; border-radius: 50%; padding: 0; gap: 0; bottom: 400px; right: 15px; }
    .phone-number-text { display: none; }
    .kakao-float-btn { width: 62px; height: 62px; bottom: 325px; right: 15px; }
}
@media (max-width: 480px) {
    .phone-float-btn { width: 58px; height: 58px; bottom: 400px; right: 12px; }
    .kakao-float-btn { width: 58px; height: 58px; bottom: 325px; right: 12px; }
}
@media print { .phone-float-btn, .kakao-float-btn { display: none !important; } }

.scroll-buttons { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 999999999; pointer-events: auto; }
.scroll-btn { width: 50px; height: 50px; background: #333; color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.3s ease; opacity: 0; visibility: hidden; }
.scroll-btn.show { opacity: 1; visibility: visible; }
.scroll-btn:hover { background: #555; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.scroll-btn svg { width: 24px; height: 24px; fill: currentColor; }
@media (max-width: 768px) { .scroll-buttons { right: 15px; bottom: 70px; } .scroll-btn { width: 45px; height: 45px; font-size: 18px; } }

.popup-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; margin: 0; padding: 0; background: rgba(0,0,0,0.7); z-index: 99999; display: none; opacity: 0; transition: opacity 0.3s ease; overflow: auto; pointer-events: none; }
.popup-overlay.active { display: flex; opacity: 1; pointer-events: auto; }
.popup-container { pointer-events: auto; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; margin: 0; padding: 0; }
.popup-box { position: relative; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.3); overflow: hidden; margin: 0; }
@keyframes popupSlideIn { 0% { transform: translateY(-50px) scale(0.9); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
.popup-image { width: 100%; height: auto; display: block; cursor: pointer; margin: 0; padding: 0; }
.popup-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #f8f9fa; border-top: 1px solid #e9ecef; }
.popup-checkbox-wrapper { display: flex; align-items: center; gap: 8px; }
.popup-checkbox { width: 18px; height: 18px; cursor: pointer; }
.popup-checkbox-label { font-size: 14px; color: #495057; cursor: pointer; user-select: none; white-space: nowrap; }
.popup-close-btn { background: #6c757d; color: #fff; border: none; padding: 8px 16px; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 600; transition: background 0.2s; white-space: nowrap; }
.popup-close-btn:hover { background: #5a6268; }
.popup-close-x { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(0,0,0,0.5); color: #fff; border: none; border-radius: 50%; cursor: pointer; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 9000; }
.popup-close-x:hover { background: rgba(0,0,0,0.7); transform: scale(1.1); }
.popup-overlay-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.9); color: #000; border: none; padding: 10px 20px; border-radius: 25px; cursor: pointer; font-size: 14px; font-weight: 600; transition: all 0.2s; z-index: 9001; }
.popup-overlay-close:hover { background: #fff; transform: scale(1.05); }
.popup-mobile-nav { display: none; position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); gap: 8px; z-index: 11; }
.popup-nav-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.popup-nav-dot.active { background: #fff; width: 30px; border-radius: 5px; }
.popup-arrow { display: none; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(0,0,0,0.5); color: #fff; border: none; border-radius: 50%; cursor: pointer; font-size: 20px; z-index: 11; transition: all 0.2s; }
.popup-arrow:hover { background: rgba(0,0,0,0.7); }
.popup-arrow-prev { left: 15px; }
.popup-arrow-next { right: 15px; }
@media (min-width: 769px) {
    .popup-container { padding: 20px; gap: 20px; flex-wrap: wrap; max-width: 1400px; margin: 0 auto; }
    .popup-box { flex: 0 1 calc(33.333% - 14px); min-width: 300px; max-width: 400px; border-radius: 12px; animation: popupSlideIn 0.4s cubic-bezier(0.34,1.56,0.64,1); }
    .popup-container[data-count="2"] .popup-box { flex: 0 1 calc(50% - 10px); }
    .popup-container[data-count="1"] .popup-box { flex: 0 1 100%; max-width: 350px; }
}
@media (max-width: 768px) {
    .popup-overlay { padding: 0; overflow: hidden; }
    .popup-container { padding: 0; gap: 0; margin: 0; }
    .popup-box { display: none; width: 100vw; max-width: 80%; height: 100vh; max-height: 85%; border-radius: 0; margin: 0; }
    .popup-box.mobile-active { display: flex; flex-direction: column; }
    .popup-image { flex: 1; max-height: calc(100vh - 80px); object-fit: contain; background: #000; }
    .popup-footer { flex: 0 0 auto; padding: 10px; }
    .popup-checkbox-label { font-size: 12px; }
    .popup-close-btn { padding: 6px 12px; font-size: 12px; }
    .popup-close-x { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 24px; }
    .popup-mobile-nav { display: flex; }
    .popup-arrow { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; font-size: 26px; }
    .popup-overlay-close { top: 10px; right: 10px; padding: 6px 12px; font-size: 11px; }
}
body.popup-open { overflow: hidden !important; position: fixed; width: 100%; height: 100%; }


/* ===================================================================
   전화상담 골드 버튼 물결 링 효과 (m-tel-gold)
   - box-shadow !important 충돌을 피하려 가상요소(::after)로 구현
   - 버튼은 모바일에서만 표시되므로 PC에서는 자동으로 안 보임
   =================================================================== */
.m-tel-gold::after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    border-radius: 999px;
    border: 2px solid rgba(242,193,78,0.75);
    z-index: -1;
    pointer-events: none;
    animation: mTelRing 1.6s ease-out infinite;
}
@keyframes mTelRing {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .m-tel-gold::after { animation: none; opacity: 0; }
}

/* ===================================================================
   하단 고정바 '대표상담' 칸 강조 (골드 배경 + 콩닥 펄스)
   - mtel-bbcell: 칸 배경/글자색
   - mtel-bbpulse: 아이콘+글자 묶음만 천천히 커졌다 작아짐
   =================================================================== */
.mtel-bbcell {
    background: #f2c14e !important;
    color: #3a2600 !important;
}
.mtel-bbcell td,
.mtel-bbcell .fa {
    color: #3a2600 !important;
}
.mtel-bbpulse {
    display: inline-table;
    transform-origin: center;
    animation: mtelBBpulse 1.3s ease-in-out infinite;
}
@keyframes mtelBBpulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
    .mtel-bbpulse { animation: none; }
}
