/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13/02/2019, 00:39:51
    Author     : jasj
*/

    /* Table Base */

    table {
        max-width: 99%;
        background-color: transparent;
        border-collapse: collapse;
        border-spacing: 0;
        font-family: arial;
    }
    .left{
        text-align: left;    
    }

    .center{
        text-align: center;
    }

    .right{
        text-align: right;
    }

    .tablex {
        border-bottom: #999999 solid 1px;
        width: 99%;
        margin-bottom: 20px;
    }
    
    .tablex select,
    .tablex input,
    .tablex jr {
        border-style: none;
        height: 34px; 
        width: 100%; 
        background: transparent;
        font-size: 14px;
        font-weight: bold;
        color: #0055cc;
        background-image: none;      
    }
    
    .tablex th
    {
        /*border-right: #999999 solid 1px;*/
        font-size: 14px;
        padding-top: 0px;
        padding-right: 8px;
        padding-bottom: 0px;
        padding-left: 0px;
        line-height: 25px;
        /*text-align: left;*/
        vertical-align: middle;
    }
    .tablex td {
        /*border-right: #999999 solid 1px;*/
        font-size: 12px;
        padding: 8px;
        line-height: 1;
        /*text-align: center;*/
        vertical-align: middle;
    }

    .tablex td:last-child {
        border-right: 0;
    }

    .tablex thead th {
        font-weight: bold;
        background-color: #dd4b39;
        color: #fff;
        font-size: 12px;
        /*text-align: center;*/
    }

    .tablex tbody > tr:nth-child(odd) > td,
    .tablex tbody > tr:nth-child(odd) > th {
        background-color: #f8f8f8;
    }


    /* Small Sizes */
    @media (max-width: 767px) { 

        /* Responsive Table */
        .table-responsivex {
            display: block;
            position: relative;
            width: 100%;
        }

        .table-responsivex thead,
        .table-responsivex tbody,
        .table-responsivex tfoot,
        .table-responsivex th,
        .table-responsivex td,
        .table-responsivex tr {
            display: block;
        }
        .table-responsivex td,
        .table-responsivex th {
            height: 35px;
        }

        .table-responsivex thead {
            float: left;
        }

        .table-responsivex tbody {
            width: auto;
            position: relative;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            white-space: nowrap;
        }
        
        .table-responsivex tfoot {
            float: right;
        }

        .table-responsivex tbody tr {
            display: inline-block;
        }


        .table td:last-child {
            border-right: #999999 solid 1px;
        }


    }

