#tisch-reservieren-bar {
	display: block;
	width: 100%;
	height: 60px;
	padding: 15px;
	background-color: #daae4f;
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
	transition: 200ms ease-in-out;
	transform: translateY(60px);
	overflow: hidden;
}

#tisch-reservieren-bar p {
	margin: 0;
}

#tisch-reservieren-bar a {
	display: inline-block;
	color: #1f2531;
	background-color: transparent;
	border: 1px solid #1f2531;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 2px 20px;
	margin: 0 25px;
	transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
}

#tisch-reservieren-bar a:hover {
	color: #daae4f;
	background-color: #1f2531;
}

@media (max-width: 768px) {
	#tisch-reservieren-bar.bar-visible {
		transform: translateY(0);
	}
	.box-wrapper.margin-bottom {
		margin-bottom: 60px;
	}
}

@media (max-width: 400px) {
	#tisch-reservieren-bar a {
		margin: 0 10px;
	}
}