/*[CAR블랙박스-A/S , BIKE 블랙박스-판매처 · A/S] 상단의 버튼 커스텀 */
.custom-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.custom-tabs .tab {
    padding: 8px 20px;   /* 버튼 위아래,양옆 간격 */
    background: #f0f0f0;  /* 버튼 활성화전 배경색 */
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    text-align: center;
}
.custom-tabs .tab:hover {
    background: #E41B23;   /* 버튼에 마우스 올렸을 시 배경색*/
    color: #fff;  /* 버튼에 마우스 올렸을 시  글씨색*/
}
.custom-tabs .tab.active {
    background: #E41B23;  /* 버튼 활성화시 배경색*/
    color: #fff; /*버튼 활성화시 글씨색*/
}



/* 상품 상세보기 상단 버튼 커스텀 */
.tabArea li {
    cursor:pointer;
    margin-right:10px;
    padding:10px 15px;   /*버튼 위아래, 양옆 간격 */
    border:1px solid #ccc;
    border-radius:12px;
}
.tabArea li.active {
    background:#fff;    /*버튼 활성화시 배경색*/
    color:#E41B23;    /*버튼 활성화시 글자색*/
}




html body.hellopanda-frontend .is-block-sticky > .block-sticky.header-mobile {
     padding-top: 1.7em !important;
     padding-bottom: 1.7em !important;
}