@charset "utf-8";
/* CSS My */

* { margin: 0; padding: 0; }
 
html, body { 
	margin:0;
	padding:0;
	border: none;
	background: #ffffff;
	color: #444;
/*	font-size: 0.9em; */
}
/* Header */
.header {
  max-width: 1200px;
  background-color: #fff;
/*  background-image:url(../images/hint_2.jpg); */
  padding: 20px 20px 20px 30px;
  text-align: center;
  text-decoration: none;
  font-size: 1.1em;
  font-family: 'Roboto Slab', sans-serif;
  color: #ffffff;
}
.logo {
	float:left;
	display:block;
	padding:0px 0px 10px 40px;
}

.telbox {
	float:right;
	display:block;
	padding:0px 30px 0px 0px;
}


/* ----------- Content ---------------------------------*/
.wrapper {
  display: flex;  
  flex-flow: row wrap;
  text-align: center;
}

.wrapper > * {
  padding: 20px;
  flex: 1 100%;
}

.main {
  background: #fff;
}

.side-1 {
  background: #fff;
}


@media all and (min-width: 600px) {
  .side { flex: 0 auto; }
}

@media all and (min-width: 800px) {
  .main    { flex: 3 0px; }
  .side-1 { order: 1; } 
  .main    { order: 2; }
}


.contenttext {
display:block;
max-width: 850px;
padding: 20px 0px 90px 0px;
background-color: #ffffff;
text-align:justify;  
text-justify:inter-word;
text-decoration: none;
font-size: 0.9em;
font-family: Verdana, sans-serif, Helvetica, Arial, sans-serif, 'Roboto Slab', sans-serif;
color: #444;
clear: both;

}

.contenttextform {
display:block;
max-width: 850px;
padding: 20px 0px 10px 0px;
background-color: #ffffff;
text-align:justify;  
text-justify:inter-word;
text-decoration: none;
font-size: 0.9em;
font-family: Verdana, sans-serif, Helvetica, Arial, sans-serif, 'Roboto Slab', sans-serif;
color: #444;
clear: both;

}




/* Footer */
.footer {
  background-color: #0080c8;
  padding: 20px 30px 20px 30px;
  text-decoration: none;
  font-size: 0.9em;
  font-family: 'Roboto Slab', sans-serif;
  color: #ffffff;
}
.footer a {
  color: #ffffff;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  font-family: 'Roboto Slab', sans-serif;
}
.footer a:hover {
text-decoration: underline;
color: #ffffff;
}
/* --------------------------------------------------------------------- */
/* Navigation */
/* Add a background color to the top navigation */
.navbar {
  overflow: hidden;
  background-color: #0080c8;  
 /* width: 100%; */
}
/* Style the links inside the navigation bar */
.navbar a {
  float: left;
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.1em;
  font-family: 'Roboto Slab', sans-serif;
}

.navbar a:hover {
  background-color: #ddd;
  color: #777;}


/* Add an active class to highlight the current page */
.navbar a.active {
  background-color: #0075be;
  color: #ffffff;
}
/* Hide the link that should open and close the topnav on small screens */
.navbar .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
    font-size: 1.1em;
    border: none;
    outline: none;
    color: white;
	padding: 14px 16px;
    background-color: inherit;
    font-family: 'Roboto Slab', sans-serif;
    margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ddd;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
	color: #0080c8;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  color: #0080c8;}


/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #0080c8;
    color: #fff;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .navbar a:not(:first-child), .dropdown .dropbtn  {display: none;}
  .navbar a.icon {float: right; display: block; padding: 12px 16px;}
  
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .navbar.responsive {position: relative;}
  .navbar.responsive .icon {position: absolute; right: 0; top:0;}
  .navbar.responsive a {float: none; display: block; text-align: left;}
  .navbar.responsive .dropdown {float: none;}
  .navbar.responsive .dropdown-content {position: relative;}
  .navbar.responsive .dropdown .dropbtn {display: block;width: 100%;text-align: left;}
  
}

@media screen and (min-width: 800px) {
  .footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #0080c8;
   padding: 20px 30px 20px 30px;
  text-decoration: none;
  font-size: 1.0em;
  font-family: 'Roboto Slab', sans-serif;
  color: #ffffff;
   }
   
}

@media screen and (max-width: 800px) {
   .rowcontent {flex-direction: column;}
}


/* Navigation Bar Top-Sticky */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

/* CSS Document */

* {  
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}
/*
h1, h2, h3, h4, h5, h6, p, em, font, img, small, li, ol, ul, form, label, legend, button, table, caption, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	font-weight:normal;
	font-style:normal;
	font-size:100%;
	line-height:1;
	font-family:inherit;
	text-align:left;
}
*/

h4 a {
text-decoration: none;
color: #0080c8;
font-size: 1.15em;
font-family: 'Roboto Slab', sans-serif;
}

h4 a:hover {
text-decoration: underline;
color: #0080c8;
font-size: 1.15em;
font-family: 'Roboto Slab', sans-serif;
	}
h4 a:active {
text-decoration: underline;
color: #0080c8;
font-size: 1.15em;
font-family: 'Roboto Slab', sans-serif;
	}
	
h3 {
  display: block;
  color: #0080c8;
  text-align: center;
  text-decoration: none;
  font-size: 1.15em;
  font-family: 'Roboto Slab', sans-serif;
}

h2 {
  display: block;
  color: #0080c8;
  text-align: left;
  text-decoration: none;
  font-size: 1.15em;
  font-family: 'Roboto Slab', sans-serif;
}
.text_h5 {
  display: block;
  color: #0080c8;
  text-align: left;
  text-decoration: none;
  font-size: 1.15em;
  font-family: 'Roboto Slab', sans-serif;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

ol, ul {
	list-style:none;
}

li a {
text-decoration: underline;
color: #0080c8;
font-size: 1.0em;
font-family: 'Roboto Slab', sans-serif;
}
li a:hover {
text-decoration: underline;
color: #666;
font-size: 1.0em;
font-family: 'Roboto Slab', sans-serif;
	}

.responsiveimg {
    width: 100%;
    height: auto;
}


.hidden { display: none; }
.clear { clear: both; }
.fleft { float: left; }
.fright { float: right; }
.clearfix { overflow: auto; }


/* ------ Formular -------------------------*/

 /* Style inputs, select elements and textareas */
input[type=text], select, textarea{

  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  text-align:left;
  color:#0080c8;
  font-size: 0.9em;
  font-family: Verdana, sans-serif, Helvetica, Arial, sans-serif, 'Roboto Slab', sans-serif;
}

/* Style the submit button */
input[type=submit] {
  background-color: #0080c8;
  color: white;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin:10px 0px 0px 200px;
}
input[type=reset] {
  background-color: #aaa;
  color: white;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin:10px 0px 50px 0px;
}

/* Style the container */
.container {
display:block;
max-width: 850px;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75 {
    width: 100%;
	text-align:left;
  }
  input[type=submit], input[type=reset] {
    width: 100%;
    margin: 10px 0px 10px 0px;
	text-align: center;
  }
} 


/*-------- Texst - Boxses ---------------*/

.webnots-notification-box {
float:left;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
color: #ffffff;
font-family: 'Roboto Slab', sans-serif;
font-size: 1.0em;
text-align: center;
margin: 0px 0px 0px 0px;
padding: 20px 20px 20px 20px;
box-shadow: 0px 1px 5px #999;
position:relative;
border: 1px solid #0080c8;
}

.webnots-notification-box:before {
font-size: 1.0em;
left: 14px;
position:absolute;
}

.webnots-information {
margin: 0;
/* position: relative;
top: 25%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); */
display: block;
width:240px;
padding: 20px 10px 20px 10px;
background-color: #0080c8;
}
.webnots-information:before {
/* content: "\f129"; */
margin-left: 4px;
}
.webnots-question {
background-color: #f1c40f;
}
.webnots-question:before {
content: "\f128";
margin-left: 2px;
}
.webnots-tip {
background-color: #16a085;
}
.webnots-tip:before {
content: "\f0eb";
margin-left: 2px;
}

.webnots-willkomen {
background-color: #fff;
border: 1px solid #EBEBEB;
}

.webnots-adresse {
width:280px;
background-color: #fff;
border: 1px solid #EBEBEB;
margin: 0px 0px 20px 20px;
float:left;
align-content:center;
text-align:center;
color:#444;
}