body.debug {
	/* visibility:visible; */;
}

/** resets */
.transport-times-table thead tr{
	border-color: transparent;
}

.transport-times-table tbody tr{
	border-bottom: 1px solid var(--color-midgray);
}

/** Default Table layout */
.transport-times-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: .75em;
}
.transport-times-table-thead-col,
.transport-times-table-col-inner,
.transport-times-table-col:before{
	padding-left: 1.2rem;
	padding-right: 1.2rem;
}

.transport-times-table-col:before,
.transport-times-table-thead-col  {
	font-family:var(--font-family-body-bold);
	font-weight:var(--font-weight-body-bold);
	text-transform:uppercase;
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0;
	color:var(--color-text-body);
	background-color:var(--color-lightgray)!important;
}

.transport-times-table-thead-col,
.transport-times-table-col:before{
	margin-top: 0;
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
	margin-bottom: 0;
	vertical-align: middle;
}

.transport-times-table-col  {
	vertical-align: middle;
}

.transport-times-table-col:before{
	overflow: hidden;
}

.transport-times-table-col-inner{
	display: block;
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
}


.transport-times-table-col:nth-of-type(1):before {
/* 	content: 'Column 1'; */
}
.transport-times-table-col:nth-of-type(2):before {
/* 	content: 'Column 2'; */
}
.transport-times-table-col:nth-of-type(3):before {
/* 	content: 'Column 3'; */
}
.transport-times-table-col:nth-of-type(4):before {
/* 	content: 'Column 4'; */
}
.transport-times-table-col:nth-of-type(5):before {
/* 	content: 'Column 5'; */
}
.transport-times-table-col:nth-of-type(6):before {
/* 	content: 'Column 6'; */
}
.transport-times-table-col:nth-of-type(7):before {
/* 	content: 'Column 7'; */
}
.transport-times-table-col:nth-of-type(8):before {
/* 	content: 'Column 8'; */
}
.transport-times-table-col:nth-of-type(9):before {
/* 	content: 'Column 9'; */
}
.transport-times-table-col:nth-of-type(10):before {
/* 	content: 'Column 10'; */
}
.transport-times-table-col:before {
	display: none;
}
.transport-times-table-thead-col  {
	text-align: left;
}
.transport-times-table-info{
	display: block;
	padding-top: 1.4rem;
/* 	padding-bottom: 1.4rem; */
	color: var(--color-midgray);
}

.transport-times-table + .transport-times-table-info{
	margin-top: -0.75em;
	margin-bottom: 0.75em;
}

/** Responsive table - none table layout settings  - Small device - Responsive table */
@media screen and (max-width:719px), (min-width:960px) and (max-width:1014px) {
	.transport-times-table-col:before {
		display: block!important;
	}
	/** Force table to not be like tables anymore */
	.transport-times-table,
	.transport-times-table tbody,
	.transport-times-table-col,
	.transport-times-table tfoot,
	.transport-times-table-thead-col ,
	.transport-times-table thead,
	.transport-times-table tr {
		display: block;
	}
	/** Hide table headers (but not display: none;, for accessibility) */
	.transport-times-table thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.transport-times-table-col {
		position: relative;
		border-color: transparent;
	}
	.transport-times-table tr {
		padding-top: .75em;
		padding-bottom: .75em;
	}
}

/** Responsive table - layout - two column */
@media screen and (min-width:20px) and (max-width:719px), (min-width:960px) and (max-width:1014px) {
	.transport-times-table-col {
		position: relative;
	}
	.transport-times-table-col {
		padding-left: 50%;
	}
	.transport-times-table-col:before {
		display: inline-block!important;
		position: absolute;
		top: 0;
		left: 0;
		width: 48%;
/* 		padding-right: 1rem; */
		white-space: nowrap;
	}
}