
/**
 * Table
 */

label {
  width: 100%;
}

.table{
    width: 100%;
    font-size: 14px;
    margin-bottom: 1em;
    /*table-layout: fixed;*/
}

    /* Cell */

    .table th, .table td{
        padding: 0.8em !important;
        text-align: left !important;
        vertical-align: top !important;
        border-bottom: 1px #00a6e5 solid !important;
    }

    /* TH */

    .table th{
        background: #2C3E50;
        font-weight: 600;
        color: #fff;
        border: 1px #2C3E50 solid;
    }

    .x{
        width: 33% !important;
    }
    .y{
        width: 5% !important;
    }


    /* Hover */

    .table tr:hover > td{
        background-color: #E2F1FE;
    }


/**
 * Datatables
 */

.dataTables_filter{

    margin-bottom: 1em;
    text-align: center;
}

    /* Input */

    .dataTables_filter input{
        padding: 1em;
        border: 5px #2c3e50 solid;
        border-radius: 3px;
        width:100%;
        max-width: 600px;
        box-sizing: border-box;
    }

    /* Wrapper */

    .dataTables_wrapper{
        padding-bottom: 2em;
    }

        .dataTables_wrapper:after{
            visibility: hidden;
            display: block;
            font-size: 0;
            content: " ";
            clear: both;
            height: 0;
        }

    /* Info */

    .dataTables_info{
        float: left;
    }


    /* Paginate */

    .dataTables_paginate{
        float: right;
        display: none;
    }

        .dataTables_paginate a{
            color: #006eab;
            margin: 0 5px;
            cursor: pointer;
        }

        .dataTables_paginate .current{
            color: #000;
        }

        .dataTables_paginate .disabled{
            opacity: 0.4;
        }



    /**
     * Expand/Collapse
     */

    .collapsed td{
        cursor: pointer;
    }

    .collapsed td:first-child:before{
        content: '+';
        padding-right: 0.2em;
    }

    .collapsed .parent td{
        background-color: #E2F1FE;
    }
    .collapsed .parent td:first-child:before{
        content: "−";
    }

        /* Child */

        .collapsed .child:before{
            display: none;
        }

        /* List */

        .child ul{
            margin-left: 2em;
            padding-left: 0;
        }


        /* Mobile */

        @media only screen and (min-width: 600px){
            .dataTables_paginate{
                display: block;
            }
