/* Ячейки в нечетных строках */
#table div.data-rows div.row.odd div{
    background-color: #a7d5e7;
}

/* Ячейки в четных строках */
#table div.data-rows div.row.even div{
    background-color: #c3e0eb;
}

#table div.data-rows div.row div.free_coupons{
    background-color: #9edf85;
}

/* Ячейки пустые в нечетных строках */
.table .row.odd .cell.no-content {
    background-color: inherit;
/*    background-color: #9d9d9d;*/
}

/* Ячейки пустые в четных строках */
.table .row.even .cell.no-content {
    background-color: inherit;
}

#table{
    height: 100%;
    width: 100%;
}

#table div.data-rows{
    display: table;
    width: 100%;
}

#table div.data-rows div.row {
    width: 100%;
    display: table;
    table-layout: fixed;
    min-height: 10%;
    white-space: nowrap;
    clear: both;
    /*display: table-row-group;*/
}

#table div.data-rows div.row div {
    border : solid 1px rgba(76, 78, 78, 0.27);
    border-radius: 10px;
    min-height: 10%;
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    height: 100%;
    position: relative;
}

#table div.data-rows div.row div time {
    display: block;
    margin-bottom: 3%;
}