﻿@media only screen and (max-width: 600px) {
    .table-card {
        min-width: 400px;
    }
}

@media screen and (max-width: 601px) and (min-width: 992px) {
    .table-card {
        min-width: 600px;
    }
}

@media only screen and (min-width: 993px) {
    .table-card {
        min-width: 993px;
    }
}

.table .row, table .row {
    height: 32px;
    margin: 0;
    padding: 0;
}

.table .col, table td {
    margin: 0;
    padding: 0;
}

.table .row [type="checkbox"] + label {
    margin-top: 5px;
}

.table .thead .row .col:first-child, .table .tbody .row .col:first-child {
    margin-left: 8px;
}

.table .row .col[name=Selected], .table .row .col[name=Selected] {
    margin-left: 8px;
}

.table .row .col {
    overflow: hidden;
    min-height: 24px;
    line-height: 24px;
    height: 30px;
}

.table .row div.col, table tr th {
    line-height: 32px;
}

.table .row div.col i {
    padding-top: 0;
    line-height: 32px;
}

.table .row div.col span {
    overflow: hidden;
}

.table .thead, table thead {
    color: white;
    height: 32px;
}

    .table .thead .row, table thead .row {
        background-color: #3469a3;
    }

    .table .thead input[type=text], table thead input[type=text] {
        padding-left: 8px;
        width: auto;
        max-width: 60px;
        outline: 0;
        font-size: 12px;
    }

    .table .thead i, table thead i {
        padding-right: 12px;
        margin: 0 12px;
    }

    .table .thead span, table thead span {
        font-weight: 700;
    }

.table .tbody {
    min-height: 65vh;
}

/*----------------------------------------
    Pagging wapper Css
------------------------------------------*/

.pagging-wapper .selected-count {
    position: absolute;
    left: 16px;
    bottom: 24px;
}

    .pagging-wapper .selected-count span {
        height: 45px;
        vertical-align: super;
        padding-left: 4px;
    }

        .pagging-wapper .selected-count span.count {
            font-size: 24px;
        }

        .pagging-wapper .selected-count span.search-result {
            font-size: 18px;
        }

        .pagging-wapper .selected-count span.total-count {
            font-size: 12px;
        }

    .pagging-wapper .selected-count i {
        font-size: 30px;
        margin-bottom: 0;
    }

.pagging-wapper .pagination {
    margin-top: 24px;
    text-align: center;
    vertical-align: middle;
}

    .pagging-wapper .pagination li {
        vertical-align: bottom;
        /*vertical-align: middle;*/
    }

        .pagging-wapper .pagination li i {
            font-size: 1.8rem;
        }

            .pagging-wapper .pagination li i.tiny {
                font-size: 0.8rem;
            }

.pagging-wapper .pagination-count {
    position: absolute;
    max-width: 42px;
    right: 48px;
    bottom: 22px;
}

    .pagging-wapper .pagination-count span.caret {
        left: 0;
        top: 8px;
        padding-left: 42px;
    }

    .pagging-wapper .pagination-count input {
        padding-left: 8px;
        height: 32px;
    }

/*----------------------------------------
    Search wapper Css
------------------------------------------*/
.search-wapper .search-box {
    margin: 0 auto;
}

    .search-wapper .search-box .advanced {
        display: none;
    }

.search-wapper .submit-search-btn i {
    position: absolute;
    right: 96px;
}

.search-wapper .fuzzy-search-btn i {
    position: absolute;
    right: 32px;
}

.search-wapper .open-filter-btn,
.search-wapper .fuzzy-search-btn,
.search-wapper .clear-filter-btn,
.search-wapper .close-filter-btn {
    position: absolute;
    right: 32px;
}

    .search-wapper .submit-search-btn i,
    .search-wapper .fuzzy-search-btn i,
    .search-wapper .open-filter-btn i,
    .search-wapper .clear-filter-btn i,
    .search-wapper .close-filter-btn i {
        font-size: 28px;
    }

/*----------------------------------------
    Materlize Icon Css
------------------------------------------*/

.table .tbody div.row:nth-child(odd) {
    background-color: #f2f2f2;
}

.tbody i[class^="mdi-"], .tbody i[class*="mdi-"] {
    padding-left: 0;
}

.setting i[class^="mdi-"], .setting i[class*="mdi-"] {
    padding-left: 0;
}

/*----------------------------------------
    Materlize chip Css
------------------------------------------*/

.chip {
    display: inline-block;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    line-height: 24px;
    padding: 0 12px;
    border-radius: 16px;
    background-color: #FD5252;
}

    .chip i.material-icons {
        cursor: pointer;
        float: right;
        font-size: 12px;
        line-height: 24px;
        padding-left: 8px;
    }

/*----------------------------------------
    auto-complete.css
------------------------------------------*/

.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border: 1px solid #ccc;
    border-top: 0;
    background: #fff;
    box-shadow: -1px 1px 3px #000000;
    box-shadow: -1px 1px 3px rgba(0,0,0,.1);
    /* core styles should not be changed */
    position: absolute;
    display: none;
    z-index: 9999;
    max-height: 254px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.autocomplete-suggestion {
    position: relative;
    padding: 0 .6em;
    line-height: 23px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.02em;
    color: #333;
}

    .autocomplete-suggestion b {
        font-weight: normal;
        color: #1f8dd6;
    }

    .autocomplete-suggestion.selected {
        background: #f0f0f0;
    }