meta-box {
	display: block;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e8e8e8;
}

meta-box:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

meta-box h3 {
	display: block;
	font: inherit;
	font-size: 15px;
	margin: 0 0 25px 0;
	width: 100%;
}

meta-box meta-title {
	display: table;
	width: 100%;
	margin-bottom: 15px;
}

meta-box meta-title h3 {
	display: table-cell;
	vertical-align: middle;
}

meta-box.box meta-title {
	margin-bottom: 0px;
}

meta-box.box meta-title h3 {
	padding: 5px 10px;
}

meta-box meta-title box-menu {
	display: table-cell;
	vertical-align: middle;
}

meta-box meta-container {
	/*display: table;*/
	display: grid;
	grid-template-columns: auto auto;
	grid-column-gap: 25px;
}

meta-box meta-sidebar {
	width: 250px;
}

meta-box meta-content:only-child {
	/*display: block;
	width: 100%;*/
	grid-column: span 2;
}

meta-box.box {
	padding-bottom: 0;
	border-bottom: none;
}

meta-box.box h3 {
	margin-bottom: 0px !important;
	border-radius: 3px;
	color: #fff;
	background: #444;
	font-weight: normal;
	padding: 2px 5px;
}

meta-box.box meta-content {
	background: #f5f5f5 !important;
	padding: 15px 10px 10px 10px;
	border-radius: 4px;
}

@media only screen and (max-width:1000px) {
	meta-box meta-sidebar {
		width: 220px
	}
}

@media only screen and (max-width:600px) {
	meta-box meta-container {
		grid-template-columns: auto;
	}
	meta-box meta-content {
		grid-column: span 1;
	}
	meta-box meta-sidebar {
		margin-top: 30px;
		border-top: 1px solid #e8e8e8;
		padding-top: 20px;
		padding-left: 0px;
		grid-column: span 1;
		width: 100%
	}
}