{% set now = 'now'|carbon %}
{% set liveLabel = 'live'|trans %}
{% if auction.platform == 'auction.platform.online' %}
{% set liveLabel = 'online'|trans %}
{% endif %}
{% if auction.end > now %}
<section class="container"
data-controller="live-badge"
data-live-badge-start-value="{{ auction.start.toISOString }}"
data-live-badge-end-value="{{ auction.end.toISOString }}">
<span data-live-badge-target="badge" class="block w-full px-4 text-center bg-danger-600">
<span class="text-xs font-bold text-white uppercase">{{ liveLabel }}</span>
</span>
<div class="p-6" style="background-color: {{ auction.auctionhouse.color }}">
<h2 class="text-lg font-medium text-white uppercase md:text-xl font-headline mb-7">
{% if auction.start > now %}
{{ 'auction-starts-in'|trans }}
{% else %}
{{ 'auction-ends-in'|trans }}
{% endif %}
</h2>
{% include 'auction/auction_countdown.html.twig' with { auction: auction } only %}
</div>
</section>
{% endif %}