body{
	background: #e9e9ea;
	margin: 0;
	padding: 0;
	height: 100%;
	min-height: 100%;

	font-family: "proxima-nova",sans-serif;
}

a{
	text-decoration: none;
	color: #e9e9ea;
}

header{
	text-indent: -9000em;
	background-image: url("../grafik/logo_long.svg");
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100px; width: calc(50% + 50px);

	margin-top: 20px;
}

#contact{
	color: #e9e9ea;
	background: #161616;
	border-radius: 40px;
	width: 150px; height: 150px;
	text-align: center;
	font-size: 75px;
	line-height: 137px;
	font-family: "fatfrank", sans-serif;

    -ms-transform: rotate(7deg); /* IE 9 */
    -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
    transform: rotate(7deg);

    position: fixed;
    right: 20px;
    top: 20px;

    cursor: pointer;
}

#contact.contact_left{
	 -ms-transform: rotate(-7deg); /* IE 9 */
    -webkit-transform: rotate(-7deg); /* Chrome, Safari, Opera */
    transform: rotate(-7deg);
}

#contact_m{
	display: none;
	width: 100%; height: 75px;
	background: #161616;
	color: #e9e9ea;
	line-height: 75px; 	text-align: center;
	font-size: 35px;
	font-family: "fatfrank", sans-serif;
	margin: 10px 0;
	text-decoration: none;
}

#contact.drag{
	transform: translate(-5px, -5px) rotate(0deg);
	-webkit-transform: translate(-5px, -5px) rotate(0deg);
	-moz-transform: translate(-5px, -5px) rotate(0deg);
	-o-transform: translate(-5px, -5px) rotate(0deg);
	-ms-transform: translate(-5px, -5px) rotate(0deg);

	-moz-box-shadow:10px 10px 15px rgba(100,100,100,0.5);
	-webkit-box-shadow:10px 10px 15px rgba(100,100,100,0.5);
	box-shadow:10px 10px 15px rgba(100,100,100,0.5);

	opacity: 0.8;
}

.kosten{
	font-family: "proxima-nova",sans-serif;
	margin-top: -10px;
	display: none;
	font-size: 0.2em;
	line-height: 20px;
}

.kosten p{

}

.kosten input[type="number"]{
	width: 25px;
}

.kosten_m{
	position: absolute;
	width: 380px;
	top: 220px;
	left: 50%;
	margin-left: -190px;
	font-size: 20px;
}



#preisliste{
	margin-top: 100px;
	margin-left: 20%;
	width: 60%;
}

#preisliste table{
	border-collapse:collapse;
	margin-left: 10px;
}

#preisliste table tr{
	border-left: 5px solid #161616;
}

#preisliste table tr td:last-child{
	padding-right: 20px;
}


.td_name{
	width:calc(100% - 50px);
}

.td_preis{
	text-align: right;
	width: 50px;
}

.td_text{
	font-size: 0.85em;
	color: rgba(22,22,22,0.5);
	width: 100%;
}

tr td{
	padding: 5px 0px 3px 15px;
}

tr.even, tr.odd{
	background: rgba(100,100,140,0.1);
	cursor: pointer;
}

tr.even td, tr.odd td{
	border: none;
}

tr.lastProdRow:last-child{
	border: none !important;
	height: 50px;
}



input[type="checkbox"].rentbox {
    display:none;
}

input[type="checkbox"].rentbox + label span {
    display:inline-block;
    width:36px;
    height:36px;
    vertical-align:middle;
    background:url(../grafik/checkbox.png) left top no-repeat;
    cursor:pointer;
}

tr[data-row]:hover input[type="checkbox"].rentbox + label span{
	background-position: -72px top;
}

input[type="checkbox"].rentbox:checked + label span{
	background-position: -36px top !important;
}


.preise_disclaimer{
	width: 100%;
	text-align: center;
	font-size: 0.85em;
	color: rgba(22,22,22,0.5);
	width: 100%;
}

footer{
	background: #161616;
	color: #e9e9ea;
	width: 300px;
	height: 150px;
	padding: 0 10px;

	position: fixed;
	left: -270px;
	bottom: 100px;

	-webkit-transition: left 1s; /* Safari */
    transition: left 1s;
    -webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;

	-webkit-border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomright: 7px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}

footer#cookies{
	bottom: 300px;
}

footer#cookies button{
	position: relative;
	top: -55px;
	width: 80%;
}

footer.gotit {
    left: -320px;
}

footer:hover{
	left: 0;
}

footer span{
	display: inline-block;
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	position: relative;
	top: 70px;
    right: -245px;
}

footer#cookies span{
	right: -255px;
}

footer p{
	font-size: 12px;
	margin: 0;
	height: 100%;
	padding-right: 45px;
}

footer p + p {
	display: none;
}


#login input{
	box-sizing: border-box;
	width: 100%;
	text-align: center;
}


.loginanim{
	animation-name: loggedin;
	animation-duration: 0.7s;
	animation-iteration-count: 2;
}






@keyframes loggedin {
    from {background-color: #161616;}
    to {background-color: #45994A;}
}





@media (max-width: 1100px) {
	#contact{
		display: none;
	}
	#contact_m{
		display: block;
	}
	.kosten{
		display: block;
	}

	#preisliste{
		width: 90%;
		margin-left: 5%;
	}

	footer{
		width: 100%;
		position: initial;
		padding: 15px;
		height: 90px;
		margin-bottom: 10px;
		text-align: center;
	}

	footer span{
		display: none;
	}

	footer p{
		display: none;
	}

	footer p + p{
		display: block;
		font-size: 20px;
	}
}