﻿/* Container Elements */
.sb-combo-section {
    /* Your styles here */
}

.sb-combo-head {
    display: flex;
    flex-direction: row;
    padding: 30px 20px;
    background: darksalmon;
    color: white;
    font-weight: bold;
}

.sb-combos {
    display: flex;
    flex-direction: column;
}

.sb-combo {
    display: flex;
    flex-direction: column;
}
.sb-combo-body {
    display: flex;
    flex-direction: row;
    padding: 20px 20px;
    background: darkseagreen;
    color: white;
    font-weight: bold;
}
/* Combo Information Elements */


.sb-combo-code {
    width:150px;
}

.sb-combo-caption {
    width: 300px;
}

.sb-combo-discount {
    width: 150px;
}

.sb-combo-keyword {
    width: 200px;
}

/* Combo Item Elements */
.sb-combo-code {
    /* Your styles here */
}

.sb-combo-caption {
    /* Your styles here */
}

.sb-combo-discount {
    /* Your styles here */
}

.sb-combo-keyword {
    /* Your styles here */
}

/* Combo Item Details Elements */
.sb-combo-items {
    display: flex;
    flex-direction: row;
    padding: 10px 20px;
    border-width: 0 1px;
    border-color: darkseagreen;
    border-style: solid;
}
.sb-combo-item {
    display: flex;
    flex-direction: column;
    width: 150px;
}
.sb-combo-item-caption {
    /* Your styles here */
}

.sb-combo-item-code {
    /* Your styles here */
}

.sb-combo-item-price {
    /* Your styles here */
}
