@font-face {
  font-family: 'MedianGrotesk-Regular';
  src: url(../webfonts/MedianGrotesk-Regular.eot), /* IE9 Compat Modes */
       url(../webfonts/MedianGrotesk-Regular.woff2) format('woff2'), /* Super Modern Browsers */
       url(../webfonts/MedianGrotesk-Regular.woff) format('woff'), /* Pretty Modern Browsers */
       url(../webfonts/MedianGrotesk-Regular.ttf) format('truetype'); /* Safari, Android, iOS */
}
@font-face {
  font-family: 'MedianGrotesk-Italic';
  src: url(../webfonts/MedianGrotesk-Italic.eot), /* IE9 Compat Modes */
       url(../webfonts/MedianGrotesk-Italic.woff2) format('woff2'), /* Super Modern Browsers */
       url(../webfonts/MedianGrotesk-Italic.woff) format('woff'), /* Pretty Modern Browsers */
       url(../webfonts/MedianGrotesk-Italic.ttf) format('truetype'); /* Safari, Android, iOS */
}
@font-face {
  font-family: 'MedianGrotesk-Reverse';
  src: url(../webfonts/MedianGrotesk-Reverse.eot), /* IE9 Compat Modes */
       url(../webfonts/MedianGrotesk-Reverse.woff2) format('woff2'), /* Super Modern Browsers */
       url(../webfonts/MedianGrotesk-Reverse.woff) format('woff'), /* Pretty Modern Browsers */
       url(../webfonts/MedianGrotesk-Reverse.ttf) format('truetype'); /* Safari, Android, iOS */
}


body {
  	font-family: 'MedianGrotesk-Regular', sans-serif;
	font-size: 14px;
	line-height: 25px;
	background-color: #efefef;
	color: #000;
	margin: auto;
	padding: 0px	;
}


tr {

	height: 40px;
	color: #000;
	font-size: 14px;
	text-align: left;
	/*border-bottom: 1px solid #ddd;*/
}

tr:hover {

	/*border-bottom: 1px solid #000;*/
	color: #ff2c72;

}

td {

	padding-right: 40px;
	border-bottom: 1px solid #ddd;

}

.master {
	width: 800px;
	text-align: left;
	padding: 50px 20px;
	margin: auto;

}	

.bigtext {
	font-size: 17px;
	line-height: 30px;
	font-weight: lighter;
	/*border-top: 1px solid #eee;*/
	
}

.tablelook {
	border-bottom: 1px solid #fff;
}

.monat {
	
	border: none;
	text-align: right;
	width: 120px;
}

.currency {
	text-align: right;

}

.noborder {
	
	border: none;
}

.suche{
	border: none;
	background-color: #fff;
	width: 300px;
	color: #000;
	margin-left: 120px;
	padding: auto 5px;
}

h1{
	font-family: 'MedianGrotesk-Regular', sans-serif;
	font-size: 4em;
	line-height: 1.5;
	letter-spacing: 0em;
}

h2{
	font-family: 'MedianGrotesk-Regular', sans-serif;
	font-size: 2em;
}

.nl-form {
	width: 100%;
	margin: 0.3em auto 0 auto;
	font-size: 4em;
	line-height: 1.5;
}

.reverse{
	font-family: 'MedianGrotesk-Reverse', sans-serif;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}












/* general style for the form */
.nl-form .reverse{
	font-family: 'MedianGrotesk-Reverse', sans-serif;
}

.nl-form {
	width: 100%;
	margin: 0 em auto 0 auto;
	font-size: 4em;
	line-height: 1.5;
}

.nl-form ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* normalize the input elements, make them look like everything else */
.nl-form input,
.nl-form select,
.nl-form button {
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	line-height: inherit;
	display: inline-block;
	padding: 0;
	margin: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.nl-form input:focus {
	outline: none;
}

/* custom field (drop-down, text element) styling  */
.nl-field {
	display: inline-block;
	position: relative;
}

.nl-field.nl-field-open {
	z-index: 10000;
}

/* the toggle is the visible part in the form */
.nl-field-toggle,
.nl-form input,
.nl-form select  {
	line-height: inherit;
	display: inline-block;
	color: #000;
	cursor: pointer;
	border-bottom: 1px dashed #000;
}

/* drop-down list / text element */
.nl-field ul {
	position: absolute;
	visibility: hidden;
	background: #76C3BD;
	left: -0.5em;
	top: 50%;
	font-size: 80%;
	opacity: 0;
	-webkit-transform: translateY(-40%) scale(0.9);
	-moz-transform: translateY(-40%) scale(0.9);
	transform: translateY(-40%) scale(0.9);
	-webkit-transition: visibility 0s 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: visibility 0s 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: visibility 0s 0.3s, opacity 0.3s, transform 0.3s;
}

.nl-field.nl-field-open ul {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(-50%) scale(1);
	-moz-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
	-webkit-transition: visibility 0s 0s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: visibility 0s 0s, opacity 0.3s, -moz-transform 0.3s;
	transition: visibility 0s 0s, opacity 0.3s, transform 0.3s;
}

.nl-field ul li {
	color: #000;
	position: relative;
}

.nl-dd ul li {
	padding: 0 1.5em 0 0.5em;
	cursor: pointer;
	white-space: nowrap;
}

.nl-dd ul li.nl-dd-checked {
	color: #000;
}

.no-touch .nl-dd ul li:hover {
	background: rgba(0,0,0,0.05);
}

.no-touch .nl-dd ul li:hover:active {
	color: #000;
}

/* icons for some elements */
.nl-dd ul li.nl-dd-checked:before,
.nl-submit:before,
.nl-field-go:before {
	font-family: 'nlicons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
}

.nl-dd ul li.nl-dd-checked:before {
	content: "\e000";
	position: absolute;
	right: 1em;
	font-size: 50%;
	line-height: 3;
}

.nl-ti-text ul {
	min-width: 8em;
}

.nl-ti-text ul li.nl-ti-input input {
	width: 100%;
	padding: 0.2em 2em 0.2em 0.5em;
	border-bottom: none;
	color: #000;
}

.nl-form .nl-field-go {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	cursor: pointer;
	background: rgba(0,0,0,0.1);
	width: 1.8em;
	text-align: center;
	color: transparent;
}

.nl-field-go:before {
	content: "\e001";
	font-size: 75%;
	color: #000;
	width: 100%;
	line-height: 2.5;
	display: block;
}

/* custom placeholder color */
input::-webkit-input-placeholder {
	color: rgba(0,0,0,1);
}

input:active::-webkit-input-placeholder ,
input:focus::-webkit-input-placeholder {
	color: rgba(78,0,255,1);
}

input::-moz-placeholder {
	color: rgba(0,0,0,1);
}

input:active::-moz-placeholder,
input:focus::-moz-placeholder {
	color: rgba(78,0,255,1);
}

input:-ms-input-placeholder {  
	color: rgba(0,0,0,1);
}

input:active::-ms-input-placeholder ,
input:focus::-ms-input-placeholder {
	color: rgba(78,0,255,1);
}

/* example field below text input */
.nl-ti-text ul li.nl-ti-example {
	font-size: 40%;
	font-style: italic;
	font-weight: 400;
	padding: 0.4em 1em;
	color: rgba(0,0,0,0.2);
	border-top: 1px dashed rgba(255,255,255,0.7);
}

.nl-ti-text ul li.nl-ti-example em {
	color: #333
}

/* submit button */
.nl-submit-wrap {
	margin-top: 0.4em;
}

.nl-form .nl-submit {
	line-height: 3;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	background: #76C3BD;
	color: #000;
	padding: 0 1em 0 0;
	font-size: 40%;
	font-weight: bold;
	letter-spacing: 3px;
}

.nl-submit:before{
	content: "\e001";
	color: #000;
	float: left;
	padding: 0 0.7em;
	margin: 0 0.8em 0 0;
	background: #000;
}

.no-touch .nl-form .nl-submit:hover,
.no-touch .nl-form .nl-submit:active{
	background: #000;
}

.no-touch .nl-form .nl-submit:hover:before{
	background: #000;
}

/* overlay becomes visible when a field is opened */
.nl-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	z-index: 9999;
	visibility: hidden;
	-webkit-transition: visibility 0s 0.3s, opacity 0.3s;
	-moz-transition: visibility 0s 0.3s, opacity 0.3s;
	transition: visibility 0s 0.3s, opacity 0.3s;
}

.nl-field.nl-field-open ~ .nl-overlay {
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}

@media screen and (max-width: 45em) {
	.nl-form {
		font-size: 3em;
	}
}

@media screen and (max-width: 25em) {
	.nl-form {
		font-size: 2em;
	}
}

