table.object-list {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    font-size: 13px;
}

table.object-list .right {
    text-align: right;
}

table.object-list .nowrap {
    white-space: nowrap;
}

table.object-list thead td {
    border-bottom: 2px solid #88584c;
    position: relative;
}

table.object-list thead td a {
    display: block;
    font-weight: 500;
    color: #88584c;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 15px;
    position: relative;
}

table.object-list thead td a:hover {
    background: #eee;
}

table.object-list thead td.sort a {
    padding-right: 25px;
}

table.object-list thead td.sort a:after  {
    font-family: FontAwesome;

    position: absolute;
    right: 5px;
}

table.object-list thead td.sort.asc a:after{content: "\f078";}
table.object-list thead td.sort.desc a:after{content: "\f077";}

table.object-list tbody tr td {
    border-bottom: 1px solid #ddd;
    padding: 5px 6px;
    position: relative;
    cursor: pointer;
}

table.object-list tbody tr:hover td {
    background: #ddd;
}

table.object-list tbody tr:first-child td {
    padding-top: 15px;
}

@media (min-width: 768px) {
    table.object-list tbody td:hover:after {
        content: '';
        position: absolute;
        background: #ddd;
        left: 1px;
        right: 1px;
        top: -1000px;
        height: 10000%;
        opacity: 0.5;
        z-index: -1;
    }
}

table.object-list tbody tr.reserved td {
    background: #ffcec4;
}

table.object-list tbody tr.reserved:hover td {
    background: #c99f96;
}

table.object-list.fixed thead tr.no-fixed {
    opacity: 0;
}

table.object-list thead tr.fixed {
    display: none;
    position: fixed;
    background: white;
    z-index: 1;
}

table.object-list.fixed thead tr.fixed {
    display: table-row;
}

table.object-list .footable-details {
    text-align: left;
}

table.object-list .footable-details .right {
    text-align: left;
}

table.object-list .footable-details td, table.object-list .footable-details th {
    border: 0;
    padding: 0 !important;
    background: none !important;
}

.footable-detail-row td {
    background: transparent !important;
}

.footable-detail-row > td {
    padding-left: 24px !important;
}