{"id":166383,"date":"2022-03-07T13:16:18","date_gmt":"2022-03-07T12:16:18","guid":{"rendered":"https:\/\/vdr.daisybell.ch\/abonnements\/"},"modified":"2026-03-20T10:58:07","modified_gmt":"2026-03-20T09:58:07","slug":"passes","status":"publish","type":"page","link":"https:\/\/2026.visionsdureel.ch\/en\/passes\/","title":{"rendered":"Passes"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Login with a pass<\/h2>\n\n\n<div class=\"tkt-wrapper\" data-component=\"Ticket\/TicketConnect\"><\/div>\n\n<script type=\"text\/template\" id=\"tkt-ticket-tpl\">\n    <%\n    const errors = {\n        'screening.start_at': \"Voting will be possible from the start of the screening.\",\n        'screening.stop_at': \"Voting will be possible from the end of the screening\",\n        'needs_scan': \"You cannot vote because your ticket has not been checked\",\n        'not_before': \"Voting is not yet possible for this screening\",\n        'not_after': \"Voting is no longer possible for this session\",\n    };\n    %>\n    <% if (tickets?.length > 1) { %>\n        <div class=\"mb-3\">\n            <ul class=\"nav nav-tabs nav-fill\">\n                <% _.sortBy(tickets, t => t.getDisplayName()).map(function (t) {  %>\n                    <li class=\"nav-item\">\n                        <a data-ticket-id=\"<%= t._id %>\"class=\"nav-link ticket-link <%= t._id === ticket?._id ? 'active' : '' %>\">\n                            <%= t.getTypeName() %> -\n                            <%= t.getDisplayName() %>\n                        <\/a>\n                    <\/li>\n                <% }) %>\n            <\/ul>\n        <\/div>\n    <% } %>\n\n    <% if (ticket) { %>\n\n    <%\n        const pastBookings = ticket.bookings?.filter(b => b.screening?.isFinished());\n        const futureBookings = ticket.bookings?.filter(b => !b.screening?.isFinished());\n    %>\n    <div class=\"tkt-ticket-view\">\n        <p class=\"alert alert-info small\"><span class=\"glyphicon glyphicon-info-sign\"><\/span>No separate tickets issued for bookings, present your current ticket to enter the booked screenings.<\/span><\/p>\n\n        <!-- Title -->\n        <div class=\"mb-3\">\n            <h3>\n                <strong>\n                    <%= ticket.getTypeName() %> -\n                    <%= ticket.getDisplayName() %>\n                <\/strong>\n            <\/h3>\n        <\/div>\n\n        <!-- R\u00e9servations -->\n        <section class=\"tkt-section tkt-light-section\">\n            <% if (!pastBookings.length && !futureBookings.length) { %>\n                <h3>Bookings<\/h3>\n                <div class=\"mb-2\">\n                    There are currently no bookings on this ticket.                <\/div>\n            <% } else { %>\n                <% if (futureBookings) { %>\n                    <h3>Bookings<\/h3>\n                    <table class=\"table table-striped table-hover no-more-tables\">\n                        <thead>\n                            <tr>\n                                <th>Date<\/th>\n                                <th>Booking<\/th>\n                                <th>Place<\/th>\n                                <th><i class=\"tkt-icon-smartphone\"><\/i><\/th>\n                                <th class=\"text-right\">Action<\/th>\n                            <\/tr>\n                        <\/thead>\n                        <tbody>\n                            <% futureBookings.map(function(b) { %>\n                            <tr>\n                                <td><%= b.screening_start_at.format(\"DD.MM.YYYY HH[h]mm\") %> -\n                                    <%= b.screening_stop_at.format(\"HH[h]mm\") %><\/td>\n                                <td><%= b.screening.getTitle() %><\/td>\n                                <td><%= b.screening.cinema_hall.name %><\/td>\n                                <td class=\"text-center\">\n                                    <% if (b.scanned_at.length) { %>\n                                        <i class=\"tkt-icon-checkmark\"><\/i>\n                                    <% } %>\n                                <\/td>\n                                <td>\n                                    <div class=\"flex-col items-end\">\n                                        <% if (b.isCancelable) { %>\n                                            <a href=\"#\" class=\"btn btn-danger btn-bloc cancel-booking-btn\" data-booking-id=\"<%= b._id %>\">\n                                                Cancel                                            <\/a>\n                                        <% } %>\n                                        <% if (votesConfig?.enabled && (b.vote || !b.screening.opaque?.disable_votes)) { %>\n                                            <% const { votable, reason } = b.isVotable(); %>\n                                            <div\n                                                data-component=\"Ui\/Rating\"\n                                                data-score=\"<%= b.vote?.score || 0 %>\"\n                                                data-ticket-id=\"<%= b.ticket_id %>\"\n                                                data-booking-id=\"<%= b._id %>\"\n                                                data-size=\"24\"\n                                                data-step=\"<%= votesConfig?.step %>\"\n                                                data-max=\"<%= votesConfig?.max_score %>\"\n                                                data-disabled-reason=\"<%= reason ? errors[reason] : '' %>\"\n                                            ><\/div>\n                                            <% if (reason) { %>\n                                                <small>\n                                                    <i class=\"tkt_icon_warning\" \/>\n                                                    <%= errors[reason] %>\n                                                <\/small>\n                                            <% } %>\n                                        <% } %>\n                                    <\/div>\n                                <\/td>\n                            <\/tr>\n                            <% }) %>\n                        <tbody>\n                    <\/table>\n                    <div class=\"cancelable_booking_err text-danger text-center\"><\/div>\n                <% } %>\n\n                <% if (pastBookings.length) { %>\n                    <h3>Past reservations<\/h3>\n                    <table class=\"table table-striped table-hover no-more-tables\">\n                        <thead>\n                            <tr>\n                                <th>Date<\/th>\n                                <th>Booking<\/th>\n                                <th>Place<\/th>\n                                <th><i class=\"tkt-icon-smartphone\"><\/i><\/th>\n                                <th><\/th>\n                            <\/tr>\n                        <\/thead>\n                        <tbody>\n                            <% pastBookings.map(function(b) { %>\n                            <tr>\n                                <td><%= b.screening_start_at.format(\"DD.MM.YYYY HH[h]mm\") %> -\n                                    <%= b.screening_stop_at.format(\"HH[h]mm\") %><\/td>\n                                <td><%= b.screening.getTitle() %><\/td>\n                                <td><%= b.screening.cinema_hall.name %><\/td>\n                                <td class=\"text-center\">\n                                    <% if (b.scanned_at.length) { %>\n                                        <i class=\"tkt-icon-checkmark\"><\/i>\n                                    <% } %>\n                                <\/td>\n                                <td>\n                                    <% if (votesConfig?.enabled && (b.vote || !b.screening.opaque?.disable_votes)) { %>\n                                        <% const { votable, reason } = b.isVotable(); %>\n                                        <div\n                                            data-component=\"Ui\/Rating\"\n                                            data-score=\"<%= b.vote?.score || 0 %>\"\n                                            data-ticket-id=\"<%= b.ticket_id %>\"\n                                            data-booking-id=\"<%= b._id %>\"\n                                            data-size=\"24\"\n                                            data-step=\"<%= votesConfig?.step %>\"\n                                            data-max=\"<%= votesConfig?.max_score %>\"\n                                            data-disabled-reason=\"<%= reason ? errors[reason] : '' %>\"\n                                        ><\/div>\n                                        <% if (reason) { %>\n                                            <small>\n                                                <i class=\"tkt_icon_warning\" \/>\n                                                <%= errors[reason] %>\n                                            <\/small>\n                                        <% } %>\n                                    <% } %>\n                                <\/td>\n                            <\/tr>\n                            <% }) %>\n                        <tbody>\n                    <\/table>\n                    <div class=\"cancelable_booking_err text-danger text-center\"><\/div>\n                <% } %>\n            <% } %>\n            <a class=\"btn button w-100\" href=\"<%= program_url %>\">\n                Book screenings            <\/a>\n        <\/section>\n\n        <!-- Owner -->\n        <% if (ticket?.hasContactInfo()) { %>\n        <section class=\"tkt-section tkt-dark-section mt-3\">\n            <h3 class=\"panel-title\">Holder<\/h3>\n            <div class=\"text-center\">\n                <% if (ticket.contact?.rfc2397_portrait?.length) { %>\n                    <img decoding=\"async\" class=\"img-responsive img-thumbnail\" src=\"<%= ticket.contact?.rfc2397_portrait %>\" \/>\n                    <br \/>\n                <% } %>\n\n                <% if (ticket.contact?.firstname || ticket.contact?.lastname) { %>\n                <h5>\n                    <%= [ticket.contact.firstname, ticket.contact.lastname].filter(v => !!v).join(' ') %>\n                <\/h5>\n                <% } %>\n\n                <div>\n                    <% if (ticket.contact?.birthdate) { %>\n                        <%= new Date(ticket.contact.birthdate).toLocaleDateString() %>\n                        <br \/>\n                    <% } %>\n\n                    <% if (ticket.contact?.address?.street) { %>\n                        <%= ticket.contact.address.street %>\n                        <br \/>\n                    <% } %>\n\n                    <% if (ticket.contact?.address?.zip || ticket.contact?.address?.city) { %>\n                        <%= [ticket.contact.address.zip, ticket.contact.address.city].filter(v => !!v).join(' ') %>\n                        <br \/>\n                    <% } %>\n\n                    <% if (ticket.contact?.address?.country) { %>\n                        <%= ticket.contact.address.country %>\n                        <br \/>\n                    <% } %>\n\n                    <% if (ticket.contact?.email) { %>\n                        <%= ticket.contact.email %>\n                    <% } %>\n                <\/div>\n            <\/div>\n        <\/section>\n        <% } %>\n\n        <!-- Guests -->\n        <% if (ticket?.hasGuestsInfo()) { %>\n        <section class=\"tkt-section tkt-dark-section mt-3\">\n            <h3 class=\"panel-title\">Guests<\/h3>\n            <div class=\"text-center\">\n                <% ticket.getGuestsInfo().forEach(guest => { %>\n                    <h5>\n                        <%= [guest.firstname, guest.lastname].filter(v => !!v).join(' ') %><br \/>\n                        <small><%= guest.email %><\/small>\n                    <\/h5>\n                <% }); %>\n            <\/div>\n        <\/section>\n        <% } %>\n\n        <% if (ticket.getWalletBalance() > 0) { %>\n        <div class=\"row\">\n            <div class=\"col\">\n                <section class=\"tkt-section tkt-light-section mt-3\">\n                    <div class=\"panel-heading wallet_info\">\n                        <h3 class=\"panel-title\">Portefeuille \u00e9lectronique<\/h3>\n                    <\/div>\n                    <div class=\"panel-body wallet_info text-center\">\n                        <div class=\"text-center\">\n                            <h4><%= ticket.getFormattedWalletBalance() %><\/h4>\n                        <\/div>\n                    <\/div>\n                <\/section>\n            <\/div>\n        <\/div>\n        <% } %>\n\n        <div class=\"row\">\n            <div class=\"col\">\n                <section class=\"tkt-section tkt-light-section mt-3\">\n                    <div class=\"panel-heading\">\n                        <h3 class=\"panel-title\">Validity<\/h3>\n                        <div class=\"panel-body\">\n                            <div class=\"well text-center\">\n                                <h5>\n                                Activated on <%= ticket.activated_at.format(\"LL\") %>                                <\/h5>\n                                <p>Pricing: <%= ticket.activated_pricing.name.en %>\n                                    (<%= ticket.getFormattedPriceAndCurrency() %>)\n                                <\/p>\n                            <\/div>\n                            <% if (ticket.getExpirationDate()) { %>\n                                <% if (ticket.hasExpired()) { %>\n                                    <div class=\"text-center alert alert-danger\">\n                                        <b>A expir\u00e9 le <%= ticket.getExpirationDate().format('LL') %> <\/b>\n                                    <\/div>\n                                <% } else {%>\n                                    <div class=\"text-center alert alert-success\">\n                                        <b>Valid until <%= ticket.getExpirationDate().format('LL') %><\/b>\n                                        <p>\n                                            <%= ticket.placesAvailable() %>\n                                        <\/p>\n                                    <\/div>\n                                <% } %>\n                            <% } %>\n                        <\/div>\n                    <\/div>\n                <\/section>\n            <\/div>\n        <\/div>\n        <% if (ticket.isForgettable) { %>\n        <div class=\"row mt-3\">\n            <div class=\"col\">\n                <button class=\"btn button forget-ticket-btn w-100\">\n                    <i class=\"tkt-icon-log-out\"><\/i> Forget this ticket                <\/button>\n            <\/div>\n        <\/div>\n        <% } %>\n    <\/div>\n    <% } %>\n<\/script>\n\n<script type=\"text\/template\" id=\"tkt-ticket-connect-tpl\">\n    <% if (!ticket)  { %>\n    <div class=\"tkt-ticket-connect\">\n        <div class=\"connect-panel\">\n            <div class=\"ticket_connect\">\n                <div>\n                    You have a <span class=\"tkt-ticketid_ticket\">Ticket<\/span><span class=\"tkt-ticketid_id\">ID<\/span>?                <\/div>\n                <div class=\"col\">\n                    <div class=\"row mt-5 input-pass\">\n                        <input id=\"pass-id\" type=\"number\"\n                            class=\"tkt-input input-invert form-control text-center pass-number-input\"\n                            placeholder=\"123456\" maxlength=\"6\" \/>\n                        <p class=\"minus\">-<\/p>\n                        <input id=\"pass-code\" type=\"password\" class=\"input input-invert text-center pass-key-input\"\n                            placeholder=\"abcdef\" maxlength=\"6\" \/>\n                    <\/div>\n                <\/div>\n                <div class=\"row\">\n                    <div class=\"col text-center\">\n                        <div class=\"error pass-error d-none text-center text-danger\"><\/div>\n                        <button class=\"btn btn-primary button login-btn connect-btn mt-5 mb-3\">\n                            <i class=\"tkt-icon-log-out\"><\/i> Login                        <\/button>\n                    <\/div>\n                <\/div>\n                <hr \/>\n                <div>\n                    Your <span class=\"tkt-ticketid_ticket\">Ticket<\/span><span class=\"tkt-ticketid_id\">ID<\/span> is on your pass                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <% } %>\n\n    <%\n    jQuery(document).ready(function($) {\n        $(\"#pass-id\").keyup(function() {\n            if (this.value.length == this.maxLength) {\n                $('#pass-code').focus();\n            }\n        });\n    });\n    %>\n<\/script>\n\n\n\n\n<p>&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Buy a pass<\/h2>\n\n\n<div\n  class=\"tkt-wrapper\"\n  data-component=\"Pass\/BuyForm\"\n  data-redirect=\"none\"\n  data-cart-url=\"https:\/\/2026.visionsdureel.ch\/en\/caisse\/\"\n  data-checkout-url=\"https:\/\/2026.visionsdureel.ch\/en\/caisse\/\">\n  <div class=\"row\">\n    <div class=\"col\">\n      \n<div class=\"tkt-wrapper\">\n  <section class=\"tkt-section tkt-light-section tkt-pass-section\">\n    \n      <div id=\"pass-accordion\" class=\"tkt-accordion\">\n                  <div class=\"card\" id=\"pass-pass_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_full\">\n                  General subscription                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_full\" data-type=\"pass_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>&nbsp;The general subscription gives you access to all in-theatre screenings. The subscription is personal, non-transferable and valid from April 17 to April 26.&nbsp;<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<br>\n <br>\n &nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_full-required-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_full-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"fullprice\">\n                                              Full Price (CHF 170.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at &lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 130.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;AVS, AI, unemployed persons, Apprentices, students, Path\u00e9 card&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at &lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"youth\">\n                                              Youth rate (CHF 80.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Under 26&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at&lt;strong&gt; &lt;\/strong&gt;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot; target=&quot;_new&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-pass_pmr_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_pmr_full\">\n                  General and online subscription (People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_pmr_full\" data-type=\"pass_pmr_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>The general subscription gives you access to all in-theatre screenings. The subscription is personal, non-transferable and valid from April 17 to April 26.&nbsp;<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_pmr_full-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_pmr_full-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 130.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"youth\">\n                                              Youth rate (CHF 80.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Under 26&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-pass_pmr_buddy_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_pmr_buddy_full\">\n                  General subscription (Helper People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_pmr_buddy_full\" data-type=\"pass_pmr_buddy_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>The general subscription gives you access to all in-theatre screenings. The subscription is personal, non-transferable and valid from April 17 to April 26 2026.&nbsp;<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_pmr_buddy_full-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_pmr_buddy_full-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"buddy\">\n                                              Helper (People with mobility restiction) (CHF 0.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As an accompanying person of a person with reduced mobility, you are eligible for an accompanying rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-pass_full_VOD\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_full_VOD\">\n                  General and online subscription                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_full_VOD\" data-type=\"pass_full_VOD\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>The general subscription gives you access to all in-theatre screenings. The subscription is personal, non-transferable and valid from April 17 to April 26.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p>\n<p>The online pass is valid from April 23, 6:00 pm to May 3, 6:00 pm. The subscription is personal and non-transferable.<\/p>\n<p>Films are available online without reservation directly at <a href=\"http:\/\/www.visionsdureel.ch\/\" target=\"_new\">www.visionsdureel.ch<\/a>.<\/p>\n<p>Films are geo-blocked to Switzerland and available for 72 hours. Once you have started a film, you have 24 hours to finish it.<br>\nPlease note that any attempt to download, misuse viewing access, or record the works is strictly prohibited.<br>\nThe films made available online are protected by a forensic watermark enabling the tracing of illegal downloads. We thank you for helping to protect the work of our filmmakers.<br>\n <br>\n &nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_full_VOD-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_full_VOD-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"fullprice\">\n                                              Full price (CHF 190.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at &lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 145.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;AVS, AI, unemployed persons, Apprentices, students, &nbsp;Path\u00e9&nbsp;card&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at &lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"Youth\">\n                                              Youth rate (CHF 90.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Under 26&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at &lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"Abo_supporter\">\n                                              Supporter rate (CHF 250.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID.&lt;\/strong&gt;&lt;\/p&gt;\n&lt;p&gt;Information at &lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the programme.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-pass_pmr_full_VOD\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_pmr_full_VOD\">\n                  General and online subscription (People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_pmr_full_VOD\" data-type=\"pass_pmr_full_VOD\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>The general subscription gives you access to all in-theatre screenings. The subscription is personal, non-transferable and valid from April 17 to April 26.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p>\n<p>The online pass is valid from April 23, 6:00 pm to May 3, 6:00 pm. The subscription is personal and non-transferable.<\/p>\n<p>Films are available online without reservation directly at <a href=\"http:\/\/www.visionsdureel.ch\/\">www.visionsdureel.ch<\/a>.<\/p>\n<p>Films are geo-blocked to Switzerland and available for 72 hours. Once you have started a film, you have 24 hours to finish it. Please note that any attempt to download, misuse viewing access, or record the works is strictly prohibited. The films made available online are protected by a forensic watermark enabling the tracing of illegal downloads. We thank you for helping to protect the work of our filmmakers. &nbsp;&nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_pmr_full_VOD-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_pmr_full_VOD-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 145.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"youth\">\n                                              Youth rate (CHF 90.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Under 26&lt;\/p&gt;\n&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"support\">\n                                              Supporter rate (CHF 250.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-pass_pmr_buddy_full_VOD\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_pmr_buddy_full_VOD\">\n                  General and online subscription (Helper People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_pmr_buddy_full_VOD\" data-type=\"pass_pmr_buddy_full_VOD\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>The general subscription gives you access to all in-theatre screenings. The subscription is personal, non-transferable and valid from April 17 to April 26.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p>\n<p>The online pass is valid from April 23, 6:00 pm to May 3, 6:00 pm. The subscription is personal and non-transferable.<\/p>\n<p>Films are available online without reservation directly at <a href=\"http:\/\/www.visionsdureel.ch\/\">www.visionsdureel.ch<\/a>.<\/p>\n<p>Films are geo-blocked to Switzerland and available for 72 hours. Once you have started a film, you have 24 hours to finish it. Please note that any attempt to download, misuse viewing access, or record the works is strictly prohibited. The films made available online are protected by a forensic watermark enabling the tracing of illegal downloads. We thank you for helping to protect the work of our filmmakers. &nbsp;&nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_pmr_buddy_full_VOD-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_pmr_buddy_full_VOD-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"buddy\">\n                                              Helper (People with mobility restiction) (CHF 0.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As an accompanying person of a person with reduced mobility, you are eligible for an accompanying rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-pass_VOD\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-pass_VOD\">\n                  Online Pass                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-pass_VOD\" data-type=\"pass_VOD\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>The online pass is valid from April 23, 6:00 pm to May 3, 6:00 pm. The subscription is personal and non-transferable.<\/p>\n<p>Films are available online without reservation directly at <a href=\"http:\/\/www.visionsdureel.ch\/\" target=\"_new\">www.visionsdureel.ch<\/a>.<br>\n Films are geo-blocked to Switzerland and available for 72 hours. Once you have started a film, you have 24 hours to finish it.<br>\n Please note that any attempt to download, misuse viewing access, or record the works is strictly prohibited.<br>\n The films made available online are protected by a forensic watermark enabling the tracing of illegal downloads. We thank you for helping to protect the work of our filmmakers.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"pass_VOD-required-fields\" value=\"firstname,lastname,email,zip\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"pass_VOD-requested-fields\" value=\"firstname,lastname,email,zip\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"unique\">\n                                              Flate rate (CHF 25.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-5_entries_card_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-5_entries_card_full\">\n                  5 entries card                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-5_entries_card_full\" data-type=\"5_entries_card_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This pass is not issued to a specific name; you may book several seats for the same screening, but you must arrive together at the entrance.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<br>\n&nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"5_entries_card_full-required-fields\" value=\"firstname,lastname,zip,email\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"5_entries_card_full-requested-fields\" value=\"firstname,lastname,email,zip\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"fullprice\">\n                                              Full price (CHF 70.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&lt;br&gt;\n &lt;br&gt;\n &nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 50.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;AVS, AI, apprentices, students, unemployed persons, &nbsp;Path\u00e9&nbsp; card&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&lt;br&gt;\n &lt;br&gt;\n &nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"supporter\">\n                                              Supporter rate (CHF 90.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&lt;br&gt;\n &lt;br&gt;\n &nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-5_entries_card_pmr_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-5_entries_card_pmr_full\">\n                  5 entries card (People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-5_entries_card_pmr_full\" data-type=\"5_entries_card_pmr_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This pass is not issued to a specific name; you may book several seats for the same screening, but you must arrive together at the entrance.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms. &nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"5_entries_card_pmr_full-required-fields\" value=\"firstname,lastname,email,zip\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"5_entries_card_pmr_full-requested-fields\" value=\"firstname,lastname,zip,email\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 50.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program. &nbsp;&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"supporter\">\n                                              New pricing (CHF 90.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program. &nbsp;&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-5_entries_card_pmr_buddy_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-5_entries_card_pmr_buddy_full\">\n                  5 entries card (Helper People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-5_entries_card_pmr_buddy_full\" data-type=\"5_entries_card_pmr_buddy_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This pass is not issued to a specific name; you may book several seats for the same screening, but you must arrive together at the entrance.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms. &nbsp;<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"5_entries_card_pmr_buddy_full-required-fields\" value=\"firstname,lastname,zip,email\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"5_entries_card_pmr_buddy_full-requested-fields\" value=\"firstname,lastname,zip,email\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"buddy\">\n                                              Helper (People with mobility restiction) (CHF 0.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As an accompanying person of a person with reduced mobility, you are eligible for an accompanying rate.&lt;\/p&gt;\n&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-daily_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-daily_full\">\n                  Daily card                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-daily_full\" data-type=\"daily_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This day pass allows you to book screenings for the same day. The day pass is personal and non-transferable.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"daily_full-required-fields\" value=\"firstname,lastname,zip,photo,email\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"daily_full-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"fullprice\">\n                                              Full price (CHF 45.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 30.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;AVS, AI, apprentices, students, unemployed persons, &nbsp;Path\u00e9&nbsp;card&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"supporter\">\n                                              Supporter rate (CHF 60.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-daily_pmr_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-daily_pmr_full\">\n                  Day pass (People with mobility restriction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-daily_pmr_full\" data-type=\"daily_pmr_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This day pass allows you to book screenings for the same day. The day pass is personal and non-transferable.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"daily_pmr_full-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"daily_pmr_full-requested-fields\" value=\"firstname,lastname,email,photo,zip\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"reduced\">\n                                              Reduced (CHF 30.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"supporter\">\n                                              Supporter rate (CHF 60.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-daily_pmr_buddy_full\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-daily_pmr_buddy_full\">\n                  Day pass (Helper People with mobility restriction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-daily_pmr_buddy_full\" data-type=\"daily_pmr_buddy_full\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This day pass allows you to book screenings for the same day. The day pass is personal and non-transferable.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"daily_pmr_buddy_full-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"daily_pmr_buddy_full-requested-fields\" value=\"firstname,lastname,email,photo,zip\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"buddy\">\n                                              Helper (People with mobility restriction) (CHF 0.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As an accompanying person of a person with reduced mobility, you are eligible for an accompanying rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-awards\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-awards\">\n                  Winning films daily card - 26th April                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-awards\" data-type=\"awards\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This day pass allows you to book screenings of the award-winning films on April 26, 2026. The day pass is personal and non-transferable.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"awards-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"awards-requested-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"fullprice\">\n                                              Full price (CHF 30.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-awards_pmr\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-awards_pmr\">\n                  Winning films daily card  - 26th April (People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-awards_pmr\" data-type=\"awards_pmr\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This day pass allows you to book screenings of the award-winning films on April 26, 2026. The day pass is personal and non-transferable.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"awards_pmr-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"awards_pmr-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"fullprice\">\n                                              Full price (CHF 30.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As a Person with mobility restriction you benefit from a reduced rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n                  <div class=\"card\" id=\"pass-awards_pmr_buddy\">\n            <div class=\"card-header tkt-light-section\">\n              <h5 class=\"card-title mb-0\">\n                <button class=\"btn btn-link pass_title\" aria-expanded=\"true\" aria-controls=\"#item-awards_pmr_buddy\">\n                  Winning films daily card - 26th April (Helper People with mobility restiction)                <\/button>\n              <\/h5>\n            <\/div>\n            <div id=\"item-awards_pmr_buddy\" data-type=\"awards_pmr_buddy\" class=\"card-content pass \">\n              <div class=\"card-body tkt-light-section\">\n                <p><p>This day pass allows you to book screenings of the award-winning films on April 26, 2026. The day pass is personal and non-transferable.<\/p>\n<p>Access to in-theatre screenings is not guaranteed without prior reservation.<\/p>\n<p>Checks may be carried out at the entrance to the screening rooms.<\/p><\/p>\n                <input type=\"hidden\" class=\"required-fields\" id=\"awards_pmr_buddy-required-fields\" value=\"firstname,lastname,zip,email,photo\" \/>\n                <input type=\"hidden\" class=\"requested-fields\" id=\"awards_pmr_buddy-requested-fields\" value=\"firstname,lastname,email,zip,photo\" \/>\n                <b>Pricing:<\/b>\n                                  <div class=\"radio\">\n                    <label>\n                      <input class=\"choose-pass\" type=\"radio\" name=\"user[pass]\" value=\"buddy\">\n                                              Helper (People with mobility restiction) (CHF 0.00)\n                          <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"&lt;p&gt;As an accompanying person of a person with reduced mobility, you are eligible for an accompanying rate.&lt;\/p&gt;\n&lt;p&gt;Screenings can be booked online or at the Festival box office with your &lt;strong&gt;TicketID&lt;\/strong&gt;.&lt;\/p&gt;\n&lt;p&gt;Information at &nbsp;&lt;a href=&quot;https:\/\/www.visionsdureel.ch\/info\/a-propos\/billetterie\/&quot;&gt;&lt;strong&gt;https:\/\/www.visionsdureel.ch&lt;\/strong&gt;&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;Download the &lt;strong&gt;Visions du R\u00e9el&lt;\/strong&gt; app to access your tickets and the program.&nbsp;&lt;\/p&gt;\"><\/i>\n                                          <\/label>\n                  <\/div>\n                              <\/div>\n            <\/div>\n          <\/div>\n              <\/div>\n      <\/section>\n<\/div>\n\n<script>\njQuery(document).ready(function ($) {\n    \/\/ Open first pass if there is only one\n    var pass = $('.pass_title');\n    if (pass.length == 1) {\n        $(pass[0]).trigger('click');\n\n        \/\/ Open first pricing if there is only one\n        var pricings = $('.choose-pass');\n        if (pricings.length == 1) {\n            $(pricings[0]).trigger('click');\n        }\n    }\n});\n<\/script>\n\n    <\/div>\n  <\/div>\n\n  <div class=\"row\">\n    <div class=\"col\">\n      <div class=\"tkt-wrapper\">\n  <section class=\"tkt-section tkt-light-section tkt-pass-form-section\">\n    <h3 class=\"tkt-section-title mb-3\">\n      Holder    <\/h3>\n    <div class=\"row\">\n      <div class=\"col\">\n        <form>\n          <fieldset>\n            <div class=\"row\">\n              <div id=\"field-wrapper-company\" class=\"field-wrapper col-md-4\" style=\"display: block;\">\n                <div class=\"form-group\">\n                   <label class=\"required\" for=\"company\">Company<\/label>\n                   <input name=\"company\" type=\"text\" class=\"tkt-input form-control field\" id=\"company\" placeholder=\"Your company\" required \/>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"row\">\n              <div id=\"field-wrapper-title\" class=\"col-md-12 field-wrapper form-group\" style=\"display: none;\">\n                <label class=\"required\" for=\"title\">Title<\/label>\n                <select name=\"title\" id=\"title\" class=\"tkt-input form-control field\" required>\n                  <option value=\"\"><\/option>\n                    <option value=\"n\/c\">No answer<\/option><option value=\"mrs\">Ms<\/option><option value=\"miss\">Miss<\/option><option value=\"mr\">Mr<\/option><option value=\"dr\">Docteur<\/option>                <\/select>\n              <\/div>\n            <\/div>\n            <div class=\"row\">\n              <div id=\"field-wrapper-firstname\" class=\"field-wrapper col-md-4\" style=\"display: block;\">\n                <div class=\"form-group\">\n                   <label class=\"required\" for=\"firstname\">First name<\/label>\n                   <input name=\"firstname\" type=\"text\" class=\"tkt-input form-control field\" id=\"firstname\" placeholder=\"Your first name\" required \/>\n                <\/div>\n              <\/div>\n\n              <div id=\"field-wrapper-lastname\" class=\"field-wrapper col-md-4\" style=\"display: block;\">\n                <div class=\"form-group\">\n                  <label class=\"required\" for=\"lastname\">Last name<\/label>\n                  <input name=\"lastname\" type=\"text\" class=\"tkt-input form-control field\" id=\"lastname\" placeholder=\"Your last name\" required \/>\n                <\/div>\n              <\/div>\n\n              <div id=\"field-wrapper-email\" class=\"field-wrapper col-md-4\" style=\"display: block;\">\n                <div class=\"form-group\">\n                  <label class=\"required\" for=\"email\">Email<\/label>\n                  <input name=\"email\" type=\"email\" class=\"tkt-input form-control field\" id=\"email\" placeholder=\"Your email address\" pattern=\"[^@]+@[^@]+\\.[a-zA-Z]{2,}\" required \/>\n                <\/div>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n\n              <div id=\"field-wrapper-address\" class=\"field-wrapper form-group col-md-4\">\n                <label class=\"required\" for=\"address\">Address<\/label>\n                <textarea name=\"address\" class=\"tkt-input form-control field\" id=\"address\" placeholder=\"Your address\" required><\/textarea>\n              <\/div>\n\n              <div id=\"field-wrapper-zip\" class=\"field-wrapper col-md-4\">\n                <div class=\"form-group\">\n                  <label class=\"required\" for=\"zip\">Zip<\/label>\n                  <input name=\"zip\" type=\"text\" class=\"tkt-input form-control field\" id=\"zip\" placeholder=\"ZIP\" required \/>\n                <\/div>\n              <\/div>\n\n              <div id=\"field-wrapper-city\" class=\"field-wrapper col-md-4\">\n                <div class=\"form-group\">\n                  <label class=\"required\" for=\"city\">City<\/label>\n                  <input name=\"city\" type=\"text\" class=\"tkt-input form-control field\" id=\"city\" placeholder=\"City\" required \/>\n                <\/div>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n              <div id=\"field-wrapper-country\" class=\"form-group field-wrapper col-md-12\" style=\"display: none;\">\n                <label class=\"required\" for=\"country\">Country<\/label>\n                <select name=\"country\" id=\"country\" class=\"tkt-input form-control field\" required>\n                  <option value=\"\"><\/option>\n                  <option value=\"Unknown\">Unknown<\/option><option value=\"Afghanistan\">Afghanistan<\/option><option value=\"Albania\">Albania<\/option><option value=\"Algeria\">Algeria<\/option><option value=\"American Samoa\">American Samoa<\/option><option value=\"Andorra\">Andorra<\/option><option value=\"Angola\">Angola<\/option><option value=\"Anguilla\">Anguilla<\/option><option value=\"Antarctica\">Antarctica<\/option><option value=\"Antigua and Barbuda\">Antigua and Barbuda<\/option><option value=\"Argentina\">Argentina<\/option><option value=\"Armenia\">Armenia<\/option><option value=\"Aruba\">Aruba<\/option><option value=\"Australia\">Australia<\/option><option value=\"Austria\">Austria<\/option><option value=\"Azerbaijan\">Azerbaijan<\/option><option value=\"Bahamas\">Bahamas<\/option><option value=\"Bahrain\">Bahrain<\/option><option value=\"Bangladesh\">Bangladesh<\/option><option value=\"Barbados\">Barbados<\/option><option value=\"Belarus\">Belarus<\/option><option value=\"Belgium\">Belgium<\/option><option value=\"Belize\">Belize<\/option><option value=\"Benin\">Benin<\/option><option value=\"Bermuda\">Bermuda<\/option><option value=\"Bhutan\">Bhutan<\/option><option value=\"Bolivia\">Bolivia<\/option><option value=\"Bosnia and Herzegovina\">Bosnia and Herzegovina<\/option><option value=\"Botswana\">Botswana<\/option><option value=\"Bouvet Island\">Bouvet Island<\/option><option value=\"Brazil\">Brazil<\/option><option value=\"British Indian Ocean Territory\">British Indian Ocean Territory<\/option><option value=\"Brunei Darussalam\">Brunei Darussalam<\/option><option value=\"Bulgaria\">Bulgaria<\/option><option value=\"Burkina Faso\">Burkina Faso<\/option><option value=\"Burundi\">Burundi<\/option><option value=\"Cambodia\">Cambodia<\/option><option value=\"Cameroon\">Cameroon<\/option><option value=\"Canada\">Canada<\/option><option value=\"Cape Verde\">Cape Verde<\/option><option value=\"Cayman Islands\">Cayman Islands<\/option><option value=\"Central African Republic\">Central African Republic<\/option><option value=\"Chad\">Chad<\/option><option value=\"Chile\">Chile<\/option><option value=\"China\">China<\/option><option value=\"Christmas Island\">Christmas Island<\/option><option value=\"Cocos (Keeling) Islands\">Cocos (Keeling) Islands<\/option><option value=\"Colombia\">Colombia<\/option><option value=\"Comoros\">Comoros<\/option><option value=\"Congo\">Congo<\/option><option value=\"Congo, the Democratic Republic of the\">Congo, the Democratic Republic of the<\/option><option value=\"Cook Islands\">Cook Islands<\/option><option value=\"Costa Rica\">Costa Rica<\/option><option value=\"Cote D&#039;Ivoire\">Cote D&#039;Ivoire<\/option><option value=\"Croatia\">Croatia<\/option><option value=\"Cuba\">Cuba<\/option><option value=\"Cyprus\">Cyprus<\/option><option value=\"Czech Republic\">Czech Republic<\/option><option value=\"Denmark\">Denmark<\/option><option value=\"Djibouti\">Djibouti<\/option><option value=\"Dominica\">Dominica<\/option><option value=\"Dominican Republic\">Dominican Republic<\/option><option value=\"Ecuador\">Ecuador<\/option><option value=\"Egypt\">Egypt<\/option><option value=\"El Salvador\">El Salvador<\/option><option value=\"Equatorial Guinea\">Equatorial Guinea<\/option><option value=\"Eritrea\">Eritrea<\/option><option value=\"Estonia\">Estonia<\/option><option value=\"Ethiopia\">Ethiopia<\/option><option value=\"Falkland Islands (Malvinas)\">Falkland Islands (Malvinas)<\/option><option value=\"Faroe Islands\">Faroe Islands<\/option><option value=\"Fiji\">Fiji<\/option><option value=\"Finland\">Finland<\/option><option value=\"France\">France<\/option><option value=\"French Guiana\">French Guiana<\/option><option value=\"French Polynesia\">French Polynesia<\/option><option value=\"French Southern Territories\">French Southern Territories<\/option><option value=\"Gabon\">Gabon<\/option><option value=\"Gambia\">Gambia<\/option><option value=\"Georgia\">Georgia<\/option><option value=\"Germany\">Germany<\/option><option value=\"Ghana\">Ghana<\/option><option value=\"Gibraltar\">Gibraltar<\/option><option value=\"Greece\">Greece<\/option><option value=\"Greenland\">Greenland<\/option><option value=\"Grenada\">Grenada<\/option><option value=\"Guadeloupe\">Guadeloupe<\/option><option value=\"Guam\">Guam<\/option><option value=\"Guatemala\">Guatemala<\/option><option value=\"Guinea\">Guinea<\/option><option value=\"Guinea-Bissau\">Guinea-Bissau<\/option><option value=\"Guyana\">Guyana<\/option><option value=\"Haiti\">Haiti<\/option><option value=\"Heard Island and Mcdonald Islands\">Heard Island and Mcdonald Islands<\/option><option value=\"Holy See (Vatican City State)\">Holy See (Vatican City State)<\/option><option value=\"Honduras\">Honduras<\/option><option value=\"Hong Kong\">Hong Kong<\/option><option value=\"Hungary\">Hungary<\/option><option value=\"Iceland\">Iceland<\/option><option value=\"India\">India<\/option><option value=\"Indonesia\">Indonesia<\/option><option value=\"Iran, Islamic Republic of\">Iran, Islamic Republic of<\/option><option value=\"Iraq\">Iraq<\/option><option value=\"Ireland\">Ireland<\/option><option value=\"Israel\">Israel<\/option><option value=\"Italy\">Italy<\/option><option value=\"Jamaica\">Jamaica<\/option><option value=\"Japan\">Japan<\/option><option value=\"Jordan\">Jordan<\/option><option value=\"Kazakhstan\">Kazakhstan<\/option><option value=\"Kenya\">Kenya<\/option><option value=\"Kiribati\">Kiribati<\/option><option value=\"Korea, Democratic People&#039;s Republic of\">Korea, Democratic People&#039;s Republic of<\/option><option value=\"Korea, Republic of\">Korea, Republic of<\/option><option value=\"Kuwait\">Kuwait<\/option><option value=\"Kyrgyzstan\">Kyrgyzstan<\/option><option value=\"Lao People&#039;s Democratic Republic\">Lao People&#039;s Democratic Republic<\/option><option value=\"Latvia\">Latvia<\/option><option value=\"Lebanon\">Lebanon<\/option><option value=\"Lesotho\">Lesotho<\/option><option value=\"Liberia\">Liberia<\/option><option value=\"Libyan Arab Jamahiriya\">Libyan Arab Jamahiriya<\/option><option value=\"Liechtenstein\">Liechtenstein<\/option><option value=\"Lithuania\">Lithuania<\/option><option value=\"Luxembourg\">Luxembourg<\/option><option value=\"Macao\">Macao<\/option><option value=\"Macedonia, the Former Yugoslav Republic of\">Macedonia, the Former Yugoslav Republic of<\/option><option value=\"Madagascar\">Madagascar<\/option><option value=\"Malawi\">Malawi<\/option><option value=\"Malaysia\">Malaysia<\/option><option value=\"Maldives\">Maldives<\/option><option value=\"Mali\">Mali<\/option><option value=\"Malta\">Malta<\/option><option value=\"Marshall Islands\">Marshall Islands<\/option><option value=\"Martinique\">Martinique<\/option><option value=\"Mauritania\">Mauritania<\/option><option value=\"Mauritius\">Mauritius<\/option><option value=\"Mayotte\">Mayotte<\/option><option value=\"Mexico\">Mexico<\/option><option value=\"Micronesia, Federated States of\">Micronesia, Federated States of<\/option><option value=\"Moldova, Republic of\">Moldova, Republic of<\/option><option value=\"Monaco\">Monaco<\/option><option value=\"Mongolia\">Mongolia<\/option><option value=\"Montserrat\">Montserrat<\/option><option value=\"Morocco\">Morocco<\/option><option value=\"Mozambique\">Mozambique<\/option><option value=\"Myanmar\">Myanmar<\/option><option value=\"Namibia\">Namibia<\/option><option value=\"Nauru\">Nauru<\/option><option value=\"Nepal\">Nepal<\/option><option value=\"Netherlands\">Netherlands<\/option><option value=\"Netherlands Antilles\">Netherlands Antilles<\/option><option value=\"New Caledonia\">New Caledonia<\/option><option value=\"New Zealand\">New Zealand<\/option><option value=\"Nicaragua\">Nicaragua<\/option><option value=\"Niger\">Niger<\/option><option value=\"Nigeria\">Nigeria<\/option><option value=\"Niue\">Niue<\/option><option value=\"Norfolk Island\">Norfolk Island<\/option><option value=\"Northern Mariana Islands\">Northern Mariana Islands<\/option><option value=\"Norway\">Norway<\/option><option value=\"Oman\">Oman<\/option><option value=\"Pakistan\">Pakistan<\/option><option value=\"Palau\">Palau<\/option><option value=\"Palestinian Territory, Occupied\">Palestinian Territory, Occupied<\/option><option value=\"Panama\">Panama<\/option><option value=\"Papua New Guinea\">Papua New Guinea<\/option><option value=\"Paraguay\">Paraguay<\/option><option value=\"Peru\">Peru<\/option><option value=\"Philippines\">Philippines<\/option><option value=\"Pitcairn\">Pitcairn<\/option><option value=\"Poland\">Poland<\/option><option value=\"Portugal\">Portugal<\/option><option value=\"Puerto Rico\">Puerto Rico<\/option><option value=\"Qatar\">Qatar<\/option><option value=\"Reunion\">Reunion<\/option><option value=\"Romania\">Romania<\/option><option value=\"Russian Federation\">Russian Federation<\/option><option value=\"Rwanda\">Rwanda<\/option><option value=\"Saint Helena\">Saint Helena<\/option><option value=\"Saint Kitts and Nevis\">Saint Kitts and Nevis<\/option><option value=\"Saint Lucia\">Saint Lucia<\/option><option value=\"Saint Pierre and Miquelon\">Saint Pierre and Miquelon<\/option><option value=\"Saint Vincent and the Grenadines\">Saint Vincent and the Grenadines<\/option><option value=\"Samoa\">Samoa<\/option><option value=\"San Marino\">San Marino<\/option><option value=\"Sao Tome and Principe\">Sao Tome and Principe<\/option><option value=\"Saudi Arabia\">Saudi Arabia<\/option><option value=\"Senegal\">Senegal<\/option><option value=\"Serbia and Montenegro\">Serbia and Montenegro<\/option><option value=\"Seychelles\">Seychelles<\/option><option value=\"Sierra Leone\">Sierra Leone<\/option><option value=\"Singapore\">Singapore<\/option><option value=\"Slovakia\">Slovakia<\/option><option value=\"Slovenia\">Slovenia<\/option><option value=\"Solomon Islands\">Solomon Islands<\/option><option value=\"Somalia\">Somalia<\/option><option value=\"South Africa\">South Africa<\/option><option value=\"South Georgia and the South Sandwich Islands\">South Georgia and the South Sandwich Islands<\/option><option value=\"Spain\">Spain<\/option><option value=\"Sri Lanka\">Sri Lanka<\/option><option value=\"Sudan\">Sudan<\/option><option value=\"Suriname\">Suriname<\/option><option value=\"Svalbard and Jan Mayen\">Svalbard and Jan Mayen<\/option><option value=\"Swaziland\">Swaziland<\/option><option value=\"Sweden\">Sweden<\/option><option value=\"Switzerland\">Switzerland<\/option><option value=\"Syrian Arab Republic\">Syrian Arab Republic<\/option><option value=\"Taiwan, Province of China\">Taiwan, Province of China<\/option><option value=\"Tajikistan\">Tajikistan<\/option><option value=\"Tanzania, United Republic of\">Tanzania, United Republic of<\/option><option value=\"Thailand\">Thailand<\/option><option value=\"Timor-Leste\">Timor-Leste<\/option><option value=\"Togo\">Togo<\/option><option value=\"Tokelau\">Tokelau<\/option><option value=\"Tonga\">Tonga<\/option><option value=\"Trinidad and Tobago\">Trinidad and Tobago<\/option><option value=\"Tunisia\">Tunisia<\/option><option value=\"Turkey\">Turkey<\/option><option value=\"Turkmenistan\">Turkmenistan<\/option><option value=\"Turks and Caicos Islands\">Turks and Caicos Islands<\/option><option value=\"Tuvalu\">Tuvalu<\/option><option value=\"Uganda\">Uganda<\/option><option value=\"Ukraine\">Ukraine<\/option><option value=\"United Arab Emirates\">United Arab Emirates<\/option><option value=\"United Kingdom\">United Kingdom<\/option><option value=\"United States\">United States<\/option><option value=\"United States Minor Outlying Islands\">United States Minor Outlying Islands<\/option><option value=\"Uruguay\">Uruguay<\/option><option value=\"Uzbekistan\">Uzbekistan<\/option><option value=\"Vanuatu\">Vanuatu<\/option><option value=\"Venezuela\">Venezuela<\/option><option value=\"Viet Nam\">Viet Nam<\/option><option value=\"Virgin Islands, British\">Virgin Islands, British<\/option><option value=\"Virgin Islands, U.s.\">Virgin Islands, U.s.<\/option><option value=\"Wallis and Futuna\">Wallis and Futuna<\/option><option value=\"Western Sahara\">Western Sahara<\/option><option value=\"Yemen\">Yemen<\/option><option value=\"Zambia\">Zambia<\/option><option value=\"Zimbabwe\">Zimbabwe<\/option><option value=\"Kosovo\">Kosovo<\/option><option value=\"Serbia\">Serbia<\/option><option value=\"Zaire\">Zaire<\/option><option value=\"Yugoslavia\">Yugoslavia<\/option>                <\/select>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n              <div id=\"field-wrapper-phone\" class=\"field-wrapper col-md-6\">\n                <div class=\"form-group\">\n                  <label class=\"required\" for=\"phone\">Phone<\/label>\n                  <input name=\"phone\" type=\"text\" class=\"tkt-input form-control field\" id=\"phone\" placeholder=\"Phone\" required \/>\n                <\/div>\n              <\/div>\n              <div id=\"field-wrapper-cellphone\" class=\"field-wrapper col-md-6\">\n                <div class=\"form-group\">\n                  <label class=\"required\" for=\"cellphone\">Cellphone<\/label>\n                  <input name=\"cellphone\" type=\"text\" class=\"tkt-input form-control field\" id=\"cellphone\" placeholder=\"Cellphone\" required \/>\n                <\/div>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n              <div id=\"field-wrapper-age\" class=\"col-md-12 field-wrapper form-group\" style=\"display: none;\">\n                <label class=\"required\" for=\"age\">Age<\/label>\n                <select name=\"age\" id=\"age\" class=\"tkt-input form-control field\" required>\n                  <option value=\"\"><\/option>\n                  <option value=\"No answer\">No answer<\/option><option value=\"&lt; 5\">&lt; 5<\/option><option value=\"5\">5<\/option><option value=\"6\">6<\/option><option value=\"7\">7<\/option><option value=\"8\">8<\/option><option value=\"9\">9<\/option><option value=\"10\">10<\/option><option value=\"11\">11<\/option><option value=\"12\">12<\/option><option value=\"13\">13<\/option><option value=\"14\">14<\/option><option value=\"15\">15<\/option><option value=\"16\">16<\/option><option value=\"17\">17<\/option><option value=\"18\">18<\/option><option value=\"19\">19<\/option><option value=\"20\">20<\/option><option value=\"21\">21<\/option><option value=\"22\">22<\/option><option value=\"23\">23<\/option><option value=\"24\">24<\/option><option value=\"25\">25<\/option><option value=\"26\">26<\/option><option value=\"27\">27<\/option><option value=\"28\">28<\/option><option value=\"29\">29<\/option><option value=\"30\">30<\/option><option value=\"31\">31<\/option><option value=\"32\">32<\/option><option value=\"33\">33<\/option><option value=\"34\">34<\/option><option value=\"35\">35<\/option><option value=\"36\">36<\/option><option value=\"37\">37<\/option><option value=\"38\">38<\/option><option value=\"39\">39<\/option><option value=\"40\">40<\/option><option value=\"41\">41<\/option><option value=\"42\">42<\/option><option value=\"43\">43<\/option><option value=\"44\">44<\/option><option value=\"45\">45<\/option><option value=\"46\">46<\/option><option value=\"47\">47<\/option><option value=\"48\">48<\/option><option value=\"49\">49<\/option><option value=\"50\">50<\/option><option value=\"51\">51<\/option><option value=\"52\">52<\/option><option value=\"53\">53<\/option><option value=\"54\">54<\/option><option value=\"55\">55<\/option><option value=\"56\">56<\/option><option value=\"57\">57<\/option><option value=\"58\">58<\/option><option value=\"59\">59<\/option><option value=\"60\">60<\/option><option value=\"61\">61<\/option><option value=\"62\">62<\/option><option value=\"63\">63<\/option><option value=\"64\">64<\/option><option value=\"65\">65<\/option><option value=\"66\">66<\/option><option value=\"67\">67<\/option><option value=\"68\">68<\/option><option value=\"69\">69<\/option><option value=\"70\">70<\/option><option value=\"71\">71<\/option><option value=\"72\">72<\/option><option value=\"73\">73<\/option><option value=\"74\">74<\/option><option value=\"75\">75<\/option><option value=\"76\">76<\/option><option value=\"77\">77<\/option><option value=\"78\">78<\/option><option value=\"79\">79<\/option><option value=\"80\">80<\/option><option value=\"&gt; 80\">&gt; 80<\/option>                <\/select>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n              <div id=\"field-wrapper-birthdate\" class=\"col-md-12 field-wrapper form-group\" style=\"display: none;\">\n                <label class=\"required\" for=\"birthdate\">Birthdate<\/label>\n                <input name=\"birthdate\" type=\"text\" class=\"tkt-input form-control field\" id=\"birthdate\" data-component=\"Form\/Calendar\" placeholder=\"Birthdate\" required data-date-format=\"d.m.Y\" \/>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n              <div id=\"field-wrapper-sex\" class=\"col-md-12 field-wrapper form-group\" style=\"display: none;\">\n                <label class=\"required\" for=\"sex\">Gender<\/label>\n                <select name=\"sex\" id=\"sex\" class=\"tkt-input form-control field\" required>\n                  <option value=\"\"><\/option>\n                    <option value=\"n\/c\">No answer<\/option><option value=\"f\">Female<\/option><option value=\"m\">Male<\/option><option value=\"o\">Other<\/option>                <\/select>\n              <\/div>\n            <\/div>\n\n            <div class=\"row\">\n              <div id=\"field-wrapper-photo\" class=\"field-wrapper col-md-12\" style=\"display: none;\"> \n                <label class=\"photo\">Photo<\/label>\n                <div class=\"col-md-12 form-group tkt-wrapper-photo\" data-component=\"Media\/Webcam\" data-width=\"300\">\n                    <div class=\"row\">\n                      <div class=\"form-group col-md-6 mt-3 text-center\">\n                        <input name=\"photo\" type=\"file\" class=\"tkt-input form-control field\" id=\"photo\" accept=\"image\/jpeg, image\/png, image\/gif, image\/webp, image\/avif\" data-component=\"Form\/ImageDataUrl\" data-width=\"300\" hidden >\n                        <button type=\"button\" class=\"btn btn-default choose-btn\">\n                          <span><i class=\"tkt-icon-image\"><\/i> Choose a picture<\/span>\n                        <\/button>\n                        <i class=\"tkt-icon-info\" data-component=\"Ui\/Tippy\" data-tippy-content=\"Supported formats: jpeg, png, webp, avif or gif\"><\/i><br>\n                        <span class=\"small\">ou<\/span>\n                        <div class=\"form-group col-md-12 p-0 mt-3\">\n                            <button type=\"button\" class=\"btn btn-default\">\n                              <i class=\"tkt-icon-camera\"><\/i>\n                              <span class=\"stop_video\"> Stop video<\/span>\n                              <span class=\"start_video\"> Take a photo from your webcam<\/span>\n                            <\/button>\n                            <button type=\"button\" class=\"btn btn-success takePicture\">\n                                Take a photo                            <\/button>\n                        <\/div>\n                      <\/div>\n                      <div class=\"form-group preview col-md-6\">\n                        <div class=\"contentarea\">\n                            <div class=\"camera form-group\">\n                                <video id=\"video\" class=\"mt-3 mb-3\" style=\"display: block\">\n                                    Video not supported                                <\/video>\n                            <\/div>\n                            <canvas id=\"canvas\" style=\"display: none;\"><\/canvas>\n                        <\/div>\n                        <img class=\"image-preview\" width=\"300\" \/>\n                      <\/div>\n                      <div class=\"col-md-12\">\n                      <em class=\"small\">Without a clearly recognizable photo, we reserve the right to refuse entry. In case of abuse, your ticket may be blocked.<\/em>\n                      <\/div>\n                    <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"row\">\n              <div id=\"field-wrapper-comment\" class=\"field-wrapper form-group col-md-4\">\n                <label class=\"required\" for=\"comment\">Comment<\/label>\n                <textarea name=\"comment\" class=\"tkt-input form-control field\" id=\"comment\" placeholder=\"Your comment\" required><\/textarea>\n              <\/div>\n            <\/div>\n            <div class=\"row\">\n              <div id=\"field-wrapper-gift_message\" class=\"col-md-12 field-wrapper form-group\" style=\"display: none;\">\n                <input id=\"gift_toggl\" type=\"checkbox\">\n                <label for=\"gift_message\">Send this ticket as a gift by e-mail to the holder<\/label>\n                <textarea id=\"user_gift_message\" class=\"form-control\" name=\"gift_message\" data-default=\"Vous pouvez indiquer ici un message personnalis\u00e9 (eg. \"Profite bien de ton cadeau\u00a0!\")\" style=\"display: none;\"><\/textarea>\n              <\/div>\n            <\/div>\n          <\/fieldset>\n\n          <fieldset>\n            <div id=\"submit-section\" class=\"row\">\n              <div class=\"col-md-12 text-right\">\n                <p id=\"notice-required\" class=\"small\">These fields are required<\/p>\n                <button type=\"submit\" class=\"button active btn-block\">\n                  <i class=\"glyphicon glyphicon-shopping-cart\"><\/i>Add to cart                <\/button>\n              <\/div>\n            <\/div>\n          <\/fieldset>\n          <div class=\"row mt-2\">\n              <div class=\"col-md-12 alert alert-success\"><\/div>\n              <div class=\"col-md-12 alert alert-danger\"><\/div>\n          <\/div>\n        <\/form>\n      <\/div>\n    <\/div>\n  <\/section>\n<\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>Login with a pass &nbsp; Buy a pass<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-166383","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/pages\/166383","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/comments?post=166383"}],"version-history":[{"count":0,"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/pages\/166383\/revisions"}],"wp:attachment":[{"href":"https:\/\/2026.visionsdureel.ch\/en\/wp-json\/wp\/v2\/media?parent=166383"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}