/* Table row. */
.dipl_advanced_table-row.dipl-at-header-row .dipl_advanced_table_item,
.dipl_advanced_table_item_responsive_heading{
	background-color: #176df6;
	border: 0 solid #000000;
}

/* Table cell. */
.dipl_advanced_table .dipl_advanced_table-row-cell .dipl_advanced_table_item{
	padding: 20px;
	border: 0 solid #000000;
	height: 100%;
}
.dipl_advanced_table_item .et_pb_module_inner{
	height: 100%;
}
.dipl_advanced_table_item_cell{
	display: flex;
	align-items: center;
	height: 100%;
}
.dipl-at-header-cell .dipl_advanced_table_item_cell,
.dipl_advanced_table_item_responsive_heading{
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
}
.dipl_advanced_table-row:not( .dipl-at-header-row ) .dipl_advanced_table_item{
	background-color: #f8f8f8;
}
.dipl_advanced_table_item_cell_wrap{
	display: flex;
	flex-direction: column;
}
.dipl_advanced_table-row-cell{
	flex: 1;
}

/* Responsive. */
.dipl_advanced_table_item_responsive_heading{
	display: none;
}

@media (min-width: 981px) {
	.dipl_advanced_table-row{
		display: grid;
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}
}
@media (max-width: 980px) {
	.dipl_advanced_table-row.dipl-at-header-row{
		display: none;
	}
	.dipl_advanced_table_item_cell_wrap{
		display: flex;
		flex-direction: row;
		width: 100%;
    }
	.dipl_advanced_table_item_cell_wrap > * {
		flex: 1 1 0;
	}
	.dipl_advanced_table_item_responsive_heading{
		display: flex;
		align-items: center;
		flex: 0 0 50% !important;
		max-width: 50% !important;
    }
}