/*EDITION*/
.add-section-line{
	height: 4px;
	background: #0099bc;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: relative;
	z-index: 5;
}
.add-section{
	width: 200px;
	height: 30px;
	position: absolute;
	top: -14px;
	background: #0099bc;
	border-radius: 25px;
	left: 50%;
	margin-left: -100px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
	color: #fff;
	cursor: pointer;
	transition: .5s;
}
.add-section:hover{
	background: #237b96;
}
.section-actions{
	position: absolute;
	top: 40px;
	right: 20px;
	z-index: 200;
	text-shadow: 0 0 6px #000;
	color: #fff;
}
.template-picker-content{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 15px 0;
}
.template-tile{
	cursor: pointer;
}
.template-title{
	text-align: center;
	padding: 0 0 10px;
}
.meta-box{
	position: relative;
	height: 100%;
	padding: 20px 20px 71px 20px;
}
.meta-content{
	height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: column;
}
.meta-content label{
	margin: 10px 0;
}
.meta-content label:last-child{
	flex-grow: 1;
}
.meta-content textarea[name="description"]{
	height: calc(100% - 30px);
}
.meta-block {
	padding: 10px;
	margin: 10px;
	background: #e9e9e9;
	border-radius: 6px;
}
.meta-title {
	font-weight: 600;
	font-size: 18px;
	border-bottom: 2px solid #0002;
	margin: 0 0 10px 0;
}

.section-edit{
	padding: 15px;
	font-size: 14px;
}
.section-edit label{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	flex-wrap: wrap;
}
.section-edit input:not([type="checkbox"]){
	width: 50px;
}