/* Informations billets — fiche événement publique */

.single-event .ticket-info.fl-ticket-info.event_section_white {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-color: #f7f7f7;
	padding: 0;
	border: 0;
}

.single-event .fl-ticket-info-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	border: 1px solid #eeeeee;
	border-radius: 6px;
	background: #ffffff;
	overflow: hidden;
}

.single-event .fl-ticket-info-card__body {
	padding: 20px;
}

.single-event .fl-ticket-info-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.single-event .fl-ticket-info-card__intro {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.single-event .fl-ticket-info-card__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.single-event .fl-ticket-info-card__status {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.single-event .fl-ticket-info-card__status--live {
	gap: 6px;
	color: #020326;
}

.single-event .fl-ticket-info-card__live-dot {
	position: relative;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e53935;
	flex-shrink: 0;
	animation: fl-ticket-info-live-pulse 1.4s ease-in-out infinite;
}

.single-event .fl-ticket-info-card__live-dot::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: rgba(229, 57, 53, 0.35);
	animation: fl-ticket-info-live-ring 1.4s ease-in-out infinite;
}

@keyframes fl-ticket-info-live-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.65;
		transform: scale(0.92);
	}
}

@keyframes fl-ticket-info-live-ring {
	0%,
	100% {
		opacity: 0.45;
		transform: scale(1);
	}

	50% {
		opacity: 0.15;
		transform: scale(1.35);
	}
}

.single-event .fl-ticket-info-card--upcoming .fl-ticket-info-card__status--upcoming {
	color: #8a6b00;
}

.single-event .fl-ticket-info-card--closed .fl-ticket-info-card__status--closed {
	color: #747688;
}

.single-event .fl-ticket-info-card__title {
	margin: 0;
	color: #020326;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

.single-event .fl-ticket-info-card__price-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	flex-shrink: 0;
}

.single-event .fl-ticket-info-card__price {
	margin: 0;
	color: #020326;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.single-event .fl-ticket-info-card__price-tax {
	margin-top: 2px;
	color: #747688;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.single-event .fl-ticket-info-card--upcoming .fl-ticket-info-card__price {
	color: #747688;
}

.single-event .fl-ticket-info-card__description {
	color: #4a4a4a;
	font-size: 14px;
	line-height: 1.55;
}

.single-event .fl-ticket-info-card__description p {
	margin: 0 0 8px;
}

.single-event .fl-ticket-info-card__description p:last-child {
	margin-bottom: 0;
}

.single-event .fl-ticket-info-card__footer {
	padding: 10px 20px;
	background: #fbfbfb;
	border-top: 1px solid #eeeeee;
}

.single-event .fl-ticket-info-card__meta {
	margin: 0;
	color: #747688;
	font-size: 12px;
	line-height: 1.45;
}

@media (max-width: 767px) {
	.single-event .fl-ticket-info-card__header {
		flex-direction: column;
		gap: 10px;
	}

	.single-event .fl-ticket-info-card__title-row {
		align-items: flex-start;
	}

	.single-event .fl-ticket-info-card__price-wrap {
		align-items: flex-start;
		text-align: left;
	}

	.single-event .fl-ticket-info-card__price {
		white-space: normal;
	}
}
