#discountCombinationTable {
    padding:16px;
    margin: 16px 0;
}

#discountCombinationTable .title {
background:#16c181;
color:white;
font-size:1.265rem;
font-weight:600;
text-align:center;
padding:16px 0;
border-bottom:1px solid white;
}

#discountCombinationTable .itemRow {
    display:flex;
    align-items:center;
    background-color: #333333;
    color:#ffffff;
    /*padding:8px 16px;*/
    padding:8px 8px;
    margin-bottom:1px;
}
#discountCombinationTable .itemRow:hover {
    background-color:#222222;
}

#discountCombinationTable .itemRow p {
    margin-top:0;
    margin-bottom:0;
    margin-left:0;
    margin-right:0;
}

.itemRow .name { flex:1; font-weight:700; font-size:1rem;
    text-shadow:rgba(0,0,0,0.25) 8px 8px 8px;
}
.itemRow .priceReduced {
    padding:8px;
    font-weight:700;
    background-color:#fff;
    color:#111;
    font-size:24px;
}

.itemRow .priceFull {
/*background-color:#888888;*/
padding:8px 10px;
color:#eeeeee; 
text-decoration:line-through;
}

.itemRow .addToCart .cartButton {
    display:flex;
    background-color:#83c127;
    border-radius:24px;
    border:0;
    justify-content: center;
    align-items: center;
    width:40px;
    height:40px;
    cursor:pointer;
}

.itemRow .addToCart .cartButton:hover {

    background-color:#5fa300;
}

.itemRow .addToCart .cartButton::before {
    content: "\f07a";
    font-family: "FontAwesome";
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    padding:8px;
}
