:root{
	--btnHollowColor1: #10843b;
	--btnTextColor1: #fff;
	--btnTextHoverColor1: #fff;

	--btnHollowColor2: #10843b;
	--btnTextColor2: #ffffff;
	--btnTextHoverColor2: #fff;

	--btnHollowColor3: #10843b;
	--btnTextColor3: #000;
	--btnTextHoverColor3: #000;

	--btnHollowColor4: #fff;
	--btnTextColor4: #fff;
	--btnTextHoverColor4: #ED6D68;
}

a.btn, a.wp-block-button__link{
	position: relative;
	display: inline-flex;
  padding: 15px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px; 
  text-transform: uppercase;
  font-family: var(--condensedFont);
  font-size: 19px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
	margin-right: 10px; /* der Abstand des nächsten Buttons rechts */
	margin-bottom: 10px; /* der Abstand des nächsten Buttons rechts */

	overflow: hidden;
	background-color: transparent;
  background-color: var(--green);
	z-index: 1;
}





a.btn{ color: var(--btnTextColor1);  }



a.btn:hover{ color: var(--btnTextHoverColor1); }




a.btn:before, 
a.wp-block-button__link:before{
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	transition: .3s ease-in;
}

a.btn:hover:before, a.wp-block-button__link:hover:before{
	width: 400px;
	height: 400px;
}

a.btn:hover:before{
	background-color: var(--btnHollowColor1);
}





/* Alignment  */
a.btn.br{	float: right; }
a.btn.bc{	left: 50%; transform: translateX(-50%); }



a.btn::after {
  display: block;
  content: '';
  width: 20px;
  height: 27px;
  background-image: url('../../../assets/img/pfeil.svg');
  background-size: contain;
  background-repeat: no-repeat;
  float: right;
  margin-left: 20px;
  background-position: center;

}