@media only screen and (max-width: 799px) {
    .appContainer {
        display: none;
    }

    .mobileContainer {
        position: relative;
        display: block !important;
        width: 100%;
        border: 2px solid black;
        padding: 20px;
        box-sizing: border-box;
        height: 100%;
    }

    .textContainer {
        text-align: center;
        color: red;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
        width: 40%;
        max-height: 90%;
    }

}

.mobileContainer {
    display: none;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
}

table, td {
    border: 1px solid #eef1f5;
    border-collapse: collapse
}

td {
    height: 30px;
    padding-left: 5px;
}

.appContainer {
    width: 100%;
    height: 100%;
}

.appHeader {
    height: 60px;
    line-height: 60px;
    font-size: 25px;
    text-align: center;
    box-shadow: 0 1px 0 rgba(12, 13, 14, 0.1), 0 1px 3px rgba(12, 13, 14, 0.1), 0 4px 20px rgba(12, 13, 14, 0.035), 0 1px 1px rgba(12, 13, 14, 0.025);
    background: #1e1e29;
    color: #fff;
}

.appBody {
    height: calc(100% - 60px);
    width: 100%;
}

.rightPanel {
    height: calc(100% - 20px);
    overflow: auto;
    width: calc(75% - 20px);
    float: right;
    padding: 10px;
    background: #f4f5f7;
}

.tempTableWrapper {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.leftPanel {
    width: 25%;
    float: left;
    height: 100%;
    background: #272634;
}

#filterUpperWrapper {
    border-bottom: 1px solid #eef1f514;
    float: left;
    width: 100%;
}

#filterUpper {
    height: inherit;
    width: inherit;
    float: left;
}

.selectedFilterContainer {
    margin: 5px;
    border: 1px solid #eef1f514;
    padding: 3px;
    border-radius: 5px;
    float: left;
    width: calc(100% - 18px);
    color: #e8e8e8;
}

.selectedFilterType {
    float: left;
    margin-right: 5px;
    line-height: 16px;
}

.selectedFilterContains {
    float: left;
    margin: 0 2px;
    font-size: 12px;
    line-height: 16px;
    font-style: italic;
}

.selectedFilterVal {
    float: left;
    margin-left: 5px;
    line-height: 16px;
}

.filterButtonsContainer {
    float: left;
    width: calc(100% - 10px);
    margin: 0 5px 10px 5px;
    text-align: center;
}

.filterUpdateButton, .filterClearButton {
    margin: 0 3px;
    border-radius: 5px;
    height: 20px;
    border: none;
    opacity: .85;
    transition: all .1s ease;
}

.filterUpdateButton:hover, .filterClearButton:hover {
    cursor: pointer;
    opacity: 1;
}

.filterUpdateButton:focus, .filterClearButton:focus {
    outline: 0;
}

#filterLowerWrapper {
    float: left;
    width: 100%;
    height: auto;
}

.addFilterButtonContainer {
    text-align: center;
    margin: 5px;
}

.addFilterButton {
    border-radius: 5px;
    height: 30px;
    border: none;
    opacity: .85;
    transition: all .1s ease;
}

.addFilterButton:hover {
    cursor: pointer;
    opacity: 1;
}

.addFilterButton:focus {
    outline: 0;
}

#filterSelect {
    margin: 2px 5px;
    border: none;
    border-radius: 5px;
    height: 25px;
    padding-left: 5px;
}

#filterSelect:focus {
    outline: none;
}

#filterInput {
    margin: 2px 5px;
    border: none;
    border-radius: 5px;
    height: 25px;
    padding-left: 5px;
}

#filterInput:focus {
    outline: none;

}

#filterPlus {
    border-radius: 50%;
    border: none;
    opacity: .85;
    transition: all .1s ease;
    height: 25px;
    width: 25px;
}

#filterPlus:hover {
    cursor: pointer;
    opacity: 1;
}

#filterPlus:focus {
    outline: 0;
}

table tr:nth-child(even) {
    background-color: #f1f1f140;
}

table tr:nth-child(odd) {
    background-color: #ffffff;
}

.headerCellInnerContainer {
    min-width: 123px;
    width: auto;
    float: left;
}

.headerLabel {
    float: left;
}

.sortOption {
    height: 20px;
    width: 20px;
    float: left;
    cursor: pointer;
    opacity: .7;
    background-position: center;
    background-size: 15px;
    background-repeat: no-repeat;
    background-image: url("sort-48.png");
}

.sortOption.visible {
    opacity: 1;
    background-image: url("sort-up-48.png");
}

.sortOption.desc {
    opacity: 1;
    background-image: url("sort-down-48.png");
}

.sortOption:hover {
    opacity: 1;
}

.searchBarIcon {
    height: 20px;
    width: 20px;
    float: left;
    cursor: pointer;
    opacity: .7;
    background-position: center;
    background-size: 15px;
    background-repeat: no-repeat;
    background-image: url("search-48.png");
}

.searchBarWrapper {
    margin: 10px 0;
    display: none;
}

#searchBarInput {
    border: none;
    border-bottom: 1px solid #eef1f5;
    width: 400px;
    padding: 0 10px;
}

#searchBarInput:focus {
    outline: 0;
}