/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 09 2026 | 11:10:47 */
.reagents-section{
    max-width:1200px;
    margin:auto;

}

.table-title{
    background:#1a73e8;
    color:#fff;
    padding:12px 20px;
    font-size:18px;
    font-weight:600;
	text-align: center;
}

.reagents-grid p{
	display:none!important;
}

.reagents-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid #ddd;
}

.item{
    padding:12px 16px;
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    font-size:15px;
}

/* remove right border of last column */
.item:nth-child(4n){
    border-right:none;
}

/* Mobile */

@media (max-width:768px){

.reagents-grid{
    
	grid-template-columns:repeat(2,1fr);
}

/* .item{
    border-right:none;
}
 */
}