/* ===== Scoped Wrapper ===== */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 50px;
}

/* ===== Tabs Nav ===== */
.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 12px !important;
    border-bottom: 2px solid #eee;
    flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li {
    border: none;
    padding: 8px 18px;
    transition: 0.3s;
}

.woocommerce-tabs ul.tabs li a {
    color: #333;
    font-weight: 500;
	 padding: 12px 30px;
	border-radius:30px;
}

/* ACTIVE TAB */
.single-product .woocommerce-tabs ul.tabs li{
	padding:0 !important;
  

}
.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #fff !important;
	background-image: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--primary) 100%); 
}
.woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}
.single-product .woocommerce-tabs ul.tabs li.active::before{
	content:none;
}


/* ===== Content Area ===== */
.woocommerce-tabs.wc-tabs-wrapper {
    padding: 40px;
    box-shadow: 0px 0px 25px -9px gray;
    border-radius: 30px;
    overflow: hidden;
}

/* ===== TABLE DESIGN ===== */
.starco-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
	margin-bottom:0px;
}

/* Header Column */
.starco-table th {
    width: 30%;
    text-align: left;
    background: #f7f9fc;
    padding: 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Value Column */
.starco-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

/* Row Hover */
.starco-table tr:hover td {
    background: #fafafa;
}

/* UL inside table */
.starco-table ul {
    margin: 0;
    padding-left: 18px;
}


.single-product .woocommerce-tabs ul.tabs li:before{
	    left: 10% !important;
    bottom: 10% !important;
}

.single-product .woocommerce-tabs ul.tabs li:hover:before, .single-product .woocommerce-tabs ul.tabs li.active:before {
    width: 80% !important;
}

/* ===== Mobile ===== */

@media(max-width:1279px){
	.woocommerce-tabs ul.tabs li a {
    padding: 10px 21px;
    font-size: 18px !important;
}
	.woocommerce-tabs.wc-tabs-wrapper {
    padding: 25px;
}
}
@media(max-width:768px){

    .starco-table th,
    .starco-table td {
        display: block;
        width: 100%;
    }

    .starco-table th {
        background: #eee;
    }
}

@media(max-width:574px){
	.woocommerce-tabs.wc-tabs-wrapper {
    padding: 15px;
    box-shadow: 0px 0px 25px -14px gray;
}
	h2.resp-accordion.tab-application_guidelines {
    border-top: 0 !important;
}
}

@media(max-width:424px){
	.woocommerce-tabs.wc-tabs-wrapper {
    border-radius: 20px;
}
}
.single-product .woocommerce-tabs ul.tabs{
	padding-bottom:10px;
}

