
 /*h1{
    text-align: center;
    margin-bottom: 40px;
}*/

.table-responsive {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0 auto;
}
/* Zebra striping */
.table-responsive tr:nth-of-type(odd) {
    background: #fff;
}
.table-responsive th {
    background: #fff;
    color: #000;
    font-weight: 600;
}

.table-responsive td, .table-responsive th {
    padding: 7px;
    border: 1px solid #ccc;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
}

/*Mobile View*/
@media 
only screen and 
    (max-width: 760px){
    .table-responsive td, .table-responsive tr { 
        display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.table-responsive thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
    .table-responsive tr {
        border: 1px solid #ccc; 
    }
    .table-responsive tr + tr{
        margin-top: 1.5em;
    }
	
    .table-responsive td { 
		/* make like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
        background-color: #fbfafa;
        text-align: left; 
        overflow-wrap:break-word;
        white-space:normal;
	}

	.table-responsive td:before { 
        content: attr(data-label);
        display: inline-block;
        line-height: 1.5;
	    margin-left: -100%;
        width: 100%;
		white-space: nowrap;
	}
}