﻿.table {
    border-radius: 6px;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.table .row {
    border-top: 1px solid #d2d2d2;
    padding: 1em 0.5em;
    background: #f8f8f8;
    clear: both;
}

.table .row:nth-child(2n+1)
{
    background: #f2f2f2;
}
    
.table .row:first-child {
    border: none;
}
    
.table .cell {
    font-size: 0.9em;
    float: left;
    width: 25%;
}

.table .cell.full {
    clear: both;
    float: none;
    width: 100%;
}

.table .cell.rightAlign {
    text-align: right;
}

.table h3 {
    font-size: 1em;
    padding-bottom: 0px;
}

.table p {
    overflow: hidden;
    text-overflow: ellipsis;
}

.table a.button {
    display: inline-block;
    padding: 0.4em 0.8em;
    margin: 0px 0.4em 0.4em 0px;
    font-size: 0.9em;
    width: auto;
}

@media (max-width: 800px) {
    .table .cell {
        width: 33.33333%;
    }
}

@media (max-width: 640px) {
    .table .cell {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .table .cell {
        float: none;
        width: 100%;
    }
}