.info-table {
	width: 100%;
}

.info-table a {
    text-decoration: underline;
}

.info-table-tr:nth-child(odd) {
    background: var(--light);
}

.info-table-tr:nth-child(even) {
    background: var(--white);
}

.info-table-tr:first-child {
    background: var(--dark);
    color: var(--white);
}

.info-table-td {
    padding: 15px 10px 5px 10px;
}

@media screen and (max-width:767px) {

	.info-table {
		display: block;
		overflow: auto;
	}

}