@charset "utf-8";
/* Buchungsbutton */
.sticky-booking-button
{
	position:fixed;
	right:0;
	top:30%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin:right bottom;
	background-color:#006666;
	color:#ffffff;
	text-decoration:none;
	font-weight:bold;
	border-radius:5px 5px 0 0;
	z-index:9999;
	box-shadow:-2px 2px 10px rgba(0,0,0,0.2);
	transition:background-color 0.3s ease;
	white-space:normal;
}
.sticky-booking-button:hover
{
	background-color:#004848;
	color:#fff;
}

@media (max-width: 768px)
{
	.sticky-booking-button
	{
		padding:10px;
		font-size: 14px;
	}
}

