/* connect-h ltr */
@charset "utf-8";

:root {
    --vh: 1px; 
}

/* layout */
html{
    height: 100%;
    overscroll-behavior: none;   /* 꾹 눌러 당길 때 고무줄로 늘어나 보이는 현상 방지 */
}

body{
    position: static;    
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    overscroll-behavior: none; /* iOS에서 당겨서 생기는 빈 공간 방지 */
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word; /* 호환용 */
}

.bodywrap{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

nav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 83%;
	max-width:360px;
    height: 100%;    
    padding: 20px 0 20px 25px;
    border-radius: 0 40px 0 0;
    background:#fff; 
    transform: translateX(-120%);
    border: 2px solid #e5e5e5;
    box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.08), 0px -1px 0px 0px rgba(0, 0, 0, 0.05);
    box-sizing:border-box; 
    overflow: hidden;
    z-index: 5;
}


.navOpen nav{
    height: 100%;
    transform: translateX(0);
}

.nav-header{
    display: flex;
    justify-content: end;
    padding-bottom: 10px;
}

.nav-close{
    display: inline-flex;
    align-items: center;
    line-height: 1;
    padding: 17px;
    cursor: pointer;
}

.nav-close img{
    width:22px;
    height:22px;
}

.nav-bottom{
    height: calc(var(--vh, 1px) * 100 - 40px);
    padding-right: 25px;
    padding-bottom: 100px;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior-y: contain;   /* 목차 끝에서 당길 때 튕김/빈 공간 방지 */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.25) transparent;
}


.nav-bottom, #root > div[class^='Heading2']{
    scrollbar-width: thin;
    scrollbar-color: #EFF0F3 transparent;
}

.nav-bottom::-webkit-scrollbar, #root > div[class^='Heading2']::-webkit-scrollbar{
    width: 6px;
}

.nav-bottom::-webkit-scrollbar-track, #root > div[class^='Heading2']::-webkit-scrollbar-track{
    background: transparent;
}

.nav-bottom::-webkit-scrollbar-thumb, #root > div[class^='Heading2']::-webkit-scrollbar-thumb{
    background: #EFF0F3;
    border-radius: 10px;
}


.conWrap{
    position: relative; 
    width: 100%;
    overflow: hidden;
}

header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

header .wrap{
    position: relative; /* 검색 팝업 절대배치 기준 */
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    box-sizing: border-box;
}

.top-header{
    display: flex;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
}

.top-header .logo{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.top-header .logo img{
    display: block;    
    width: auto;
    height: 30px;
}

.sub .logo{
    display: none;
}

.mainWrap{
    position: relative;
}

.searchBox{
    margin-left: auto;
}

.sub .searchBox {
    display: none;
}


.searchWrap{
    position: relative;
    display: flex;
    width: auto;
    max-width: 700px;
    height: 50px;    
    gap: 10px;    
	border: none;
    border-radius: 25px;    
    box-shadow: none;
    box-sizing: border-box;
}

.searchWrap input {
    display: none;
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.searchWrap input::placeholder {
    color: #8F8F8F;
    text-overflow: ellipsis;
}

.searchWrap input:focus::placeholder {
  color: transparent;
}

.searchWrap .btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-close{
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding:0 5px 0 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-close img{
    width: 16px;
}

.searchWrap .btn-search img {
    width: 24px;
    height: auto;
    display: block;
}

.btn-search, .btn-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.12), 0 8px 15px rgba(0,0,0,.08);
    cursor: pointer;
}
.btn-search img, .btn-nav img{
    display: block;
    width: 24px;
    height: auto;
}

.recom-title{
    margin-bottom: 10px;
    font-weight: 700;
}

.recom-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;    
}

.recom-list a{
    display: inline-flex;
    align-items: center;
    padding: 6px 15px 8px;
    border: 1px solid #046EAE;
    border-radius: 12px;
    font-weight: 700;
    color: #046EAE;
    min-width: 0; max-width: 100%;
    /* [다국어 방어] 단어 단위 우선 → 안 들어가면 글자 단위. 앞 줄은 구형 웹뷰 폴백 */
    overflow-wrap: break-word;
    overflow-wrap: anywhere;
}


.searchBox.isPop{
    width:100%;
    position: relative;
    padding-top: 20px;
    margin-top: -20px;
    border-radius: 30px 30px 0 0;
    background-color: #fff;
    box-shadow: 1px -10px 20px -10px rgba(0, 0, 0, 0.1);

}

.searchBox.isPop .searchWrap{
    border: none;
    background-color: transparent;
}

.searchBox.isPop .searchWrap::after{
    content:"";
    position: absolute;
    left: 20px;
    bottom: 0;
    width: calc(100% - 40px);
    border-bottom: 1px solid #9A9A9A;
}

.searchBox.isPop .btn-close{
    display: flex;
}

.searchBox.isPop .btn-search{
    display: none;
}

.recomBox{
    display: none;
    position: absolute;
    width: 100%;
    min-height: 300px;
    padding: 30px 20px;
    border-radius: 0 0 30px 30px;
    background-color: #fff;
    z-index: 1;
}   

.searchBox.isPop .recomBox{
    display: block;
    box-shadow: 1px 10px 20px -10px rgba(0, 0, 0, 0.1);
}

.searchBox.isPop .recomBox.isHide{
    display: block;
    min-height: 0;
    height: 20px;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

.searchBox.isPop .recomBox.isHide > *{
    display: none;
}

/* 헤더 검색 팝업: 헤더 좌우 30px 여백 기준 전체 너비로 확장 */
.searchBox.otherSearch.isPop{
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    width: auto;
    margin-top: 0;
}

/* 추천 검색어 목록이 길어지면 내부 스크롤 */
.searchBox.otherSearch.isPop .recomBox:not(.isHide){
    max-height: calc(100vh - 130px);
    max-height: calc(100dvh - 130px); /* 모바일 주소창 대응 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.autocomplete-items{
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    max-height: 300px;
    padding: 10px 30px 20px;
    border-radius: 0 0 30px 30px;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 1px 10px 20px -10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.autocomplete-items.isHide{
    display: none;
}

.autocomplete-items div{
    padding: 10px 0;
    cursor:pointer;
    overflow-wrap: break-word;
}

/* 마우스 환경에서만 hover 적용 (터치는 스크롤 후에도 상태가 남음) */
@media (hover: hover) and (pointer: fine) {
    .autocomplete-items div:hover{
        background-color: #F4F4F4;
    }
}

.autocomplete-items strong{
    font-weight: 600;
    color: #068DE0;
}

.autocomplete-items .autocomplete-active{
    background-color:#F4F4F4;
}

.autocomplete-items::-webkit-scrollbar{
    width: 10px; 
    background: #ccc;
}


.autocomplete-items::-webkit-scrollbar-track{
    background-color: #f1f1f1;
    border-radius: 30px;
}

.autocomplete-items::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 10px;
}

.autocomplete-items::-webkit-scrollbar-thumb:hover{
    background: rgba(0,0,0,0.05);
}


.breadcrumb{
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 0;
}

.breadcrumb ol{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
}

.breadcrumb li{
    margin: 0;
}

.breadcrumb li:first-child{
    flex-shrink: 0;
    margin-right: 10px;
}

.breadcrumb li:not(:first-child){
    margin-right: 10px;
    display: flex;
    align-items: center;
    min-width: 0;           /* 공간 있으면 내용 크기 유지, 넘칠 때만 줄어듦 */
    overflow: hidden;
}

/* 링크/현재페이지: 공간 있으면 전체 표시, 좁으면 앞글자+…로 축약(클릭 유지) */
.breadcrumb li:not(:first-child) a,
.breadcrumb li:not(:first-child) span{
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb li::before{
    content: ">";
    display: inline-flex;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    align-items: center;
    font-family: sans-serif;
}

.breadcrumb li:first-child::before{
    display: none;
}

.breadcrumb span{
    font-weight: 700;
}


section {
    position: relative;
    width: 100%;
    min-height: 0;
    height: auto;
    padding-top: 0;
    box-sizing: border-box;
}


#wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px 35px 0 0;
    background: #fff;
    overflow: hidden;
    box-shadow: inset 2px 0 0 rgba(0,0,0,.10), 
                inset -2px 0 0 rgba(0,0,0,.10), 
                inset 0 2px 0 rgba(0,0,0,.08), 
                0px 0px 15px 0px rgba(0, 0, 0, 0.1), 
                0px -1px 0px 0px rgba(0, 0, 0, 0.08);
}


#root {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* 본문 텍스트 선택/드래그 방지 */
#root, #root * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* 본문 이미지 드래그 방지 */
#root img {
    -webkit-user-drag: none;
    pointer-events: auto;
}



.swipe_inner_wrap {
    width: 100%;
    min-height: 0;
    padding: 40px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}


footer {
    width: 100%;
    margin: 0 auto;
    background-color: #09141E;
    z-index: 1;
}

.footer-wrap {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 17px 30px;
    box-sizing: border-box;
}

.footer-logo {
    height: 26px;
    margin-right: 15px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-wrap p {
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
}


@media screen and (min-width: 1024px){
    .bodywrap{
        display: flex;
        gap: 40px;
        height: calc(var(--vh, 1px) * 100);
        overflow: hidden;
    }

    .navOpen nav{
        position: relative;
        width: 360px;
        flex: 0 0 360px;
    }


    header .wrap{
        max-width: 1200px;
        padding: 20px;
        margin: 0 auto;
    }

    .sub.navOpen .top-header {
        display: none;
    }

    .searchBox{
        width: 80%;
    }

    .searchWrap{
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        border: 1px solid #CCCCCC;
        background-color: #F9F9F9;
    }

    .searchWrap input{
        display: block;
    } 

    .btn-search{
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    /* 헤더 검색 팝업: 절대배치 해제 후 기존 흐름 배치로 복귀 */
    .searchBox.otherSearch.isPop{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: calc(100% - 60px);
        margin-top: -20px;
    }

    .searchBox.otherSearch.isPop .recomBox:not(.isHide){
        max-height: none;
        overflow-y: visible;
    }

    .searchBox.isPop .searchWrap{
        padding: 0 30px;
    }

    .searchBox.isPop .searchWrap::after{
        left: 30px;
        width: calc(100% - 60px);
    }

    .recomBox{
        padding: 30px;
    }

    .navOpen .btn-nav{ 
        display: none;
    }

    .breadcrumb ol{ 
        font-size: 18px; 
    }

    section {
        height: auto;
    }

    .swipe_inner_wrap {
        min-height: 0;
        padding: 60px 40px;
    }

    .footer-logo {
        margin-right: 25px;
    }
}



.toc-sect{
    display: none;
}

.toc-chap.on + .toc-sect{
    display: block;
}

.toc-sect > li.on > .toc-sect{
    display: block;
}

.nav-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    gap:10px;
}

.nav-item > a{
    flex:1;
    display:block;
    min-width:0;
    text-decoration:none;
}


.nav-item > button{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    cursor:pointer;
}

.nav-item > button img{
    display:block;
    width:20px;
    height:20px;
    transform-origin:center;
    transform: rotate(-90deg);
}

.toc-chap .nav-item > a{
    padding: 10px 15px 10px 0;
    box-sizing: border-box;
}

.toc-chap.on .nav-item > button img{
    transform: rotate(0deg);
}

.toc-chap + .toc-sect > li > .nav-item > a{
    padding: 10px 2px 10px 20px;
    font-weight: 700;
    box-sizing: border-box;
}

.toc-chap + .toc-sect > li.on > .nav-item > button img{
    transform: rotate(0deg);
}

.toc-sect .toc-sect{
    padding-bottom: 10px;
}

.toc-sect .toc-sect > li > .nav-item > a{
    padding: 10px 10px 10px 40px;
    box-sizing: border-box;
}

.toc-sect > li:not(:has(ul.toc-sect)) > .nav-item > button{
    visibility: hidden;   /* 꺽쇠 숨기되 자리(24px+gap) 유지 → 리프 텍스트가 꺽쇠 열 침범 방지 */
}

.toc-sect li.active:not(:has(.active)) > .nav-item > a{
    color: #0065A3;
    font-weight: 700;
}

.toc-sect .toc-sect > li.active > .nav-item > a{
    border-radius: 8px;
    color: #0065A3;
    background-color:#EFF0F3;
}

/* 마우스 환경에서만 hover 적용 (터치는 드래그 후 press 상태가 남음) */
@media (hover: hover) and (pointer: fine) {
    .toc-sect .toc-sect > li > .nav-item > a:hover{
        border-radius:8px;
        background-color:#EFF0F3;
    }
}

/* 터치는 누르고 있는 동안만 표시 */
.toc-sect .toc-sect > li > .nav-item > a:active{
    border-radius:8px;
    background-color:#EFF0F3;
}

#root {
    overflow: hidden;
    border-radius: 35px 35px 0 0;
}

#root > div[class^='Heading2'] {
    overflow-y: auto;
    overscroll-behavior-y: contain;  /* 본문 끝에서 당길 때 튕김/빈 공간 방지 */
    transition: opacity 0.2s ease;   /* 페이지 전환 페이드 */
}

/* 좌우 페이지 이동: 현재 페이지(.thisPage)만 표시 → nav 토글로 슬라이드 위치가
   어긋나도 두 페이지 겹침/반쪽 넘어감 방지 (슬라이드 대신 페이드) */
#root > div[class^='Heading2']:not(.thisPage){
    opacity: 0;
    pointer-events: none;
}
#root > div[class^='Heading2'].thisPage{
    left: 0 !important;
    transform: none !important;
    opacity: 1;
    z-index: 1;
}


.btn_page {
    pointer-events: none;
}

/* prev/next 버튼: 본문 영역 좌우 끝 / 화면 세로 가운데에 fixed 배치
   현재 슬라이드(.thisPage) 안의 버튼만 보이도록 visibility 토글 */
.btn_prev, .btn_next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    max-width: 180px;
    z-index: 3;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.thisPage .btn_prev,
.thisPage .btn_next {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.btn_prev button, .btn_prev a, .btn_next button, .btn_next a {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 터치 시 하이라이트 제거 */
}

@media (hover: hover) and (pointer: fine) {
    .btn_page .btn_prev:hover button, .btn_page .btn_next:hover button {
        opacity: 0.7;
    }
}

.btn_page .btn_prev:active button, .btn_page .btn_next:active button {
    opacity: 0.7;
}


.btn_prev {
    left: 10px;
    align-items: flex-start;
    text-align: left;
}

.btn_next {
    right: 10px;
    align-items: flex-end;
    text-align: right;
}

.btn_page button {
    border: none;
    transition: opacity 0.2s ease;
}

.btn_page button img {
    display: block;
    width: 46px;
    height: 46px;
    opacity: 0.5;
}

/* button도 터치 영역 확인 */
.btn_prev button, .btn_next button {
    position: relative;
    z-index: 2;
}


.btn_area{
    display: none;
}

/* article */
article{
    height:0;
}

.alertBox{
    display: none; 
    position: absolute; 
    top: 10px;
    left: 50%; 
    max-width: 360px;
    width: 90%;
    min-width: 300px; 
    padding: 20px; 
    border-radius: 12px; 
    transform: translate(-50%, 0);
    background-color: #fff;
    z-index: 5;
}

.alertBox.on{
    display: block;
}

article:has(.alertBox.on) .mask.on{
	z-index: 5;
}

.alertBox p{
    padding: 20px 0 10px;
    color: #373737;
}

.pop-close{
    position: absolute;
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    outline: none;
}

.pop-close img{
    display: block;
    width: 100%;
    height: 100%;
}


.btn-size{
    position: fixed;
    bottom: 30%;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 8px 15px rgba(0, 0, 0, .08);
    box-sizing: border-box;
    cursor: pointer;
}

.fontPop{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10;
}

.fontPop.on{
    display: block;
}

article:has(.fontPop.on) .mask.on{
	z-index: 5;
}

.font-wrap{
    position: fixed;                 /* 화면 기준 */
    right: 50%;
    bottom: 28%;
    transform: translateX(50%);     /* 정확히 가운데 */
    width: min(360px, calc(100vw - 40px));
}


.font-close{
    position: absolute;
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1;
}

.font-close img{
    display: block;
    width: 100%;
    height: 100%;
}

.fontBox{
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 50px 20px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0px 2px rgba(0,0,0,.18);
}

.font-sm{
    width: 14px;
}

.font-lg{
    width: 22px;
}

.font-range{
    width: 100%;
    height: 10px;
    border: 0;
    border-radius: 12px;
    background: #EDEDED;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.font-range::-webkit-slider-thumb{    
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #020202;    
    margin-top: -2px;
    background: #3D3D3D;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    -webkit-appearance: none;
}


@media screen and (min-width: 1024px){
    /* 본문 영역 = .bodywrap(최대 1200px, 가운데 정렬) - nav(360px, .navOpen 시) - gap(40px) */
    .btn_prev {
        left: max(10px, calc((100vw - 1200px) / 2 + 10px));
    }

    .btn_next {
        right: max(10px, calc((100vw - 1200px) / 2 + 10px));
    }

    .navOpen .btn_prev {
        left: max(410px, calc((100vw - 1200px) / 2 + 410px));
    }

    .btn_page button img{
        width: 50px;
        height: 50px;
    }

    
    .btn-size{
        width: 50px;
        height: 50px;
        right: max(40px, calc((100vw - 1200px) / 2 + 40px));
    }

    .font-wrap{
        position: fixed;
        right: 40px;
        transform: none;
    }
}


@media screen and (min-width: 1200px){    
    .font-wrap{
        right: calc((100vw - 1200px) / 2 + 40px);
    }

}

@media screen and (min-width: 1600px){    

    .alertBox{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}



/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root { color-scheme: dark; }

    html, body, .searchWrap{
        color: #fff;
        background: #121416;
    }

    #wrapper, nav{
        border: none;
        color: #fff;
        background-color: #303030;
    }

    footer{
        background-color: #353535;
    }

    .logo, .btn-close, .nav-close {
        filter: brightness(0) invert(1);
    }

    .btn-nav , .btn-search{
        background-color: #303030;
        box-shadow: 0 6px 15px rgba(0,0,0,0.6), inset 0 1px 2px rgba(255,255,255,0.08);
    }

    .toc-sect .toc-sect > li.active > .nav-item > a{
        color: #78CCFF;
        background-color: #454545;
    }

    @media (hover: hover) and (pointer: fine) {
        .toc-sect .toc-sect > li > .nav-item > a:hover{
            color: #78CCFF;
            background-color: #454545;
        }
    }

    .toc-sect .toc-sect > li > .nav-item > a:active{
        color: #78CCFF;
        background-color: #454545;
    }

    .toc-sect li.active:not(:has(.active)) > .nav-item > a{
        color: #78CCFF;
    }

    .nav-item > button img{
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

    .btn-size{
        background-color: #6C6C6C;
    }

    .btn-nav img , .btn-search img, .btn-size img{
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

    /* 다크모드 페이지 이동 화살표 가시성 (base 0.5 → 어두운 배경에서 흐려 상향) */
    .btn_page button img{
        opacity: 0.9;
    }

    @media (hover: hover) and (pointer: fine) {
        .btn-nav:hover , .btn-search:hover, .btn-size:hover{
            background-color: #3A3A3A;
        }
    }

    .btn-nav:active , .btn-search:active, .btn-size:active{
        background-color: #3A3A3A;
    }

    .searchWrap{
        border: 1px solid rgba(255,255,255,0.68);
        background-color: #0B1015;
        box-shadow: none;
    }

    .searchWrap input{
        color: #fff;
    }

    .searchWrap input::placeholder {
        color: #B3B3B3;
    }
    
    .autocomplete-items .autocomplete-active{
        color: #FFFFFF;
        background-color: #4A4A4A;
    }

    @media (hover: hover) and (pointer: fine) {
        .autocomplete-items div:hover{
            color: #FFFFFF;
            background-color: #4A4A4A;
        }
    }

    .autocomplete-items strong{
        color: #1FA6F9;
    }

    .autocomplete-items, .searchBox.isPop, .recomBox{
        border-color: #5C5C5C;
        color: #fff;
        background-color: #353535;
    }

    .autocomplete-items::-webkit-scrollbar{
        background: transparent;
    }

    .autocomplete-items::-webkit-scrollbar-track{
        background-color: #4A4A4A;
        border-radius: 30px;
    }

    .autocomplete-items::-webkit-scrollbar-thumb{
        background: #7A7A7A;
        border-radius: 10px;
    }

    .autocomplete-items::-webkit-scrollbar-thumb:hover{
        background: #8C8C8C;
    }

    .recom-list a{
        border-color: #068DE0;
        color: #068DE0;
    }


    /* 260514 - 다크모드 nav/Heading2 스크롤바 톤 다운 (라이트모드처럼 배경에 부드럽게 녹도록) */
    .nav-bottom, #root > div[class^='Heading2']{
        scrollbar-color: rgba(255,255,255,0.18) transparent;
    }

    .nav-bottom::-webkit-scrollbar-thumb, #root > div[class^='Heading2']::-webkit-scrollbar-thumb{
        background: rgba(255,255,255,0.18);
    }

    .nav-bottom::-webkit-scrollbar-thumb:hover, #root > div[class^='Heading2']::-webkit-scrollbar-thumb:hover{
        background: rgba(255,255,255,0.28);
    }


    @media screen and (min-width: 1024px){
        .btn-search{
            background-color: inherit;
        }

        .btn-search:hover{
            background-color: inherit;
        }
    }
}