:root{
	--btnHollowColor1: #FF9B22;
	--btnTextColor1: #FF9B22;
	--btnTextHoverColor1: #000;

	--btnHollowColor2: #ff00ff;
	--btnTextColor2: #ff00ff;
	--btnTextHoverColor2: #000;

	--btnHollowColor3: #000;
	--btnTextColor3: #000;
	--btnTextHoverColor3: #000;
}

a.btn{
	position: relative;
	display: inline-flex;
	padding: 10px 24px;
	justify-content: center;
	align-items: center;
	gap: 8px; 
	margin-right: 10px; /* der Abstand des nächsten Buttons rechts */
	background-color: #000;
	color: #fff;
	font-size: 1.5em;
	z-index: 1;
}


a.btn:hover{
	background-color: #fff;
	color: #000;
	z-index: 1;
}


.topline{
	transform: rotate(-2deg);
	background-color: #ff007d;
	display: block;
	padding: 9px;
	position: absolute;
	top:-42px;
	left: -36px;
}



a.btn:before{
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%; 
	transition: .3s ease-in;
}



/* icon stuff */
a.btn span img{
	max-height: 21px;
	margin-left: -5px;
}


/* Alignment  */
a.btn.br{	float: right; }
a.btn.bc{	left: 50%; transform: translateX(-50%); }