* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.container_tbl {
    min-width: 320px;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    font-size: 13px;
}

table th {
    text-align: center;
    background-color: dimgrey;
    color: white;
}

table td {
    word-wrap: break-word;
    word-break: break-all;
}


table td, table th {
    padding: 8px;
    border: 1px solid #aaa;
}

tr:nth-child(even) {
    background-color: #f8f4e4
}


@media (max-width: 1330px) {

    .container_tbl table thead {
        display: none;
    }

    .container_tbl table tr {
        display: block;
    }

    .container_tbl table td {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        word-break: break-word;
    }

    .container_tbl table td::before {
        content: attr(data-label);
        font-weight: bold;
        margin-right: 20px;
        word-break: break-word;
    }

}

.form-group {
/*    margin-bottom: 5px;*/
}