﻿.layout-panes-container {
	border: solid 1px #c7cbd1;
	box-sizing: border-box;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	cursor: pointer;
}
.active.layout-panes-container {border-color: #295287; pointer-events: none;}
.layout-panes-container:after {
	content: "";
	display: block;
	clear: both;
}
.active .layout-panes-item { background: #295287; }
.layout-panes-item {
	display: block;
	float: left;
	/*border: solid 1px #c7cbd1;*/
	background: #c7cbd1;
	box-sizing: border-box;
	margin: 1px;
}
	.layout-panes-item.layout-view-4x2 {
		width: calc(100% / 4 - 2px);
		height: calc(100% / 2 - 2px);
	}
	.layout-panes-item.layout-view-6x3 {
		width: calc(100% / 6 - 2px);
		height: calc(100% / 3 - 2px);
	}
	.layout-panes-item.layout-view-8x4 {
		width: calc(100% / 8 - 2px);
		height: calc(100% / 4 - 2px);
	}		