/***********************************************************************************************************************
 * NEW FORM - The form on each overview page
 **********************************************************************************************************************/
.project-new form,
.news-new form,
.wish-new form,
.person-new form,
.partner-new form
{
	display: flex;
	justify-content: space-between;
}
.all .documents.content-block div h1,
.all .project-new.content-block div h1,
.all .news-new.content-block div h1,
.all .wish-new.content-block div h1,
.all .person-new.content-block div h1,
.all .partner-new.content-block div h1
{
	margin-top: 0;
	margin-bottom: 3rem;
}
/***********************************************************************************************************************
 * ENTITY GRID
 **********************************************************************************************************************/
.all .card-cell {
	position: relative;
}
.progress > div {
	position: absolute;
	background: var(--grey);
	height: 2rem;
}
.card-cell.published.marked .progress > div,
.card-cell.unpublished.marked .progress > div
{
	background: var(--warning);
}
.card-cell.published .progress > div {
	background: var(--info);
}
.progress {
	position: relative;
	/*background-color: var(--grey);*/
	height: 2rem;
	overflow: hidden;
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.15);
	box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.15);
}

.progress > span {
	display: block;
	position: absolute;
	height: 2rem;
	font-size: 0.8rem;
	text-align: center;
	width: 100%;
	color: var(--black);
}


.all .card-cell div.progress {
	right: 15px;
	bottom: 15px;
	position: absolute;
	line-height: 2rem;
	width: 200px;
}

.all .card-cell div.progress > div {
	line-height: 2rem;
	margin: 0;
}
.all .card-cell {
	overflow: hidden;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
}
.all .card-cell a {
	text-decoration: none;
	color: var(--black);
	font-size: 1.2em;
	line-height: 2rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 75%;
}
.all .card-cell img {
	opacity: 0.4;
	filter: grayscale(100%);
}

.all .card-cell table {
	width: 100%;
}
.all .card-cell table tr td:first-child {
	width: 20px;
}
.all .card-cell table tr td:nth-child(3) {
	width: 100px;
}
.all .card-cell table td {
	font-size: 0.9rem;
	line-height: 1.8rem;
	padding: 0;
	margin: 0;
}
.all .card-cell::after {
	background-color: var(--grey);
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
}
.all .card-cell.unpublished * {
	color: var(--grey);
}

.all .card-cell.published {
	background-color: white;
}
.all .card-cell.published::after {
	opacity: 1;
	background-color: var(--info);
}

.all .card-cell.marked {

}

.all .card-cell.marked::after {
	opacity: 1;
	background-color: var(--warning)
}

.all .card-cell.published img {
	opacity: 1;
	filter: none;
}
