/* Flexible Column Layout */
.dp_grid {
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	zoom: 1;
	margin-bottom: 20px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.dp_grid > * {
	display: block;
	-ms-flex: 0 1 auto;
	flex-grow: 1;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	float: left;
	box-sizing: border-box;
}

.dp_grid > *:first-child {
	clear: both;
}

.mceContentBody .dp_grid > * {
	outline: 1px dotted #E0E0E0;
}

.dp_grid.dp-5-columns > .dp-unit,
.dp_grid > .unit-1-5 {
	max-width: 20%;
}

.dp_grid > .unit-2-5 {
	max-width: 40%;
}

.dp_grid > .unit-3-5 {
	max-width: 60%;
}

.dp_grid > .unit-4-5 {
	max-width: 80%;
}

.dp_grid.dp-4-columns > .dp-unit,
.dp_grid > .unit-1-4 {
	max-width: 25%;
	*width: 20.5%; /* IE7 :( */
}

.dp_grid.dp-2-columns > .dp-unit,
.dp_grid > .unit-2-4,
.dp_grid > .unit-1-2 {
	max-width: 50%;
	*width: 45.5%; /* IE7 :( */
}

.dp_grid.dp-3-columns > .dp-unit,
.dp_grid > .unit-1-3 {
	max-width: 33.33%;
	*width: 29.2%; /* IE7 :( */
}

.dp_grid > .unit-2-3 {
	max-width: 66.66%;
	*width: 62.5%; /* IE7 :( */
}

.dp_grid > .unit-3-4 {
	max-width: 75%;
}

.dp_grid > .dp-unit,
.dp_grid > .unit-2-2,
.dp_grid > .unit-3-3,
.dp_grid > .unit-4-4,
.dp_grid > .unit-5-5,
.dp_grid > .unit-1-1,
.dp_grid > .unit-1 {
	width: 100%;
}

.editor-writing-flow .editor-block-list__layout .editor-block-list__block[data-type="dataperk/columns"]>.editor-block-list__block-edit:before {
	outline: 1px solid black;
}

.editor-writing-flow .editor-block-list__layout .editor-block-list__block[data-type="dataperk/column"]>.editor-block-list__block-edit:before {
	outline: 1px dashed grey;
}

.edit-post-visual-editor .editor-block-list__block[data-type^="dataperk"] .editor-block-list__block[data-type^="dataperk"] {
	margin: 10px;
}