#product .product-discounts { display: none !important; }

div.discounts_table { margin-bottom: 20px; margin-top: 10px; }

div.discounts_table .product-discounts-title { margin-bottom: 10px; }

ul.table-products {
    align-items: center;
    display: grid;
    grid-template-areas: "a a a";
    gap: 5px;
    justify-content: flex-start;
    grid-auto-columns: 180px;
    /* display: grid; */
    /* flex-wrap: wrap; */
}

ul.table-products li.table-products-item.selected {
	cursor: default;
	background-color: #EDFAFA;
    border: 1px solid #24b9d7;
}

ul.table-products p {
	margin-bottom: 0.5em;
	padding: 3px 7px;
}

ul.table-products p.qty {
	font-weight: bold;
	color:  #000;
	font-size: 1.3em;
}

ul.table-products li.table-products-item {
	font-size: 12px;
    background-color: #fff;
    border: 1px solid #adada9;
    cursor: pointer;
    margin-right: 1%;
    position: relative;
    text-decoration: none;
    padding:  10px;
    text-align: center;
    margin-bottom: 10px;
}

ul.table-products .save_amount {
	background-color: #24b9d7;
	color: #FFF;
}

div.discounts_table .product-discounts-title { margin-bottom: 30px !important; }  
ul.table-products li.table-products-item { border-radius: 15%; border-color: #000 !important; border: 2px solid #000; }
ul.table-products {  grid-auto-columns: 135px; }

ul.table-products { gap: 20px !important; }
ul.table-products li.table-products-item.selected { background-color: #faf6bb; border: 2px solid #f2e95e !important; }

.table-products-item p.discount_qd {
    position: absolute;
    color: #FFF;
    top: -1.135rem;
    right: -0.935rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    min-width: 4rem;
    padding-top: 0.1875rem;
    background-color: red;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s ease-out;
    border: none;
    font-size: 12px;
    font-weight: bold;
}

.table-products-item p.discount_qd span.price { color: #FFF !important; }
.table-products-item p.unit_qd span.price { font-weight: bold !important; }

@media only screen and (max-width: 599px) {
	ul.table-products {
	    grid-template-areas: "a a";
	}
}
