
/* ==== List View Styling ============================*/
.buttonWrap {
    position: relative;
}
.buttonWrap .btnPdf {
    position: relative;
    border: 0px;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    padding: 3px 35px 6px;
    margin-bottom: 5px;
    /* text-decoration: underline; */
    background-color: #c2bdae;
    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;
}

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

table.listUnitsTable tr.titles th {
    position: relative;
    border: 0px;
    padding: 4px 20px 6px;
    text-align: center;
    background-color: #5f5754;
    font-weight: 300;
    color: #fff;
    position: sticky;
    z-index: 100000;
    top: 95px;
}
@media (max-width: 767px) {
    table.listUnitsTable tr.titles th {
        padding: 5px 6px 5px;
        top: 100px;
        font-size: 14px;
    }
}

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

table.listUnitsTable tr.titles th strong {
    position: relative;
}

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

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

table.listUnitsTable tr.currentlyReserved td a  {
    color: #fff;
}
@media (max-width: 767px) {
    table.listUnitsTable tr td {
        padding: 2px 6px 2px;
        font-size: 14px;
    }
}

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;
}
