@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: url(https://pic03.eapple.com.tw/lexustsai/bgbg.jpg) center / cover no-repeat; */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0)), url(https://pic03.eapple.com.tw/lexustsai/bgbg.jpg);
    background-size: 62.6% 100%, cover;
    background-repeat: no-repeat;
    background-position: left top, center;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


.main_header_area .container {
    max-width: 1800px;
    padding: 0 5%;
}

.header_area,
.header_area.sticky {
    background: #fff;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-header {
    padding: 8px 0 10px;
}

.nav-brand {
    display: block;
}

.me_tp_features,
.swiper-pagination,
.nav-brand img {
    display: none;
}

.stellarnav ul {
    font-family: 'Goldman', 'Noto Sans TC';
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li>a:before,
.stellarnav>ul>li.has-sub>a:not(.dd-toggle):before {
    width: 0;
    position: absolute;
    height: 3px;
    content: "";
    background: linear-gradient(to right, #ccd3e2, #292a2d);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all ease 0.3s;
}

.stellarnav>ul>li:hover>a:before,
.stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle):before {
    width: 100%;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
    font-size: 17px;
    padding: 0 2px;
    color: #000;
    display: block;
    font-weight: 400;
    margin: 0;
    text-transform: none;
    height: 100%;
    letter-spacing: 2px;
    transition: all ease 0.3s;
}

.stellarnav>ul>li {
    margin: 0 16px;
}

.stellarnav>ul>li:last-of-type {
    background: #000;
}

.stellarnav>ul>li:last-of-type>a {
    color: #fff;
    padding: 0 16px;
}

.nav-brand {
    width: 100%;
    max-width: 200px;
    background: url(https://pic03.eapple.com.tw/lexustsai/logo_h.svg) center/cover no-repeat;
    aspect-ratio: 10/3;
}

/*次分類*/
.stellarnav ul ul {
    background: transparent;
    border-bottom: 12px solid #f5f5f5;
    transition: all ease .6s;
    animation: navi 0.3s;
}

@keyframes navi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.stellarnav li li {
    background: #f5f5f5;
    border: none;
    margin-bottom: 0;
}

.stellarnav>ul>li>ul>li:first-of-type,
.stellarnav>ul>li>ul>li>ul>li:first-of-type {
    padding-top: 12px;
}

.stellarnav li>ul>li>a:not(.dd-toggle):before {
    position: absolute;
    top: 22px;
    left: 0;
    content: '';
    background: #8e8e8e;
    width: 15px;
    height: 1px;
    opacity: 0;
    transition: all 0.3s;
}

.stellarnav li>ul>li:hover>a:before {
    opacity: 1;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub>a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li a:not(.dd-toggle) {
    color: #000;
    letter-spacing: 1px;
    padding: 10px 24px;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
    transition: all ease .3s;
}

.stellarnav li li:hover a:not(.dd-toggle),
.stellarnav li li.has-sub:hover a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li:hover a:not(.dd-toggle) {
    color: #8e8e8e;
}

.stellarnav li.drop-left ul ul {
    left: auto;
    right: 100%;
}

.stellarnav li ul ul {
    right: auto;
    left: 100%;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖動畫*/
.bannerindex .swiper-banner .swiper-slide img {
    animation-name: leftDown;
}

@keyframes leftDown {
    0% {
        transform: scale(1.05, 1.05) translate(0.5%, -0.5%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: scale(1.05, 1.05) translate(-0.5%, 0.5%);
    }
}

.bannerindex .swiper-slide:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-color: #fff;
    border-style: solid;
    border-width: 3vw 6vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    will-change: border-width;
    z-index: 1;
    pointer-events: none;
    animation: scalin 1s;
}

@keyframes scalin {
    0% {
        border-width: 10vw 20vw;
    }

    100% {
        border-width: 3vw 6vw;
    }
}

.bannerindex .swiper-wrapper:before {
    content: "BUILDING TRUST" "\A" "THROUGH" "\A" "SINCERITY";
    font-weight: bold;
    font-size: 2vw;
    font-family: 'Goldman';
    white-space: pre-wrap;
    line-height: 1;
    color: #fff;
    display: block;
    position: absolute;
    top: calc(-3vw - 30px);
    left: 6vw;
    padding: 30px;
    animation: drop 1s ease-out forwards;
    clip-path: inset(0 0 0 0);
    animation-delay: 1s;
    z-index: 9;
}

@keyframes drop {
    0% {
        top: calc(-3vw - 30px);
        clip-path: inset(calc(60px + 6vw) 0 0 0);
    }

    100% {
        top: 3vw;
        clip-path: inset(0 0 0 0);
    }
}

.bannerindex .swiper-wrapper:after {
    content: "用真誠服務，" "\A" "讓每一段旅程都值得被信任";
    font-weight: 500;
    letter-spacing: 3px;
    font-size: clamp(12px, 2vw, 28px);
    font-family: 'Noto Sans TC';
    white-space: pre-wrap;
    line-height: 1.5;
    color: #000;
    background: #fff;
    display: block;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: calc(6vw - 2px);
    padding: 2.5vw 5vw 30px 30px;
    animation: lift 1s ease-out forwards;
    animation-delay: 1s;
    z-index: 9;
}

@keyframes lift {
    0% {
        bottom: 0;
        transform: translateY(100%);
    }

    100% {
        bottom: calc(3vw - 2px);
        transform: translateY(0);
    }
}

/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: transparent;

    /*校稿用*/
    overflow: visible;
}

.bannerindex {
    position: relative;
    height: auto;
    background: #fff;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.path {
    display: none;
}

#content,
#content_main {
    font-family: 'Open Sans', 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.main_part {
    max-width: 100%;
    width: 80%;
    min-width: 88vw;
    padding: 60px 0;
}

.show_content {
    padding: 0;
}

/*內頁BANNER 設定*/
.banner {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    position: relative;
    background: none;
    padding: 0;
    min-height: 150px;
}

.banner h5 {
    line-height: 1;
    background: linear-gradient(to top, #bbb, #2d2d2d 60%, #aaa 61%, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Noto Sans TC';
    letter-spacing: 4px;
    z-index: 9;
    display: flex;
    flex-flow: column wrap;
    gap: 20px;
    position: relative;
}

.banner h5:before {
    content: 'FEATURED MODELS';
    font-family: 'Goldman';
    font-size: 18px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -100%);
    font-weight: bold;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #888;
    min-width: max-content;
    width: 100%;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車*/
.product-layer-two {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.product-layer-two>li>a {
    border: none;
    background: none;
    padding: 15px 60px;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    transition: all ease 0.5s;
}

.product-layer-two>li:not(:last-of-type):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 24px;
    width: 1px;
    background: #444;
}

.product-layer-two li.active a,
.product-layer-two li:hover a {
    color: #8e8e8e !important;
    border: none;
    background: none;
}

.product_menu_list {
    margin-bottom: 40px;
}

.products-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.products-list .pic {
    aspect-ratio: 13/9;
}

.products-list .name {
    -webkit-line-clamp: 1;
    height: auto;
    margin: 12px 0 0;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    color: #444;
    transition: all ease 0.5s;
}

.products-list .item a:hover .name {
    color: #000;
}

.products-list:has(.item:hover) .item:not(:hover) img {
    filter: opacity(.5);
}

.products-list .pic:before {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(hsla(54deg, 100%, 87%, 0) 0%, hsla(54deg, 70%, 90%, 0.35) 45%, hsla(8deg, 79%, 90%, 0.35) 50%, hsla(8deg, 79%, 90%, 0) 60%, hsla(8deg, 79%, 90%, 0) 100%);
    opacity: 0;
    transform: translate3d(0%, 0%, 0) scale(5);
    z-index: 9;
    filter: grayscale(1);
}

.products-list .item:hover .pic:before {
    opacity: .5;
    animation: move-light 2s forwards, move-light-opacity 2s forwards;
}

@keyframes move-light {
    0% {
        transform: translate3d(-250%, -250%, 0) scale(4.5)
    }

    100% {
        transform: translate3d(0%, 0%, 0) scale(5)
    }
}

@keyframes move-light-opacity {
    60% {
        opacity: .5
    }

    100% {
        opacity: 0
    }
}

.products-list .item .pic img {
    transition: all ease 0.5s;
}

.products-list .item:hover .pic img {
    transform: scale(1.1);
}

.products-list .more,
.product-layer-two li i {
    display: none;
}

.products-list .item a {
    padding-bottom: 0;
}

.product-layer-two li a {
    color: #000 !important;
    text-align: center;
}

.product-layer-two li:hover ul {
    display: block !important;
}

.product-layer-two li ul {
    padding-top: 10px;
    animation: navi 0.3s;
}

.product-layer-two li li {
    background: #f5f5f5;
}

.product-layer-two li:hover li a {
    color: #000 !important;
    background: none !important;
    transition: all ease 0.5s;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
}

.product-layer-two li li:hover a {
    background: #000 !important;
    color: #fff !important;
}

/*內頁*/
.product_info_page .main_part {
    max-width: 1080px;
    min-width: 1080px;
    padding-bottom: 100px;
}

.proImgSwiper li {
    align-items: flex-start;
}

.pd_tabInner.edit {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    padding: 0;
    letter-spacing: 1px;
}

.product_info_page .product_menu_list,
.mobile_product_name,
.product_info li {
    display: none;
}

.product_info li .txt_box {
    color: #444;
}

.prod_related {
    padding: 80px 0 60px;
    background: #f9f9f9;
}

.related_list {
    width: 80%;
    min-width: 88vw;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 40px auto 60px;
}

.prod_related h6 span:before {
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 26px;
    color: #000;
    margin: 0 auto;
}

.related_list li {
    width: calc((100% - 40px) / 3);
}

.related_list li a p {
    margin: 10px auto 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
    font-size: 18px;
    letter-spacing: 1px;
}

.related_list li figure {
    aspect-ratio: 13/9;
}

.pd_tabInner_contain {
    padding-top: 30px;
}

.product_main {
    width: 100%;
    padding: 0;
}

.sidebarBtn {
    padding: 0;
    display: block;
    width: 100%;
    border: none;
    background: none;
    margin-top: 80px;
}

.prod_tabs {
    margin-top: 60px;
}

.sidebarBtn h2 {
    font-size: 30px;
    letter-spacing: 1px;
}

.related_list li:nth-of-type(n+4),
.product_info_page .banner {
    display: none;
}

.proImgSwiper {
    clip-path: inset(0 2px);
    aspect-ratio: 13 / 9;
}

.lastPage {
    background: #000;
    font-weight: 500;
    letter-spacing: 1px;
}

.toShare {
    border-color: #ccc;
}

.pd_tabTitle li.activeTab::after {
    height: 4px;
    background: #8e8e8e;
}

.pd_tabTitle li {
    border-color: #8e8e8e;
}

.pd_tabTitle li.activeTab a,
.pd_tabTitle li a {
    padding: 12px 18px;
    font-size: 20px;
    font-weight: bold;
    color: #444;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer_info li p.add2:before {
    content: '營業時間｜';
}

.footer_info li p.add:before {
    content: '店家地址｜';
}

.footer_info li p.phone:before {
    content: '聯絡電話｜';
}

.footer_info li p.mail:before {
    content: '信箱｜';
}

.footer {
    background: #f5f5f5;
    padding: 60px 0 1px;
    font-family: 'Goldman', 'Noto Sans TC';
}

.footer_logo {
    width: 100%;
    max-width: 200px;
    background: url(https://pic03.eapple.com.tw/lexustsai/logo_h.svg) center/cover no-repeat;
    height: 60px;
    margin: 0 0 10px;
}

.footer_logo a {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 10/3;
}

.footer_logo img {
    display: none;
}

.footer .center {
    max-width: 1200px;
    padding: 0 5%;
}

.footer_info {
    display: flex;
    justify-content: space-between;
}

.footer_info,
.footer_info li {
    position: relative;
    padding: 0;
}

.footer_info li:before {
    content: "INFO";
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    color: #000;
    font-size: 1.4rem;
}

.footer_info li:nth-child(2):before {
    content: "NAVIGATION";
}

.footer_info ul {
    display: flex;
    gap: 80px;
    flex-flow: row wrap;
    width: max-content;
    letter-spacing: 0;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-flow: column wrap;
    padding-top: 48px;
}

.footer_info li:nth-child(2) {
    width: 370px;
}

.footer_info li p,
.footer_info li p a {
    color: #000;
    transition: all ease 0.3s;
}

.footer_info li p {
    letter-spacing: 0px;
    line-height: 160%;
    display: block;
    margin-bottom: 16px;
}

.footer_menu {
    padding-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}

.footer_menu a,
.footer_menu a:hover {
    padding: 0;
    margin: 0;
    border: none;
    color: #000;
    background: transparent;
    width: max-content;
    text-align: left;
    line-height: 160%;
    transition: all ease 0.3s;
}

.copy {
    white-space: inherit;
    text-align: left;
    padding: 0 5%;
    border-top: none;
    margin: 50px auto;
    max-width: 1200px;
    justify-content: flex-start;
}

.copy>p:first-of-type {
    margin-right: auto;
}

.copy,
.copy a,
.copy a:hover {
    color: rgba(0, 0, 0, .5);
}

.footer_info li p:not(:last-of-type) a:hover,
.footer_menu a:hover {
    color: #8e8e8e;
}

.box_link,
.footer_menu a:first-of-type {
    display: none;
}

@media screen and (max-width: 1360px) {
    .stellarnav>ul>li {
        margin: 0 10px;
    }

    .footer_info {
        flex-direction: column;
    }

    .footer_info ul {
        width: 100%;
        justify-content: space-between;
    }

    .product_info_page .main_part {
        min-width: 80%;
    }

    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .navigation {
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {

    .header_area,
    .main_header_area .container {
        padding: 0;
    }

    #bottom_menu li:nth-of-type(n+2) {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 60px 0;
    }

    #to_top {
        bottom: 68px;
    }

    .stellarnav.mobile .menu-toggle {
        padding: 10px;
    }

    .footer_info li:before {
        font-size: 19px;
    }

    .footer_info ul {
        gap: 0;
    }

    .copy>p:first-of-type,
    .privacyLinks {
        margin: 0;
    }

    .privacyLinks a {
        padding: 0 5px 0 0;
    }

    .privacyLinks a:last-of-type {
        padding: 0 0 0 5px;
    }

    .copy {
        margin-top: 24px;
    }

    body.pageIndex:before {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 80%), url(https://pic03.eapple.com.tw/lexustsai/bgbg.jpg);
        background-size: 100%, cover;
    }

    .stellarnav a.dd-toggle .icon-plus:after,
    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav .icon-close:after,
    .stellarnav .icon-close:before {
        border-color: #000;
    }

    .stellarnav li li:not(.open):hover a.dd-toggle .icon-plus:after,
    .stellarnav li li:not(.open):hover a.dd-toggle .icon-plus:before {
        border-color: #fff;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a {
        height: auto;
        line-height: 150%;
        margin: 0 8px;
        padding: 20px 44px 14px 0;
        min-width: auto;
        font-size: 15px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #fff;
        padding: 16px 20px;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        border-right: none;
        background: #f5f5f5;
    }

    .stellarnav.mobile li.open,
    .stellarnav.mobile li.open li.open {
        background: #fff;
    }

    .stellarnav a {
        color: #000;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 16px 6px 0;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        padding-top: 26px;
    }

    .stellarnav.mobile li li a.dd-toggle {
        margin-right: 5px;
    }

    .stellarnav.mobile li.open li.open a.dd-toggle {
        padding: 22px 0 0 0;
    }

    .stellarnav.mobile li li.has-sub a:not(.dd-toggle),
    .stellarnav li li>a:not(.dd-toggle) {
        padding: 10px 43px 10px 18px;
    }

    .stellarnav.mobile li li.has-sub li a:not(.dd-toggle),
    .stellarnav li li li>a:not(.dd-toggle) {
        padding-left: 18px;
    }

    .stellarnav>ul>li.open>a,
    .stellarnav>ul>li.has-sub.open>a:not(.dd-toggle),
    .stellarnav li li.open:hover>a:not(.dd-toggle),
    .stellarnav li li.has-sub.open:hover>a:not(.dd-toggle) {
        color: #000;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav li li {
        text-align: left;
    }

    .stellarnav li li li {
        background: #eee;
    }

    .stellarnav ul ul ul {
        border-color: #eee;
    }

    .stellarnav>ul>li>a:before {
        display: none;
    }

    .stellarnav>ul>li {
        margin: 0 16px;
    }

    .stellarnav.mobile>ul>li {
        border-color: #000;
    }

    .stellarnav.mobile li.open,
    .stellarnav.mobile li.open li.open {
        padding: 8px;
    }

    .stellarnav.mobile>ul>li:last-of-type {
        margin-top: 24px;
        width: max-content;
    }

    .stellarnav>ul>li:last-of-type>a {
        padding: 16px 0 12px !important;
    }

    .products-list {
        grid-template-columns: 1fr;
    }

    .bannerindex .swiper-slide:after {
        border-width: 3vw 5vw;
    }

    @keyframes scalin {
        0% {
            border-width: 10vw 20vw;
        }

        100% {
            border-width: 3vw 5vw;
        }
    }

    .bannerindex .swiper-wrapper:after {
        left: calc(5vw - 2px);
        padding: 2.5%;
        letter-spacing: 1px;
    }

    .bannerindex .swiper-wrapper:before {
        font-size: 3vw;
        left: 0vw;
        top: calc(-6vw - 30px);
    }

    @keyframes drop {
        0% {
            top: calc(-6vw - 30px);
            clip-path: inset(calc(60px + 6vw) 0 0 0);
        }

        100% {
            top: -3vw;
            clip-path: inset(0 0 0 0);
        }
    }

    .product-layer-two>li:after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        height: 24px;
        width: 1px;
        background: #444;
    }

    .product-layer-two>li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        height: 24px;
        width: 1px;
        background: #444;
    }

    .product-layer-two li {
        margin: 0;
        width: 70%;
        margin: 0 auto;
    }

    .product-layer-two {
        flex-flow: column;
    }

    .banner h5 {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .banner h5:before {
        top: -10px;
    }

    .banner {
        min-height: 100px;
    }

    .main_part {
        padding: 40px 0;
    }

    .product_menu_list {
        margin-bottom: 30px;
    }

    .related_list li {
        width: 100%;
    }

    .product_info_page .main_part {
        padding-bottom: 60px;
    }

    .prod_related {
        padding: 60px 0 40px;
    }

    .related_list {
        margin: 30px auto 40px;
    }

    .sidebarBtn h2 {
        font-size: 24px;
    }

    .prod_related h6 span:before {
        font-size: 22px;
    }

    .pd_tabTitle li.activeTab a,
    .pd_tabTitle li a,
    .product-layer-two>li>a {
        font-size: 18px;
    }

    .products-list .name {
        margin: 10px 0 0;
        font-size: 17px;
    }

    .related_list li a p {
        font-size: 16px;
    }

    .pd_tabInner.edit {
        font-size: 15px;
    }

    .sidebarBtn {
        margin-top: 40px;
    }

    .product-layer-two li li {
        display: block;
        width: 100%;
    }

    .product-layer-two>li>ul>li>a {
        font-size: 16px;
        padding: 10px 18px;
    }

    .product-layer-two ul {
        grid-gap: 0;
    }

    .product-layer-two li li.active a {
        background: transparent;
    }

    .product-layer-two li.active li a {
        font-weight: 500;
        color: #000 !important;
    }

    .product-layer-two li.active li:hover a {
        color: #fff !important;
    }

    .product-layer-two>li:before,
    .product-layer-two>li:not(:last-of-type):after,
    .product-layer-two>li:after {
        top: 24px;
    }

    .product-layer-two li ul {
        padding-top: 0;
        position: static;
    }

}