#close a
{
	background-color: #ff0000;
	color: #ffffff;
	width: 2em;
	font-weight: bold;
	position: absolute;
	top: 2px;
	right: 2px;
	text-decoration: none;
	border: 1px solid #ffffff;
	text-align: center;
}

#popup
{
	position: absolute;
	margin-left: -50px;
	top: 40%;
	margin-top: -50px;
	color: #000;
	border-style: solid;
	border-color: #2f3109;
	border-width: 1px;
	border-radius: 8px;
	-webkit-transform: rotate(-3deg);
	transform: rotate(-3deg);
	padding: 6px 1rem;
	background: rgba(244, 241, 231, 0.9);
	display: block;
	margin: -9vw 0 5rem 6vw;
	text-align: center;
	max-width: 85%;
	width: 73vw;
	font-size: calc(0.5vw + 15px);
	z-index: 100000;
}

#popup p
{
	color: #000;
	line-height: 1.5em;
	padding-bottom: 1em;
}

@media only screen and (max-width: 600px)
{
	#popup
	{
		position: absolute;
		margin-left: -50px;
		top: 15%;
		left: 1%;
		margin-top: -50px;
		color: #000;
		border-style: solid;
		border-color: #2f3109;
		border-width: 1px;
		border-radius: 8px;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		padding: 6px 1rem;
		background: rgba(244, 241, 231, 0.9);
		display: block;
		margin: -9vw 0 5rem 6vw;
		text-align: center;
		max-width: 85%;
		width: 85vw;
		font-size: calc(0.5vw + 15px);
		z-index: 100000;
	}
}

/*================== Marked List ======================*/
.hinweis-list ul { margin-left: 1em; }

.hinweis-list li
{
	position: relative;
	text-align: left;
	padding-left: 1.5em;
	color: #000;
}

.hinweis-list li:before
{
	content: '\f061';
	position: absolute;
	left: 0;
	top: 2px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	color: #e74c3c;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.hinweis-list li + li { margin-top: 50px; }

.hinweis-list li:hover:before
{
	color: #373737;
	left: 4px;
}

.hinweis-list a:hover { color: #e74c3c; }