/*-------- Subscription ---------------*/
/* Full-width input fields */
input[type=text], input[type=password], input[type=email] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

/* Add a background color when the inputs get focus */
input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for all buttons */
button {
    background-color: #98bc9c;/*#4CAF50;*/
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.subscribebtn {
	background-color: #d9d2cb;
	
	border: 1px solid #333;
	box-shadow: 0 5px 7px 0 rgba(0,0,0,0.19);
    opacity: 1;
	position: absolute;
	right: 5vw;
	top: 5vh;
	width: auto;
	
    padding: 5px 30px 5px 30px;
	
	z-index: 20;
	border-radius: 3px;
	font-size: 1em;
}

.subscribebtn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.subscribebtn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.subscribebtn:hover span {
  padding-right: 25px;
}

.subscribebtn:hover span:after {
  opacity: 1;
  right: 0;
}

.impressumbtn {
	background-color: #ababab;
	
	/*border: 1px solid #333;
	box-shadow: 0 5px 7px 0 rgba(0,0,0,0.19);*/
    opacity: 1;
	position: absolute;
	right: 3vw;
	bottom: calc(2vh + 30px);
	width: auto;
	
    padding: 5px 30px 5px 30px;
	
	z-index: 40;
	border-radius: 3px;
	font-size: 0.8em;
}

.datenschutzbtn {
	background-color: #ababab;
	
	/*border: 1px solid #333;
	box-shadow: 0 5px 7px 0 rgba(0,0,0,0.19);*/
    opacity: 1;
	position: absolute;
	right: 3vw;
	bottom: 2vh;
	width: auto;
	
    padding: 5px 30px 5px 30px;
	
	z-index: 40;
	border-radius: 3px;
	font-size: 0.8em;
}

button:hover {
    opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
  display: block;
  margin: auto;
  width: 100%;
}

/* Add padding to container elements */
.container {
    padding: 40px;
}

.subtext {
	font-size: smaller;
	color: #ababab;
	text-align: center;
	margin-top: 20px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(71, 78, 93, 0.9);
    padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 100%; /* Could be more or less, depending on screen size */
	max-width: 490px;
	border-radius: 8px;
}

.newsletterimg {
	width: 100%;
	border-radius: 8px 8px 0px 0px;
}

.abotitle {
	font-size: 1.3em;
	margin: 0px 0px 20px 0px;
}

/* Style the horizontal ruler */
hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}
 
/* The Close Button (x) */
.close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover,
.close:focus {
    color: #f44336;
    cursor: pointer;
}

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

#mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;}
#mc_embed_signup .asterisk {color:#e85c41; font-size:150%; font-weight:normal; position:relative; top:5px;}     
#mc_embed_signup .clear {clear:both;}
/*-------- End Subscription -----------*/

/*-------- Impressum -----------------*/
.centerImpressum {
    margin: auto;
    width: 60%;
    padding: 10px;
    text-align: center;	
    background-color: #e6e6e6;
}
/*-------- End Impressum -------------*/

/*-------- Datenschutz -----------------*/
.centerDatenschutz {
    margin: auto;
    width: 90%;
    padding: 10px;
    text-align: center;
    background-color: #e6e6e6;
}
/*-------- End Datenschutz -------------*/

/*-------- Responsive Design -------------------------*/
/* Mobile Styles */
@media only screen and (max-width: 500px) {
	.koerigtext {
		width: 90vw;
	}
	.semiwhite {
		height: calc(50% - (90vw*0.159));
		top: calc(50% + (90vw*0.159));
	}
	.subscribebtn {
		font-size: 0.7em;
		margin: 0;
	}
	.modal-content{
		width: 100%;
	}
}

/* Tablet Styles */
@media only screen and (min-width: 501px) and (max-width: 960px) {
	.modal-content{
		width: 100%;
	}
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
	/*nothing specified yet*/
}
/*-------- End of Responsive Design ------------------*/