<div class="mt-5 mb-3 d-flex flex-column flex-md-row justify-content-between align-items-center previous-next-button-line">
<div class="previous-btn-width">
{% if previous_informations is defined and previous_informations is not null %}
<a href="{{- previous_informations['link'] -}}"
class="btn-nellapp-v2 d-flex justify-content-center align-items-center"
style="background-color: unset;color: #3f51b5;text-decoration: none;border: 2px solid #3f51b5;">
<img class="mr-2" src="{{- asset('build/common/background-white-left.svg', 'common') -}}"
alt="Previous"/>
<span>{{- previous_informations['title'] -}}</span>
</a>
{% endif %}
</div>
<div class="previous-btn-width">
{% if next_informations is defined and next_informations is not null %}
{% set path = next_informations['link'] %}
<a href="{{- path -}}"
{% if path is null %}disabled{% endif %}
class="{% if path is null %}disabled {% endif %}btn-nellapp-v2 d-flex justify-content-center align-items-center">
<span>{{- next_informations['title'] -}}</span>
<img class="ml-2" src="{{- asset('build/common/background-white-right.svg', 'common') -}}" alt="Next"/>
</a>
{% endif %}
</div>
</div>