#titelvorschlag_main_div
{
	margin-top:20px;
	display:flex;
	flex-direction:column;
	width:100%;
	height:auto;
}
#tv_reiter_container
{
	display:flex;
	flex-direction:row;
	width:100%;
	height:auto;
	justify-content : space-around;
}
.tv_weiter
{
	position:absolute;
	right:0px;
	height:100%;
	width:10%;
	min-width:50px;
	color:#be1110;
	font-size:48px;
	display:flex;
	justify-content: center;
	align-items: center;
	cursor:pointer;
	z-index: 100;
}
.tv_weiter:hover
{
	background-color:rgba(255, 255, 255, 0.5);
}
.tv_reiter_div
{
	background-color:#be1110;
	height:100%;
	cursor:pointer;
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
	border-radius: 5px 5px 0px 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color:white;
}
.tv_reiter_text_mobil
{
	display:none;
}
.tv_reiter_div:hover
{
	background-color:white;
	color:#be1110;
}
.tv_reiter_text
{
	font-weight:400;
	font-size:16px;
	margin:15px;
	font-family: 'Open Sans', sans-serif;
}
#tv_inhalte_container
{
	width:100%;
	height:400px;
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
	border-radius: 5px;
}
#tv_inhalte_subcontainer
{
	width:100%;
	height:100%;
	display:flex;
	flex-direction:row;
	position: relative;
}
.tv_inhalte_subcontainer
{
	width:100%;
	height:100%;
	display:none;
	flex-direction:row;
	justify-content: flex-end;
	overflow: hidden;
	align-items: flex-end;
}
.tv_inhalt_item
{
	display:flex;
	flex-direction:row;
	justify-content : space-around;
	width:20%;
	min-width:20%;
	max-width: 20%;
}
@media screen and (max-width: 799px)
{
	#titelvorschlag_main_div
	{
		height:0%;	
	}
	.tv_inhalte_subcontainer
	{
		justify-content : space-around;
	}
	.tv_inhalt_item
	{
		width:100%;
		min-width:100%;
		max-width: 100%;
	}
	#tv_inhalte_container
	{
		height:550px;
	}
	.nonmobil
	{
		display:none;
	}
	.tv_reiter_text_mobil
	{
		display:inline;
		font-weight:400;
		font-size:16px;
		margin:5px;
		font-family: 'Open Sans', sans-serif;
	}	
	#tv_reiter_container
	{
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}