
/* ==== List View Styling ============================*/
.buttonWrap {
    position: relative;
}
.buttonWrap .btnPdf {
    position: relative;
    border: 0px;
    font-size: 14px;
    outline: none;
    padding: 3px 35px 6px;
    margin-bottom: 5px;
    /* text-decoration: underline; */
    background-color: #747465;
    color: #ffffff;
}
.buttonWrap .btnPdf span {
    display: none;
    opacity: 0;
    visibility: hidden;
}
.buttonWrap .btnPdf.active span {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

table.listUnitsTable {
    position: relative;
    border: 0px;
    /* overflow-y: auto; */
}

table.listUnitsTable tr {
    position: relative;
}

table.listUnitsTable tr.outofstock td {
    position: relative;
    background-color: #ea5e5e !important;
    pointer-events: none;
    color: #fff;
}

table.listUnitsTable tr.outofstock td a {
    color: #fff;
}

/* Reserved row — amber/gold to match reserve button treatment */
table.listUnitsTable tr.fully-reserved td {
    position: relative;
    background-color: rgba(220, 180, 22, 0.55) !important;
    pointer-events: none;
    color: #fff;
}

table.listUnitsTable tr.fully-reserved td a {
    color: #fff;
}

table.listUnitsTable tr {
    position: relative;
    border: 0px;
    cursor: pointer;
}

table.listUnitsTable tr:hover, td:hover {
    background-color: #5a4a3a;
}

table.listUnitsTable tr.titles th {
    position: relative;
    border: 0px;
    padding: 4px 20px 6px;
    text-align: center;
    background-color: #3d5754;
    font-weight: 300;
    color: #fff;
    position: sticky;
    z-index: 100000;
    top: 110px;
}
@media (max-width: 834px) {
    table.listUnitsTable tr.titles th {
        padding: 5px 10px 5px;
        top: 114px;
    }
}

@media (max-width: 834px) {
    table.listUnitsTable .dontShowMobile {
        display: none;
    }
}

table.listUnitsTable tr.titles th strong {
    position: relative;
    font-size: 14px;
}

table.listUnitsTable tr td .originalPrice {
    position: relative;
    text-decoration: line-through;
    font-style: italic;
}

table.listUnitsTable tr td {
    border: 0px;
    border-top: 1px solid #edf1f2;
    position: relative;
    padding: 1px 20px 3px;
    text-align: center;
    text-transform: capitalize;
    font-size: 13px;
}

table.listUnitsTable tr.currentlyReserved td {
    background-color: #e68700 !important;
    color: #fff;
}

table.listUnitsTable tr.currentlyReserved td a  {
    color: #fff;
}
@media (max-width: 834px) {
    table.listUnitsTable tr td {
        padding: 2px 10px 2px;
    }
}

table.listUnitsTable tr td a {
    color: #000000;
}

table.listUnitsTable tr.outOfStock td a {
    color: #fff;
}

table.listUnitsTable tbody>tr:nth-child(odd)>td {
    background-color: #fcfefe;
}

table.listUnitsTable tbody>tr:nth-child(even)>td {
    background-color: #f7f8f8;
}
