<div class="rounds">
<a href="{{ path('frontend_match_play_bracket', {'idc': competicion.id }) }}" class="float">
<svg viewBox="0 0 76 76" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;transform: rotate(180deg);">
<path fill="currentColor" d="M52.25 60.167v-3.546l-10.773.113.17-12.105 10.575.023.028-3.485H38V48.3l-7.214-.023-.12-20.456L38 27.659v7.174h14.25v-3.232l-10.369-.019-.181-12.16 10.577-.134-.027-3.455H38v7.258l-12.667-.032v11.774h-7.916v6.334h7.916V52.97L38 53.071v7.096h14.25Z" style="fill-rule:nonzero"></path>
</svg>
</a>
<svg class="logo" xmlns="http://www.w3.org/2000/svg" width="180" height="180" viewBox="-9.51 -10.711 50 50" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<path fill="currentColor" d="M33.177 28.214C11.93 17.02 0 28.642 0 28.642V2.055S3.527-3.748 16.44 4.15c11.306 6.917 16.616 4.145 16.616 4.145s.31 2.732-.856 6.804c-1.502 5.26.977 13.114.977 13.114z"></path>
</svg>
{% if configuracion.grupos == 0 %}
{% for round in data.rounds %}
{% set roundId = round.id %}
<div class="ronda round {% if round.order != currentRound %} hideRound{% endif %} {{ round.format == 'I' ? 'individual-round' : 'couple-round' }} round-section" data-round="{{ roundId }}" data-id="{{ roundId }}" data-orden="{{ round.order }}" >
{% for match in round.matches %}
<div class="encuentro pairing" data-id="{{ match.id }}">
{% include 'frontend/MatchPlay/bracket-mobile/bracket-match-mobile.html.twig' %}
</div>
{% endfor %}
</div>
{% endfor %}
{% endif %}
</div>