/* product detail tab css
underline when selected
*/
html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs li.active{
    border-left: 0px solid var(--hover-conmax);
}

.woocommerce-tabs > ul > li{
    text-align: center;
}

@media (max-width:767.8px){
    html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs{
        border-bottom: 1px solid var(--hover-conmax);
    }
    html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs li a {
            font-weight: 300;
            font-size: 15px;
            padding: .4em 1em;
        }
}

@media (min-width:768px){

    .woocommerce-tabs > ul > li{
        width: 33%;
        
    }
    html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs li{
        display: inline-block; 
    }
    html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs li:hover{
        border-bottom: 0px ;
    }
    html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs li.active{
        border-bottom: 1px solid var(--hover-conmax);
    }

    html body .wp-block-woocommerce-product-details.is-style-minimal ul.tabs.wc-tabs li a {
        padding: 16px 1em;
        font-weight: 300;
    }
}

