/* ##### ADMIN Boxes ##### */
* {
	font-family: arial;
	box-sizing: border-box;
}

/* Boxes */
.event_overview_box {
	border-top: 5px solid #666;
	width: 100%;
	min-width: 600px;
	max-width: 1200px;
	min-height: 88px;
	display: flex;
	margin-bottom: 20px;
	box-shadow: 5px 5px 10px;
}

.event_overview_box .eventoverviewcontainer {
	width: 100%;
	min-width: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 2px;
}

.eventoverviewcontainer.vertical {
	height: 50%;
}

.eventoverviewcontainer.vertical.Full {
	padding: 0px;
	height: 100%;
}

.eventoverviewcontainer.vertical.third {
	padding: 0px;
	height: 33%;
}

.justifycenter {
	justify-content: center;
}

.eventoverviewcontainer form {
	margin: 0;
}

.eventoverviewcontainer.horizontal {
	width: 50%;
	height: auto;
}

.eventoverviewcontainer span.right {
	text-align: right;
	width: 100%;
}

.eventoverviewcontainer .small {
	width: 25%;
}

.eventoverviewcontainer form {
	width: 100%;
	height: 100%;
}

.eventoverviewcontainer input[type=submit], .eventoverviewcontainer button
	{
	border: 1px solid grey;
	padding: 4px;
	width: 100%;
	height: 100%;
	/*border-radius: 10px;*/
	transition-duration: 0.4s;
	opacity: 0.7;
}

.eventoverviewcontainer input[type=submit]:hover:enabled,
	.eventoverviewcontainer button:hover {
	border-color: orange;
	height: 100%;
	opacity: 1;
}

.progressBar {
	text-align: center;
	background-color: lightgrey;
	width: 100%;
	height: 100%;
	padding: 1px;
	box-sizing: border-box;
}

.progressBar.percent {
	background-color: grey;
}

.progressBar.percent.green {
	background-color: springgreen;
}

.progressBar.percent.orange {
	background-color: orange;
}

.progressBar.percent.red {
	background-color: red;
}