.la-patum-current-carousel {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.la-patum-current-carousel-track {
	display: flex;
	width: 100%;
	align-items: stretch;
	gap: 28px;
}

.la-patum-current-card {
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.la-patum-current-card.is-running {
	background: #692000;
	border-radius: 22px;
	padding: 10px 18px 10px 10px;
}

.la-patum-current-card.is-upcoming {
	background: #ef0038;
	border-radius: 22px;
	padding: 10px 18px 10px 10px;
}

.la-patum-current-card.is-finished {
	display: none;
}

.la-patum-current-card-image {
	flex: 0 0 auto;
	width: 150px;
	height: 145px;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.15);
}

.la-patum-current-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.la-patum-current-card-content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	padding-left: 16px;
}

.la-patum-current-card-title {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.la-patum-current-card-street {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.la-patum-current-card-time {
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
}

.la-patum-current-progress-track {
	width: 100%;
	height: 10px;
	margin-top: 30px;
	background: #883900;
	border-radius: 999px;
	overflow: hidden;
}

.la-patum-current-progress-value {
	display: block;
	width: 0%;
	height: 100%;
	background: #4a1700;
	border-radius: inherit;
	transition: width 0.25s ease;
}

.la-patum-current-carousel-empty {
	padding: 16px;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	font-size: 16px;
}

.la-patum-current-card.is-visible.is-upcoming .la-patum-current-progress-track {
	opacity:0;
}

.la-patum-event-program .la-patum-current-card.is-upcoming .la-patum-current-progress-track {
	opacity:0;
}

a.la-patum-current-card {
	color: inherit;
	text-decoration: none;
}

a.la-patum-current-card:hover,
a.la-patum-current-card:focus {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 767px) {
	.la-patum-current-card {
		min-width: 0;
	}

	.la-patum-current-card-title {
		white-space: normal;
	}

	.la-patum-current-card-content {
		padding-left: 12px;
	}
	.la-patum-current-card.is-upcoming {
	width: calc(100% - 30px);
}
}