﻿.horizontalStack {
    display: block;
}

.verticalStack {
    display: none;
}

@media (max-width: 1000px) {
    .horizontalStack {
        display: none;
    }

    .verticalStack {
        display: block;
    }
}

.odd {
    color: black;
    background-color: #efe7e7;
}

#tableView thead tr {
    background-color: black;
    color: white;
    height: 80px;
}

#tableView thead tr td {
    text-align: center;
    font-weight: bold;
    font-family: 'Titillium Web', 'sans-serif';
    color: white;
    text-transform: uppercase;
    font-size: 9pt;
}

#tableView thead tr td i {
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 14pt;
}
#tableView thead tr td i:hover {
    color: red;
}

#tableView tbody tr td {
    padding-left: 6px;
    padding-right: 6px;
}

#tableViewMobile tbody tr {
    background: none !important;
}

#tableViewMobile tbody tr td {
    padding-left: 10px;
    padding-top: 5px;
    color: black;
}

.tableViewAddToCart {
    padding: 5px;
    width: 130px;
    color: white;
    font-size: 14px !important;
    /* START CUSTOM */
    background-color: #ae0e10 !important;
    /* END CUSTOM */
    /*background-color: red !important;*/
    margin-top: 5px;
    margin-bottom: 5px;
}

.tableViewAddToFav {
    color: black !important;
    font-size: 14px !important;
    background-color: rgb(246, 246, 246) !important;
    padding: 8px;
}
.tableViewAddToFav:hover {
    background-color: #035891 !important;	
}
