﻿@charset "utf-8";

/* Custom Select */

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  border-radius: 5px;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: #FFFFFF;
  border: 1px solid #4CAF50;
  border-radius: 5px;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #000000;
  /*padding: 8px 16px 8px 35px;*/
	padding:10px 10px 10px 35px;
	box-sizing:border-box;
	outline:none;
  cursor: pointer;
}
/*style items (options):*/
.select-items {
  position: absolute;
  border: 1px solid #4CAF50;
  background-color: #FFFFFF;
  color: #000000;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 250px;
  border-radius: 5px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;

}

/*hide the items when the select box is closed:*/
.select-hide {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;

}
.select-items div:hover {
  background-color: #4CAF50;
  color: #FFFFFF;
}



/*Back to Top Button*/

.x{
   width: 100%;
   position: absolute;
   top: 0px;
   left: 50%;
   margin-left: 50%; /*half the size of width*/
}

#myBtn {
	opacity: 0;
    visibility: hidden;
	position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

#myBtn a {
	color: #DDDDDD;
	font-size: 3em;	
}

#myBtn a:hover {
	color: #4caf50;
}


/*GWN Allgemein*/

.error {
	position: fixed;
	width: 500px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin-top: -100px; /* Negative half of height. */
	margin-left: -250px; /* Negative half of width. */
	background: #FFFFFF;
	padding: 25px;
	border: 5px solid red;
	z-index: 99;
	overflow: auto;
	word-wrap: break-word;
}

.form_container {
	padding:15px;
	border:1px dashed #ccc;
	position: relative;
}

* {
	padding:0;
	margin:0;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;	
	scroll-behavior: smooth;
}

body {
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	background: #516e40;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	color: #4caf50;
}

a:hover {
	color: #f5ba1a;	
}

.footer_container {
	padding: 0 5px 0 5px;
	text-align:center;
	margin: 20px -15px -5px -15px;
	padding-top:10px;
	border-top:1px dashed #ccc;
	font-size: 0.9em;
}

.backlinks {
	float: left;
	margin-left: 5px;
	font-size: 1.0em;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.eintragen {
	float: right;
	margin-right: 5px;
	font-size: 1.0em;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.backlinks, .eintragen {
	color: #4caf50;
	text-decoration: none;
}

body.Hover .backlinks:hover, body.Hover .backlinks:active, body.Hover .eintragen:hover, body.Hover .eintragen:active {
	color: #f5ba1a;
}

.bg_img {
	background:url(../images/background.jpg) no-repeat center;
	background-size:cover;
	background-attachment:fixed;
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-o-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
	position:fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:0;
}

.container_bg {
	background:url(../images/gwn.svg) no-repeat top left;
	background-size: 60px 76px;
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
	height: 100%;
	opacity: 0.2;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}


.footer_container.credit {
	margin-top: 25px;
	position:relative;
	z-index:1;
	text-align:center;
	padding: 10px 0 0px 0;
	color:#f5ba1a;	
	font-size: 0.8em;
}

.noData {
	color: #CCCCCC;
	text-align: center;
	width: 100%;
	margin: 90px 0 50px 0;
	display: none;
	white-space:nowrap;	
}

/*GWN-Eintrag*/

.form_wrapper_entry {
	background:#fff;
	max-width:600px;
	width:90%;
	box-sizing:border-box;
	padding:15px;
	margin:1% auto 0;
	margin-bottom: 1%;
	position:relative;
	z-index:1;
	-webkit-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	-moz-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
}

.form_wrapper_entry h2 {
	font-size:1.5em;
	line-height:1.5em;
	margin:0;
	/*display:inline-block;
	white-space:nowrap*/
}

.form_wrapper_entry .title_container {
	text-align: left;
	margin:-15px -15px 15px;
	padding:15px 0;
	padding-left: 90px;
	border-bottom:1px dashed #ccc;
}

.form_wrapper_entry h3 {
	font-size:1.1em;
	font-weight:normal;
	line-height:1.5em;
	margin:0;
}

.form_wrapper_entry .row {
	margin:10px -15px;
}

.form_wrapper_entry .row > div {
	padding:0 15px;
	box-sizing:border-box;
}

.form_wrapper_entry .col_half {
	margin-top: 10px;
	width:50%;
	float:left;
}

.form_wrapper_entry label {
	display:block;
	margin: 25px 10px 5px;
	font-weight: bold;
}

.form_wrapper_entry .input_field, .form_wrapper_entry .textarea_field {
	position:relative;
}

.form_wrapper_entry .input_field > span, .form_wrapper_entry .textarea_field > span {
	position:absolute;
	left:0;
	top:0;
	color:#333;
	height:100%;
	border-right:1px solid #ccc;
	text-align:center;
	width:30px;
}

.form_wrapper_entry .textarea_field > span {
	border-bottom:1px solid #ccc;
	max-height:35px;
}

.form_wrapper_entry .input_field > span > i, .form_wrapper_entry .textarea_field > span > i {
	padding-top:12px;
}

.form_wrapper_entry select, .form_wrapper_entry input[type="password"], .form_wrapper_entry input[type="text"], .form_wrapper_entry input[type="textarea"], .form_wrapper_entry input[type="email"], .form_wrapper_entry input[type="tel"], textarea {
	border-radius: 5px;
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.form_wrapper_entry select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	background-color: #FFFFFF;
	background-image:url(../images/select-arrow.svg);
	background-position: right 10px bottom 1em;
	background-repeat: no-repeat;
	background-size: 0.8em;
}

.form_wrapper_entry select::-ms-expand {
  display:none;
}

.form_wrapper_entry textarea {
	height:8em;
	resize: none;
}

.form_wrapper_entry select:focus, .form_wrapper_entry input[type="password"], .form_wrapper_entry input[type="text"]:focus, .form_wrapper_entry input[type="email"]:focus, .form_wrapper_entry input[type="tel"]:focus, textarea:focus {
	-webkit-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	-moz-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	border:1px solid #f5ba1a;
}

.form_wrapper_entry input[type="submit"] {
	margin-top: 20px;
	background: #FFFFFF;
	height:50px;
	line-height:50px;
	width:100%;
	border: 1px solid #4CAF50;
	outline:none;
	cursor:pointer;
	color:#4CAF50;
	font-size:1.2em;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	border-radius: 25px;
}

.form_wrapper_entry input[type="submit"]:hover, .form_wrapper_entry input[type="submit"]:focus {
	background: #4CAF50;
	color: #FFFFFF;
}

.form_wrapper_entry .subtitle {
	margin-top: 2px;
	font-size: 0.8em;
	color: #AAAAAA;
	float: right;
}

.form_wrapper_entry .questions {
	text-align: center; 
	white-space:nowrap;
	font-size: 0.9em;
}

.form_wrapper_entry .validity {
		position: absolute;
		float: right;
		opacity: 0;
		-webkit-transition: all 0.30s ease-in-out;
		-moz-transition: all 0.30s ease-in-out;
		-ms-transition: all 0.30s ease-in-out;
		transition: all 0.30s ease-in-out;
		right: 5px;
		top: 8px;
}

.form_wrapper_entry input:invalid+div:after {
  color: #8b0000;
  content: '✖';
}

.form_wrapper_entry input:valid+div:after {
  color: #009000;
  content: '✓';
}


/*GWN-Index*/

.form_wrapper_index {
	background:#fff;
	max-width:600px;
	width:90%;
	box-sizing:border-box;
	padding:15px;
	margin:5% auto 0;
	position:relative;
	z-index:1;
	-webkit-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	-moz-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
}

.form_wrapper_index h2 {
	font-size:1.5em;
	line-height:1.5em;
	margin:0;
	/*display:inline-block;
	white-space:nowrap*/
}

.form_wrapper_index .title_container {
	word-wrap: break-word;
	text-align: left;
	margin:-15px -15px 15px;
	padding:15px 0;
	padding-left: 90px;
	border-bottom:1px dashed #ccc;
}

.form_wrapper_index h3 {
	font-size:1.1em;
	font-weight:normal;
	line-height:1.5em;
	margin:0;
}

.form_wrapper_index .row {
	margin:10px -15px;
}

.form_wrapper_index .row > div {
	padding:0 15px;
	box-sizing:border-box;
}

.form_wrapper_index .col_half {
	margin-top: 0px;
	width:50%;
	float:left;
}

.form_wrapper_index label {
	display:block;
	margin: 25px 10px 5px;
}

.form_wrapper_index .input_field, .form_wrapper_index .textarea_field {
	position:relative;
}

.form_wrapper_index .input_field > span, .form_wrapper_index .textarea_field > span {
	position:absolute;
	left:0;
	top:0;
	color:#333;
	height:100%;
	border-right:1px solid #ccc;
	text-align:center;
	width:30px;
}

.form_wrapper_index .textarea_field > span {
	border-bottom:1px solid #ccc;
	max-height:35px;
}

.form_wrapper_index .input_field > span > i, .form_wrapper_index .textarea_field > span > i {
	padding-top:12px;
}

.form_wrapper_index select, .form_wrapper_index input[type="text"], .form_wrapper_index input[type="email"], .form_wrapper_index input[type="tel"], textarea {
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.form_wrapper_index select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	background-color: #FFFFFF;
	background-image:url(select-arrow.svg);
	background-position: right 10px bottom 1em;
	background-repeat: no-repeat;
	background-size: 0.8em;
}

.form_wrapper_index select::-ms-expand {
  display:none;
}

.form_wrapper_index textarea {
	height:8em;
	resize: none;
}

.form_wrapper_index select:focus, .form_wrapper_index input[type="text"]:focus, .form_wrapper_index input[type="email"]:focus, .form_wrapper_index input[type="tel"]:focus, textarea:focus {
	-webkit-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	-moz-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	border:1px solid #f5ba1a;
}

.form_wrapper_index input[type="submit"] {
	margin-top: 20px;
	background: #FFFFFF;
	color: #4CAF50;
	height:50px;
	line-height:50px;
	width:100%;
	border: 1px solid #4CAF50;
	outline:none;
	cursor:pointer;
	font-size:1.3em;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	border-radius: 25px;
}

.form_wrapper_index input[type="submit"]:hover, .form_wrapper_index input[type="submit"]:focus {
	background:#4CAF50;
	color: #FFFFFF;
}

.form_wrapper_index .subtitle {
	margin-top: 2px;
	font-size: 0.8em;
	color: #AAAAAA;
	float: right;
}

/*GWN-Liste*/

.mobile_navigation {
	display: none;
}

.footer_container.liste {
	padding-bottom: 15px;
}

.form_wrapper_list {
	background:#fff;
	max-width:800px;
	width:90%;
	box-sizing:border-box;
	padding:15px;
	margin:1% auto 0;
	margin-bottom: 3%;
	position:relative;
	z-index:1;
	-webkit-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	-moz-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
}

.form_wrapper_list h2 {
	font-size:1.5em;
	line-height:1.5em;
	margin:0;
	/*display:inline-block;
	white-space:nowrap*/
}

.form_wrapper_list .title_container {
	text-align: left;
	margin:-15px -15px 15px;
	padding:15px 0;
	padding-left: 90px;
	border-bottom:1px dashed #ccc;
}

.form_wrapper_list h3 {
	font-size:1.1em;
	font-weight:normal;
	line-height:1.5em;
	margin:0;
}

.form_wrapper_list .row {
	margin:5px -15px;
}

.form_wrapper_list .row > div {
	padding:0 15px;
	box-sizing:border-box;
}

.form_wrapper_list .col_half {
	margin-bottom: 5px;
	width:50%;
	float:left;
}

.form_wrapper_list label {
	display:block;
	margin: 10px 10px 5px;
	font-weight: bold;
	margin-top: 10px;
}

.form_wrapper_list .input_field, .form_wrapper_list .textarea_field {
	position:relative;
}

.form_wrapper_list .input_field > span, .form_wrapper_list .textarea_field > span {
	position:absolute;
	left:0;
	top:0;
	color:#333;
	height:100%;
	border-right:1px solid #ccc;
	text-align:center;
	width:30px;
}

.form_wrapper_list .textarea_field > span {
	border-bottom:1px solid #ccc;
	max-height:35px;
}

.form_wrapper_list .input_field > span > i, .form_wrapper_list .textarea_field > span > i {
	padding-top:12px;
}

.form_wrapper_list input[type="text"] {
	border-radius: 5px;
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;	
}

.form_wrapper_list input[type="text"]:focus {
	-webkit-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	-moz-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	border:1px solid #f5ba1a;
}

.form_wrapper_list .showcase, select, .form_wrapper_list input[type="email"], .form_wrapper_list input[type="tel"], textarea {
	border-radius: 5px;
	background-color: #FFFFFF;
	overflow: auto;
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.form_wrapper_list .road {
	padding: 5px 10px 5px 35px;
}

.form_wrapper_list select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width:100%;
	padding:10px 10px 10px 35px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	background-color: #FFFFFF;
	background-image:url(select-arrow.svg);
	background-position: right 10px bottom 1em;
	background-repeat: no-repeat;
	background-size: 0.8em;
}

.form_wrapper_list select::-ms-expand {
  display:none;
}

.form_wrapper_list textarea {
	height:8em;
	resize: none;
}

.form_wrapper_list input[type="submit"] {
	margin-top: 0px;
	background:#FFFFFF;
	height:40px;
	line-height:38px;
	width:100%;
	border: 1px solid #4CAF50;
	outline:none;
	cursor:pointer;
	color:#4CAF50;
	font-size:1.2em;
	border-radius: 20px;
}

.form_wrapper_list input[type="submit"]:hover, .form_wrapper_list input[type="submit"]:focus {
	background:#4CAF50;
	color: #FFFFFF;
}

.form_wrapper_list .subtitle {
	font-size: 1em;
	color: #888888;
	display: block;
	float: right;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.form_wrapper_list .headerlinks {
	padding: 0px;
	margin: 0px;
	float: right;
	margin-top: -5px;
	font-size: 0.9em;
}

.form_wrapper_list .search {
	padding: 0 0 0 5px;
	margin: 0px;
	float: left;
	margin-top: -5px;
	font-size: 0.9em;
}

.form_wrapper_list .suchfeld {
	margin: 50px 0 10px 0;
	position: relative;
	overflow: hidden;;
	max-height: 0px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

.form_wrapper_list .searchclear {
	position: absolute;
	top: 2px;
	right: 5px;
	font-size: 18pt;
	float: right;
	text-align: right;
}

.form_wrapper_list .searchclear a {
	color: #444444;
}

.form_wrapper_list .searchclear a:hover {
	color: #f5ba1a;
}

.form_wrapper_list .searchdesktop {
	color: #444444;
}


/*GWN-Success*/

.form_wrapper_success {
	background:#fff;
	max-width:600px;
	width:90%;
	box-sizing:border-box;
	padding:15px;
	margin:5% auto 0;
	margin-bottom: 3%;
	position:relative;
	z-index:1;
	-webkit-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	-moz-box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
	box-shadow:5px 5px 10px -5px rgba(0, 0, 0, 0.9);
}

.form_wrapper_success h2 {
	font-size:1.5em;
	line-height:1.5em;
	margin:0;
	/*display:inline-block;
	white-space:nowrap*/
}

.form_wrapper_success .title_container {
	text-align: left;
	margin:-15px -15px 15px;
	padding:15px 0;
	padding-left: 90px;
	border-bottom:1px dashed #ccc;
}

.form_wrapper_success h3 {
	font-size:1.1em;
	font-weight:normal;
	line-height:1.5em;
	margin:0;
}

.form_wrapper_success .content {
	margin-top: 20px;
	text-align: center;
}

.form_wrapper_success .content img {
	margin-top: 20px;
}

.clearfix.success {
	margin-bottom: 30px;
	text-align: center;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	color: #444;
    background-color: #FFFFFF;
	font-size: 1.2em;
    cursor: pointer;
	border: 1px solid #4CAF50;
	padding: 5px 15px 5px 15px;
    width: 100%;
    text-align: left;
	margin: 5px 0px 5px 0px;
    outline: none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	position: relative;
	border-radius: 10px;
}

.abc::first-letter {
	font-weight: bold;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
body.Hover .accordion:hover {
    background-color: #4CAF50;
	color: #FFFFFF;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
}

body.Hover .accordion:hover .subtitle {
	color: #FFFFFF;
}

.active {
	 background-color: #4CAF50;
	 color: #FFFFFF;
 }

.active .subtitle {
	color: #FFFFFF;
}

.form_wrapper_list .noinfo {
	color: #CCCCCC;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
	-webkit-transition: max-height 0.4s ease-in-out;
	-moz-transition: max-height 0.4s ease-in-out;
	-ms-transition: max-height 0.4s ease-in-out;
	transition: max-height 0.4s ease-in-out;
}


.panel a:hover {
	color: #006600;
}

/*Add To Homescreen Button*/

.addToHomescreen {
	visibility: hidden;
	display: none;
}

.A2HS {
	display: none;
}

.addToHomescreen input[type="submit"] {
	background:#FFFFFF;
	color: #daa106;
	border: 1px solid #daa106;
	margin-top: 40px;
}

.addToHomescreen input[type="submit"]:hover {
	background: #daa106;
	color: #FFFFFF
}

.addToHomescreen .subtitle {
	color: #666666;
}

.addToHomescreen .informer {
	position: absolute;
	-webkit-transform: rotate(-20deg);
	-moz-transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	-o-transform: rotate(-20deg);
	transform: rotate(-20deg);
	color: #FF0000;
	font-size: 1.5em;
	font-weight: bold;
	margin-top: 20px;
	margin-left: -20px;
	text-shadow: 0 0 3px #FFFFFF;
}

.addToHomescreen .footer_container {
	text-align:center;
	margin: 20px -15px -5px -15px;
	padding-top:15px;
	border-top:1px dashed #ccc;
	font-size: 1em;
}

.infobox {
	background-color: #FFFACD;
	margin-top: 1.5em;
	border: 1px solid #999900;
	padding: 1em;
	border-radius: 5px;
}

.infobox h2 {
	font-weight: bold;
	font-size: 1.2em;
	color: tomato;
	margin-bottom: 1em;
}

.infobox.infobox-hide, .otherreason-hide {
	  margin: 0px;
	  padding: 0px;
	  max-height: 0;
	  overflow: hidden;
	  opacity: 0;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

/*GWN-Responsive Design*/

@media (max-width: 600px) {

.form_wrapper_entry h2, .form_wrapper_index h2, .form_wrapper_list h2, .form_wrapper_success h2 {
	font-size:1.2em;
	line-height:1.2em;
}
	
.form_wrapper_entry .title_container, .form_wrapper_list .title_container, .form_wrapper_index .title_container, .form_wrapper_success .title_container {
	overflow: hidden;
	word-wrap: break-word;
	width: 100%;
	text-align: center;
	margin:-15px 0;
	padding:15px 0;
}	
	
.container_bg {
	background: none;
}

	.accordion {
		color: #444;
		background-color: #FFFFFF;
		font-size: 1.2em;
		cursor: pointer;
		border: 1px solid #4CAF50;
		padding: 5px 15px 5px 15px;
		width: 100%;
		text-align: left;
		margin: 3px 0px 3px 0px;
		outline: none;
		-webkit-transition: all 0.30s ease-in-out;
		-moz-transition: all 0.30s ease-in-out;
		-ms-transition: all 0.30s ease-in-out;
		transition: all 0.30s ease-in-out;
		position: relative;
		border-radius: 25px;
	}

	body.Hover .accordion:hover {
		background-color: #4CAF50;
		color: #FFFFFF;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	body.Hover .accordion:hover .subtitle {
		color: #FFFFFF;
	}

	.active {
		background-color: #4CAF50;
		color: #FFFFFF;
	}

	.form_wrapper_entry .col_half {
		width:100%;
		float:none;
	}

	.form_wrapper_entry {
		width:98%;
		padding:5px;
		margin:1% auto 0;
		margin-bottom: 1%;
	}

	.form_wrapper_entry label {
		display:block;
		margin: 25px 10px 5px;
		}

	.form_wrapper_index {
		margin-top: 25%;
	}

	.form_wrapper_index .col_half {
		width:100%;
		float:none;
	}

	.form_wrapper_index label {
		display:block;
		margin: 25px 10px 5px;
		}

	.form_wrapper_list {
		width:98%;
		padding:5px;
		margin: 60px auto 0;
		margin-bottom: 1%;
	}

	.form_wrapper_list .container_bg {	
		background: none;
	}
	
	.form_wrapper_list .headerlinks {
		font-size: 1.0em;
		margin-right: 5px;
		display: none; 
	}

	.form_wrapper_list .search {
		font-size: 1.3em;
		margin-left: 0px;
		display: none;	
	}

	.title_container {
		word-wrap: break-word;
		width: 100%;
		overflow: hidden;
		text-align:center;
		margin:-3px -3px 15px;
		padding:15px 0;
		border-bottom:1px dashed #ccc;
	}

	.footer_container {
		text-align:center;
		margin: 20px -15px -5px -15px;
		padding-top:10px;
		border-top:1px dashed #ccc;
		font-size: 0.8em;
	}	

	.footer_container.credit {
		margin: 20px -15px -5px -15px;
	}	
	
	.title_container.liste {
		display: none;
		margin: 0px -4px 15px -4px;
	}

	.footer_container.liste {
		margin: 10px -4px 5px -4px;
	}

	/* Backlinks und Eintragen sollten in Left/Rightlink o.ä. umbenannt werden */

	.backlinks {
		font-size: 1.2em;
	}

	.eintragen {
		font-size: 1.2em;
	}

	.form_wrapper_list .col_half {
		width:100%;
		float:none;
	}

	.form_wrapper_list label {
		display:block;
		margin: 25px 10px 5px;
		}

	.form_wrapper_list .subtitle {
		font-size: 0.8em;
		display: block;
		float: none;
		clear: both;
		width: 100%;
		text-align: right;
		}

	.form_container_list {
		padding:5px;
	}

	#myBtn {
		bottom: 15px;
		right: 20px;
	}

	#myBtn a {
		font-size: 3.5em;	
	}

	.form_wrapper_index .addToHomescreen {
		display: inline;
		visibility: visible;
	}


	.form_wrapper_list .searchdesktop {
		display: none;
	}


	.form_wrapper_list .suchfeld {
		margin: 0 0 10px 0;
	}

	.form_wrapper_list label:first-of-type {
		margin-top: 0px;
	}

	.mobile_navigation {
		display: initial;
		position: fixed;
		top: 0px;
		left: 0px;
		height: 50px;
		width: 100%;
		z-index: 100;
		background: #516e40;;
		-webkit-transition: all 0.30s ease-in-out;
		-moz-transition: all 0.30s ease-in-out;
		-ms-transition: all 0.30s ease-in-out;
		transition: all 0.30s ease-in-out;
		-webkit-box-shadow:0px 3px 10px 0px rgba(0, 0, 0, 0.9);
		-moz-box-shadow:0px 3px 10px 0px rgba(0, 0, 0, 0.9);
		box-shadow:0px 3px 10px 0px rgba(0, 0, 0, 0.9);
	}

	.mobile_navigation:hover, .mobile_navigation:active, .mobile_navigation:focus {
		opacity: 1;
	}		
		
	.mobile_navigation .bg {
		position: absolute;
		background: url(../images/background.jpg) no-repeat top left;
		background-size: cover;
		-webkit-filter: blur(4px);
		-moz-filter: blur(4px);
		-o-filter: blur(4px);
		-ms-filter: blur(4px);
		filter: blur(4px);
		top:0;
		left:0;
		height:100%;
		width:100%;
		z-index: -1;
	}
		
	.mobile_navigation .mobile_element {
		margin-top: 9px;
		float: right;
		font-size: 30px;
		padding-right: 20px;
		padding-left: 10px;
	}

	.mobile_navigation .mobile_element a {
		color: #EEEEEE;
		text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
	}

	.mobile_navigation .gwn {
		float: left;
		margin-top: 6px;
		margin-left: 10px;
	}

	.mobile_navigation .gwn a img {
		border:none;
		width: 30px;
		height: 38px;
		opacity: 0.7;
	}

	.form_wrapper_list .container_bg {
		position: fixed;
		top: 60px;
	}

	.mobile_navigation .sortdropdown {
		position: absolute;
		min-width: 300px;
		max-width: 90%;
		top: 53px;
		right: 20px;
		font-size: 25px;
		background: rgba(81, 110, 64, 0.9);
		-webkit-box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.9);
		-moz-box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.9);
		box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.9);
		border-radius: 0px 0px 15px 15px;
		-webkit-transition: all 0.30s ease-in-out;
		-moz-transition: all 0.30s ease-in-out;
		-ms-transition: all 0.30s ease-in-out;
		transition: all 0.30s ease-in-out;
		overflow: hidden;
		max-height: 0px;
	}

	.mobile_navigation .sortdropdown p {
		padding: 0px;
	}	
		
	.mobile_navigation .sortdropdown a {
		clear: both;
		text-indent: -15px;
		border-bottom: 1px dotted #FFFFFF;
		color: #FFFFFF;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
		display: block;
		padding: 25px 25px 25px 50px;
	}

	.mobile_navigation .sortdropdown a:last-of-type {
		border-bottom: none;
	}

	.mobile_navigation .sortdropdown a > span {
		font-size: 0.8em;
	}
	
.noData {
	margin: 70px 0 50px 0;
}
	
}