/* Sticky-Leiste „Teilnehmen“ – Breite/Position per JS an .tribe-events-content angeglichen */

body.ignis-online-anmeldung-cta-active {
	padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
}

.ignis-event-registration-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	z-index: 100000;
	overflow: visible;
	pointer-events: none;
	box-sizing: border-box;
}

.ignis-event-registration-cta__inner {
	position: absolute;
	bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	left: 0;
	width: 100%;
	max-width: calc(100vw - 20px);
	box-sizing: border-box;
	pointer-events: auto;
	background: #e5e5e5;
	padding: 6px 10px;
	border-radius: 3px 3px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ignis-event-registration-cta__btn {
	display: inline-block;
	box-sizing: border-box;
	padding: 6px 18px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	color: #fff !important;
	background: #f99c1e;
	border: none;
	border-radius: 3px;
	transition: background 0.15s ease, color 0.15s ease;
}

.ignis-event-registration-cta__btn:hover,
.ignis-event-registration-cta__btn:focus {
	background: #e08810;
	color: #fff !important;
	outline: none;
}

.ignis-event-registration-cta__btn:focus-visible {
	outline: 2px solid #333;
	outline-offset: 2px;
}
