    <script type="text/javascript">
    var BP_LANG = "en";
    (function($) {
var monthsByLang = {
    'no': ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'],
    'en': ['January','February','March','April','May','June','July','August','September','October','November','December'],
    'sv': ['januari','februari','mars','april','maj','juni','juli','augusti','september','oktober','november','december'],
    'da': ['januar','februar','marts','april','maj','juni','juli','august','september','oktober','november','december'],
    'de': ['Januar','Februar','März','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember']
};
var months = monthsByLang[BP_LANG] || monthsByLang['no'];

var validityTemplates = {
    'no': 'Periodekortet ditt er gyldig fra {start} til {end}',
    'en': 'Your parking pass is valid from {start} until {end}',
    'sv': 'Ditt periodkort är giltigt från {start} till {end}',
    'da': 'Dit periodekort er gyldigt fra {start} til {end}',
    'de': 'Ihre Parkkarte ist gültig vom {start} bis {end}'
};
var validityTemplate = validityTemplates[BP_LANG] || validityTemplates['no'];

var timePrefix = {
    'no': 'kl. ',
    'en': '',
    'sv': 'kl. ',
    'da': 'kl. ',
    'de': ''
};
var prefix = timePrefix[BP_LANG] !== undefined ? timePrefix[BP_LANG] : 'kl. ';

        function pad(n) { return String(n).padStart(2, '0'); }

        function getActiveProduct() {
            var facility = $('#input_2_23').val()
                || $('input[name="input_23"]:checked').val()
                || '';

            if (facility === 'KlosterGarasjen') return $('#input_2_1').val()  || '';
            if (facility === 'ByGarasjen')      return $('#input_2_24').val() || '';
            return '';
        }

        function calculateData() {
            var dateVal = $('#input_2_22').val();
            var hour    = $('#input_2_21_1').val();
            var minute  = $('#input_2_21_2').val();
            var product = getActiveProduct();

			var productLabel = product.split('|')[0]; // strip the price suffix
			var daysMatch = productLabel.match(/(\d+)/);
            if (!dateVal || !hour || !minute || !daysMatch) return null;

            var days = parseInt(daysMatch[1], 10);
            var p = dateVal.split('.');
            if (p.length !== 3) return null;

            var start = new Date(+p[2], +p[1] - 1, +p[0], +hour, +minute);
            if (isNaN(start.getTime())) return null;

            var end = new Date(start);
            end.setDate(end.getDate() + days);

            function fmtFull(d) {
    			return prefix + pad(d.getHours()) + ':' + pad(d.getMinutes()) +
           		', ' + d.getDate() + '. ' + months[d.getMonth()] + ' ' + d.getFullYear();
}

            return {
                gyldighet_setning: validityTemplate.replace('{start}', fmtFull(start)).replace('{end}', fmtFull(end)),
                startdato_norsk:   start.getDate() + '. ' + months[start.getMonth()] + ' ' + start.getFullYear(),
                startdato_kort:    pad(start.getDate()) + '.' + pad(start.getMonth() + 1) + '.' + start.getFullYear(),
                starttidspunkt:    pad(start.getHours()) + ':' + pad(start.getMinutes()),
                sluttdato_norsk:   end.getDate() + '. ' + months[end.getMonth()] + ' ' + end.getFullYear(),
                sluttdato_kort:    pad(end.getDate()) + '.' + pad(end.getMonth() + 1) + '.' + end.getFullYear(),
                sluttidspunkt:     pad(end.getHours()) + ':' + pad(end.getMinutes()),
                antall_dager:      String(days)
            };
        }

        function scanForTags($container) {
            var tags = [
                'gyldighet_setning',
                'startdato_norsk', 'startdato_kort', 'starttidspunkt',
                'sluttdato_norsk', 'sluttdato_kort', 'sluttidspunkt',
                'antall_dager'
            ];
            $container.find('.gfield_html').each(function() {
                var $el = $(this);
                if ($el.data('bpScanned')) return;
                var html = $el.html();
                var modified = false;
                tags.forEach(function(tag) {
                    var token = '{' + tag + '}';
                    if (html.indexOf(token) !== -1) {
                        html = html.split(token).join('<span class="bp-live-tag" data-bp-tag="' + tag + '"></span>');
                        modified = true;
                    }
                });
                if (modified) {
                    $el.html(html);
                    $el.hide();
                }
                $el.data('bpScanned', true);
            });
        }

        function updateTags() {
            var data = calculateData();
            $('.bp-live-tag').each(function() {
                var key = $(this).attr('data-bp-tag');
                var $field = $(this).closest('.gfield');
                if (data && data[key] !== undefined) {
                    $(this).text(data[key]);
                    $field.show();
                } else {
                    $(this).text('');
                    $field.hide();
                }
            });
        }

function initBpForm() {
    var $form = $('#gform_2');
    if (!$form.length) return;
    if ($form.data('bpInitialized')) return;
    $form.data('bpInitialized', true);

    scanForTags($form);
    $('#input_2_22, #input_2_21_1, #input_2_21_2, #input_2_1, #input_2_24, #input_2_23, input[name="input_23"]')
        .off('change.bpvalidity keyup.bpvalidity')
        .on('change.bpvalidity keyup.bpvalidity', updateTags);
    updateTags();
}

// Standard Gravity Forms event (works on Norwegian page)
$(document).on('gform_post_render', function(event, formId) {
    if (formId == 2) initBpForm();
});

// Fallback for pages where gform_post_render doesn't fire (e.g. cached English page)
$(function() {
    setTimeout(initBpForm, 100);
});
    })(jQuery);
    </script>
                <script type="text/javascript">
                gform.addFilter('gform_datepicker_options_pre_init', function(optionsObj, formId, fieldId){
                    if (formId == 2 && fieldId == 22) {
                        optionsObj.minDate = 1;
                    }
                    return optionsObj;
                });
            </script>
            {"id":5885,"date":"2026-05-12T14:09:56","date_gmt":"2026-05-12T12:09:56","guid":{"rendered":"https:\/\/bergenparkering.no\/prepaid-parking\/"},"modified":"2026-06-15T11:49:06","modified_gmt":"2026-06-15T09:49:06","slug":"prepaid-parking","status":"publish","type":"page","link":"https:\/\/bergenparkering.no\/en\/prepaid-parking\/","title":{"rendered":"Prepaid parking"},"content":{"rendered":"<div class=\"vce-row-container\"><div class=\"vce-row vce-element--has-background vce-row--col-gap-0 vce-row-wrap--reverse padded-section-medium-top vce-row-equal-height vce-row-content--top\" data-vce-full-width=\"true\" id=\"el-c57a7f44\" data-vce-do-apply=\"all el-c57a7f44\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-550-px vce-col--md-visible vce-col--md-first vce-col--lg-550-px vce-col--lg-visible vce-col--lg-first vce-col--xl-550-px vce-col--xl-visible vce-col--xl-first\" id=\"el-cd732a0c\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-cd732a0c\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-cd732a0c\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-15ae28df\" data-vce-do-apply=\"all el-15ae28df\"><h1>Prepaid parking<\/h1>\n<p>Are you parking with us for multiple days? With prepaid parking, you pay in advance and can park for several days.<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-auto vce-col--md-visible vce-col--md-last vce-col--lg-auto vce-col--lg-visible vce-col--lg-last vce-col--xl-auto vce-col--xl-visible vce-col--xl-last\" id=\"el-1e83fbb1\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-1e83fbb1\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-1e83fbb1\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-19360261\" data-vce-do-apply=\"all el-19360261\"><p style=\"text-align: right;\"><a href=\"https:\/\/bergenparkering.no\/en\/prepaid-parking\/\">Bytt til norsk<\/a><\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-row-container\"><div class=\"vce-row vce-element--has-background vce-row--col-gap-30 vce-row-equal-height vce-row-content--top\" data-vce-full-width=\"true\" id=\"el-dcd48bd0\" data-vce-do-apply=\"all el-dcd48bd0\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-33p vce-col--md-visible vce-col--md-first vce-col--lg-33p vce-col--lg-visible vce-col--lg-first vce-col--xl-330-px vce-col--xl-visible vce-col--xl-first\" id=\"el-d5c1fb58\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-d5c1fb58\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-d5c1fb58\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-63ed3cb9\" data-vce-do-apply=\"all el-63ed3cb9\"><p><strong>Order today<br><\/strong>Park in 24 hours<strong><br><\/strong><\/p><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-33p vce-col--md-visible vce-col--lg-33p vce-col--lg-visible vce-col--xl-330-px vce-col--xl-visible\" id=\"el-1de6997f\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-1de6997f\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-1de6997f\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-7dfcaec9\" data-vce-do-apply=\"all el-7dfcaec9\"><p><strong>Linked to license plate number<br><\/strong>No window card<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-33p vce-col--md-visible vce-col--md-last vce-col--lg-33p vce-col--lg-visible vce-col--lg-last vce-col--xl-auto vce-col--xl-visible\" id=\"el-82e11c3d\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-82e11c3d\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-82e11c3d\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-013d51ba\" data-vce-do-apply=\"all el-013d51ba\"><p><strong>Pay by card<br><\/strong>Visa, Mastercard, Google\/Apple Pay  <\/p>\n<\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-100p vce-col--lg-visible vce-col--lg-last vce-col--lg-first vce-col--xl-auto vce-col--xl-visible vce-col--xl-last\" id=\"el-2fcfbf82\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-2fcfbf82\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-2fcfbf82\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-row-container\" data-vce-boxed-width=\"true\"><div class=\"vce-row vce-row--col-gap-0 padded-section vce-row-equal-height vce-row-content--top\" id=\"el-c50a1bd5\" data-vce-do-apply=\"all el-c50a1bd5\"><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-auto vce-col--lg-visible vce-col--lg-first vce-col--xl-551-px vce-col--xl-visible vce-col--xl-first\" id=\"el-69670fbd\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-69670fbd\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-69670fbd\"><div class=\"vce-raw-html\"><div class=\"vce-raw-html-wrapper\" id=\"el-329d7ffa\" data-vce-do-apply=\"all el-329d7ffa\"><div class=\"abb-box-blue\">\n\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\">\n  <g id=\"Group_41\" data-name=\"Group 41\" transform=\"translate(-1164 -1972.8)\">\n    <rect id=\"Rectangle_661\" data-name=\"Rectangle 661\" width=\"51\" height=\"51\" rx=\"10\" transform=\"translate(1164 1972.8)\" fill=\"#fff\"><\/rect>\n    <path id=\"car-light\" d=\"M3.55,43.714a1.065,1.065,0,1,1,1.065,1.065A1.064,1.064,0,0,1,3.55,43.714Zm15.619,0A1.065,1.065,0,1,1,18.1,42.649,1.062,1.062,0,0,1,19.168,43.714ZM2.143,39.663l1.54-5.133A3.55,3.55,0,0,1,7.082,32h8.555a3.547,3.547,0,0,1,3.4,2.53l1.54,5.133a4.247,4.247,0,0,1,2.143,3.7v7.809a.71.71,0,1,1-1.42,0v-2.13H1.42v2.13a.71.71,0,1,1-1.42,0V43.359A4.251,4.251,0,0,1,2.143,39.663Zm1.644-.537A4.169,4.169,0,0,1,4.26,39.1h14.2a4.2,4.2,0,0,1,.475.027l-1.256-4.188a2.131,2.131,0,0,0-2.041-1.518H7.082a2.131,2.131,0,0,0-2.041,1.518ZM1.42,43.359v4.26H21.3v-4.26a2.839,2.839,0,0,0-1.877-2.671l-.018,0,0-.013a2.887,2.887,0,0,0-.941-.16H4.26a2.861,2.861,0,0,0-.939.16l0,.013-.02,0A2.841,2.841,0,0,0,1.42,43.359Z\" transform=\"translate(1178.141 1956.361)\" fill=\"#131313\"><\/path>\n  <\/g>\n<\/svg>\n<h2>How it works<\/h2>\n<p><i class=\"fa-light fa-circle-1\"><\/i> Choose if you want to park for 3, 7, 14 or 30 days.<\/p>\n\t<p><i class=\"fa-light fa-circle-2\"><\/i> Fill out the form with your contact information and license plate number.<\/p>\n\t<p><i class=\"fa-sharp fa-light fa-circle-3\"><\/i> Pay with card or Apple\/Google Pay<\/p>\n\t<p>You will get a confirmation of your order via email and the prepaid parking will be linked to your license plate number.<\/p>\n<\/div>\n<\/div><\/div><div class=\"vce-raw-html\"><div class=\"vce-raw-html-wrapper\" id=\"el-e362a0fc\" data-vce-do-apply=\"all el-e362a0fc\"><div class=\"abb-box-blue\">\n\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\">\n  <g id=\"Group_40\" data-name=\"Group 40\" transform=\"translate(-354 -826.426)\">\n    <rect id=\"Rectangle_661\" data-name=\"Rectangle 661\" width=\"51\" height=\"51\" rx=\"10\" transform=\"translate(354 826.426)\" fill=\"#fff\"><\/rect>\n    <path id=\"bell-light\" d=\"M10.545.811a.811.811,0,1,1,1.622,0v.852a8.108,8.108,0,0,1,7.3,8.071V11.21a8.375,8.375,0,0,0,2.449,5.911l.142.142A2.244,2.244,0,0,1,20.472,21.1H2.246A2.248,2.248,0,0,1,.659,17.258L.8,17.116A8.371,8.371,0,0,0,3.245,11.21V9.734a8.108,8.108,0,0,1,7.3-8.071Zm.811,2.434A6.489,6.489,0,0,0,4.867,9.734V11.21a9.964,9.964,0,0,1-2.925,7.057L1.8,18.4a.624.624,0,0,0,.441,1.065H20.467a.624.624,0,0,0,.441-1.065l-.142-.142A9.986,9.986,0,0,1,17.841,11.2V9.734a6.489,6.489,0,0,0-6.489-6.489ZM9.825,23.256a1.625,1.625,0,0,0,3.062,0,.811.811,0,1,1,1.531.537,3.248,3.248,0,0,1-6.124,0,.811.811,0,0,1,1.531-.537Z\" transform=\"translate(368.141 838.282)\"><\/path>\n  <\/g>\n<\/svg>\n<h2>Important to know<\/h2>\n\t<p><strong>Order ahead of time.<\/strong> The parking period cannot be activated until 24 hours at the earliest. If you plan to park tomorrow, order today.<\/p>\n\t<p><strong>Ensure the license plate number is correct.<\/strong> We link your prepaid parking to the license plate number you specify. Ensure that it is correct before your order.<\/p>\n<\/div>\n<\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-5-px vce-col--lg-visible vce-col--xl-auto vce-col--xl-visible\" id=\"el-14ebaf1f\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-14ebaf1f\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-14ebaf1f\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-7-12 vce-col--lg-visible vce-col--xl-6-12 vce-col--xl-visible\" id=\"el-9ca1093b\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-9ca1093b\" id=\"#bestill\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-9ca1093b\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-25d007e7\" data-vce-do-apply=\"all el-25d007e7\"><h2>Order prepaid parking<\/h2><\/div><\/div><div id=\"el-5a965f9b\" class=\"\"><div class=\"vce vce-gravity-forms\" data-vce-do-apply=\"all el-5a965f9b\"><script>\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_2' style='display:none'><style>#gform_wrapper_2[data-form-index=\"0\"].gform-theme,[data-parent-form=\"2_0\"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style>\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_2'  action='\/en\/wp-json\/wp\/v2\/pages\/5885' data-formid='2' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_2' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_2_23\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_23'>Parking facility<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_23' id='input_2_23' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected' class='gf_placeholder'>Select facility...<\/option><option value='ByGarasjen' >ByGarasjen<\/option><option value='KlosterGarasjen' >KlosterGarasjen<\/option><\/select><\/div><\/div><div id=\"field_2_1\" class=\"gfield gfield--type-product gfield--input-type-select gfield--width-full gfield_price gfield_price_2_1 gfield_product_2_1 gfield_contains_required field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_1'>Prepaid parking<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_2_1'>Prepay your parking for a selected period. The prepaid parking will be activated after 24 hours. <\/div><div class='ginput_container ginput_container_select'><select name='input_1' id='input_2_1' class='large gfield_select'  aria-describedby=\"gfield_description_2_1\"  aria-required=\"true\" aria-invalid=\"false\" ><option value='Parking Pass - 3 days|765' >Parking Pass - 3 days<\/option><option value='Parking Pass - 7 days|1575' >Parking Pass - 7 days<\/option><option value='Parking Pass - 14 days|2940' >Parking Pass - 14 days<\/option><option value='Parking Pass - 30 days|4500' >Parking Pass - 30 days<\/option><\/select><\/div><\/div><div id=\"field_2_24\" class=\"gfield gfield--type-product gfield--input-type-select gfield--width-full gfield_price gfield_price_2_24 gfield_product_2_24 gfield_contains_required field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_24'>Prepaid parking<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_2_24'>Prepay your parking for a selected period. The prepaid parking will be activated after 24 hours. <\/div><div class='ginput_container ginput_container_select'><select name='input_24' id='input_2_24' class='large gfield_select'  aria-describedby=\"gfield_description_2_24\"  aria-required=\"true\" aria-invalid=\"false\" ><option value='Parking Pass - 3 days|630' >Parking Pass - 3 days<\/option><option value='Parking Pass - 7 days|1290' >Parking Pass - 7 days<\/option><option value='Parking Pass - 14 days|2150' >Parking Pass - 14 days<\/option><option value='Parking Pass - 30 days|2905' >Parking Pass - 30 days<\/option><\/select><\/div><\/div><fieldset id=\"field_2_7\" class=\"gfield gfield--type-name gfield--input-type-name gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_2_7'>\n                            \n                            <span id='input_2_7_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <label for='input_2_7_3' class='gform-field-label gform-field-label--type-sub '>First<\/label>\n                                                    <input type='text' name='input_7.3' id='input_2_7_3' value=''   aria-required='true'    autocomplete=\"given-name\" \/>\n                                                <\/span>\n                            \n                            <span id='input_2_7_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                            <label for='input_2_7_6' class='gform-field-label gform-field-label--type-sub '>Last<\/label>\n                                                            <input type='text' name='input_7.6' id='input_2_7_6' value=''   aria-required='true'    autocomplete=\"family-name\" \/>\n                                                        <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_2_9\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_9'>Email address<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_9' id='input_2_9' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  autocomplete=\"email\"\/>\n                        <\/div><\/div><div id=\"field_2_19\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_19'>License plate number<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_19' id='input_2_19' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_22\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-default-icon gfield--width-half gfield_contains_required field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_22'>Start date<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_2_22'>Date the parking should be valid from.<\/div><div class='ginput_container ginput_container_date'>\n                            <input name='input_22' id='input_2_22' type='text' value='' class='datepicker gform-datepicker dmy_dot datepicker_with_icon gdatepicker_with_icon'   placeholder='dd.mm.yyyy' aria-describedby=\"input_2_22_date_format gfield_description_2_22\" aria-invalid=\"false\" aria-required=\"true\"\/>\n                            <span id='input_2_22_date_format' class='screen-reader-text'>DD dot MM dot YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_2_22' class='gform_hidden' value='https:\/\/bergenparkering.no\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><fieldset id=\"field_2_21\" class=\"gfield gfield--type-time gfield--input-type-time gfield--width-half gfield_contains_required field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Start time<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='gfield_description' id='gfield_description_2_21'>Time the parking should be valid from.<\/div><div class=\"ginput_container ginput_complex gform-grid-row\">\n                        <div class='gfield_time_hour ginput_container ginput_container_time gform-grid-col' id='input_2_21'>\n                            <label class='gform-field-label gform-field-label--type-sub hour_label screen-reader-text' for='input_2_21_1'>Hours<\/label>\n                            <input type='number' name='input_21[]' id='input_2_21_1' value=''  min='0' max='24' step='1'  placeholder='HH' aria-required='true'   aria-describedby=\"gfield_description_2_21\"\/> \n                        <\/div>\n                        <div class=\"below hour_minute_colon gform-grid-col\">:<\/div>\n                        <div class='gfield_time_minute ginput_container ginput_container_time gform-grid-col'>\n                            <label class='gform-field-label gform-field-label--type-sub minute_label screen-reader-text' for='input_2_21_2'>Minutes<\/label>\n                            <input type='number' name='input_21[]' id='input_2_21_2' value=''  min='0' max='59' step='1'  placeholder='MM' aria-required='true'  \/>\n                        <\/div>\n                        \n                    <\/div><\/fieldset><div id=\"field_2_27\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><p style=\"margin:1em 0; padding:0.75em 1em; background:#f0f7ff; border-left:3px solid #185FA5; color:#0C447C;\">\n  {gyldighet_setning}\n<\/p><\/div><fieldset id=\"field_2_14\" class=\"gfield gfield--type-address gfield--input-type-address gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Billing address<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend>    \n                    <div class='ginput_complex ginput_container has_street has_city has_state has_zip has_country ginput_container_address gform-grid-row' id='input_2_14' >\n                         <span class='ginput_full address_line_1 ginput_address_line_1 gform-grid-col' id='input_2_14_1_container' >\n                                        <label for='input_2_14_1' id='input_2_14_1_label' class='gform-field-label gform-field-label--type-sub '>Street Address<\/label>\n                                        <input type='text' name='input_14.1' id='input_2_14_1' value=''    aria-required='true'   autocomplete=\"address-line1\" \/>\n                                   <\/span><span class='ginput_left address_city ginput_address_city gform-grid-col' id='input_2_14_3_container' >\n                                    <label for='input_2_14_3' id='input_2_14_3_label' class='gform-field-label gform-field-label--type-sub '>City<\/label>\n                                    <input type='text' name='input_14.3' id='input_2_14_3' value=''    aria-required='true'   autocomplete=\"address-level2\" \/>\n                                 <\/span><span class='ginput_right address_state ginput_address_state gform-grid-col' id='input_2_14_4_container' >\n                                        <label for='input_2_14_4' id='input_2_14_4_label' class='gform-field-label gform-field-label--type-sub '>County<\/label>\n                                        <input type='text' name='input_14.4' id='input_2_14_4' value=''      aria-required='true'   autocomplete=\"address-level1\" \/>\n                                      <\/span><span class='ginput_left address_zip ginput_address_zip gform-grid-col' id='input_2_14_5_container' >\n                                    <label for='input_2_14_5' id='input_2_14_5_label' class='gform-field-label gform-field-label--type-sub '>ZIP \/ Postal Code<\/label>\n                                    <input type='text' name='input_14.5' id='input_2_14_5' value=''    aria-required='true'   autocomplete=\"postal-code\" \/>\n                                <\/span><span class='ginput_right address_country ginput_address_country gform-grid-col' id='input_2_14_6_container' >\n                                        <label for='input_2_14_6' id='input_2_14_6_label' class='gform-field-label gform-field-label--type-sub '>Country<\/label>\n                                        <select name='input_14.6' id='input_2_14_6'   aria-required='true'   autocomplete=\"country-name\" ><option value='' ><\/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='Bonaire, Sint Eustatius and Saba' >Bonaire, Sint Eustatius and Saba<\/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='Cabo Verde' >Cabo Verde<\/option><option value='Cambodia' >Cambodia<\/option><option value='Cameroon' >Cameroon<\/option><option value='Canada' >Canada<\/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 Islands' >Cocos Islands<\/option><option value='Colombia' >Colombia<\/option><option value='Comoros' >Comoros<\/option><option value='Congo' >Congo<\/option><option value='Congo, Democratic Republic of the' >Congo, Democratic Republic of the<\/option><option value='Cook Islands' >Cook Islands<\/option><option value='Costa Rica' >Costa Rica<\/option><option value='Croatia' >Croatia<\/option><option value='Cuba' >Cuba<\/option><option value='Cura\u00e7ao' >Cura\u00e7ao<\/option><option value='Cyprus' >Cyprus<\/option><option value='Czechia' >Czechia<\/option><option value='C\u00f4te d&#039;Ivoire' >C\u00f4te d&#039;Ivoire<\/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='Eswatini' >Eswatini<\/option><option value='Ethiopia' >Ethiopia<\/option><option value='Falkland Islands' >Falkland Islands<\/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='Guernsey' >Guernsey<\/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' >Holy See<\/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' >Iran<\/option><option value='Iraq' >Iraq<\/option><option value='Ireland' >Ireland<\/option><option value='Isle of Man' >Isle of Man<\/option><option value='Israel' >Israel<\/option><option value='Italy' >Italy<\/option><option value='Jamaica' >Jamaica<\/option><option value='Japan' >Japan<\/option><option value='Jersey' >Jersey<\/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='Libya' >Libya<\/option><option value='Liechtenstein' >Liechtenstein<\/option><option value='Lithuania' >Lithuania<\/option><option value='Luxembourg' >Luxembourg<\/option><option value='Macao' >Macao<\/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' >Micronesia<\/option><option value='Moldova' >Moldova<\/option><option value='Monaco' >Monaco<\/option><option value='Mongolia' >Mongolia<\/option><option value='Montenegro' >Montenegro<\/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='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='North Macedonia' >North Macedonia<\/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='Palestine, State of' >Palestine, State of<\/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='Romania' >Romania<\/option><option value='Russian Federation' >Russian Federation<\/option><option value='Rwanda' >Rwanda<\/option><option value='R\u00e9union' >R\u00e9union<\/option><option value='Saint Barth\u00e9lemy' >Saint Barth\u00e9lemy<\/option><option value='Saint Helena, Ascension and Tristan da Cunha' >Saint Helena, Ascension and Tristan da Cunha<\/option><option value='Saint Kitts and Nevis' >Saint Kitts and Nevis<\/option><option value='Saint Lucia' >Saint Lucia<\/option><option value='Saint Martin' >Saint Martin<\/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' >Serbia<\/option><option value='Seychelles' >Seychelles<\/option><option value='Sierra Leone' >Sierra Leone<\/option><option value='Singapore' >Singapore<\/option><option value='Sint Maarten' >Sint Maarten<\/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='South Sudan' >South Sudan<\/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='Sweden' >Sweden<\/option><option value='Switzerland' >Switzerland<\/option><option value='Syria Arab Republic' >Syria Arab Republic<\/option><option value='Taiwan' >Taiwan<\/option><option value='Tajikistan' >Tajikistan<\/option><option value='Tanzania, the United Republic of' >Tanzania, the 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='Turkmenistan' >Turkmenistan<\/option><option value='Turks and Caicos Islands' >Turks and Caicos Islands<\/option><option value='Tuvalu' >Tuvalu<\/option><option value='T\u00fcrkiye' >T\u00fcrkiye<\/option><option value='US Minor Outlying Islands' >US Minor Outlying Islands<\/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='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='\u00c5land Islands' >\u00c5land Islands<\/option> <\/select>\n                                    <\/span>\n                    <div class='gf_clear gf_clear_complex'><\/div>\n                <\/div><\/fieldset><div id=\"field_2_3\" class=\"gfield gfield--type-total gfield--input-type-total gfield_price gfield_price_2_ gfield_total gfield_total_2_ field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  aria-atomic=\"true\" aria-live=\"polite\" ><label class='gfield_label gform-field-label' for='input_2_3'>Total<\/label><div class='ginput_container ginput_container_total'>\n\t\t\t\t\t\t\t<input type='text' readonly name='input_3' id='input_2_3' value='Kr 0,00' class='gform-text-input-reset ginput_total ginput_total_2' \/>\n\t\t\t\t\t\t<\/div><\/div><fieldset id=\"field_2_20\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Consent<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_20.1' id='input_2_20_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_2_20_1' >I have read and accept the <a href=\"https:\/\/bergenparkering.no\/person\/\">privacy policy<\/a> and <a href=\"https:\/\/bergenparkering.no\/kjopsvilkar-for-periodekort\/\">terms of purchase<\/a>.<\/label><input type='hidden' name='input_20.2' value='I have read and accept the &lt;a href=&quot;https:\/\/bergenparkering.no\/person\/&quot;&gt;privacy policy&lt;\/a&gt; and &lt;a href=&quot;https:\/\/bergenparkering.no\/kjopsvilkar-for-periodekort\/&quot;&gt;terms of purchase&lt;\/a&gt;.' class='gform_hidden' \/><input type='hidden' name='input_20.3' value='2' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_2' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Complete order'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_2' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_2' id='gform_theme_2' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_2' id='gform_style_settings_2' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_2' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='2' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='NOK' value='FCb9peP1\/SPwKxGa0\/pU0fvEXg3Df6m6txHAy2sx9sEilUbJDirnW3jRje+0P92UeQJYqIIDupWbubddeJf8cLJtNZgO\/BY3DT\/q4wTh3tLVPWA=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_2' value='WyJ7XCIyM1wiOltcIjAzNmQwOGM0NmQ4YWFjMWQyNjUxNzczODk5NjM5NGMwXCIsXCIwNjRmOWFmMWIwYmM5NGNlMGE0NWE4NjUxYzNkMTg1MlwiXSxcIjFcIjpbXCJiNGUzNmNmYzAxYzdlNzUzNDc2ZWM5OTE2MzM5NzY3ZVwiLFwiOTdmNTFhZGExN2Q5YjNhZGFhNDJjOTJmZTg2YTA5M2JcIixcImYyOGM0OTI5ZGEzOGFmODI2MTJjYzRhMjM4OWQ1YzhiXCIsXCI1MWYwMmVmNTUxN2U0ZmYzMTVmODI5YmM4ZGQyOTZhMFwiXSxcIjI0XCI6W1wiMTkzNDcyNzI1YmU3MDllMzMyNjI5ZTJlMjIzODIxMjdcIixcImFlZTQ0YmFhYzJhN2JhNzI3ZWU5ZmYyZjIzNjU5NjBiXCIsXCJjODMwM2EzYzYyMWZiOWQ3ZDlkMDdhMGY2ZmUzZjYyYlwiLFwiNjYyZjAzY2Q5ZDllOWVjMjUxMWEyY2JhODNmNzY1NzhcIl0sXCIyMC4xXCI6XCI2ODk1OGFlNjczNjI0MTRiYjU4MDRhZGRkZmY5MTE1ZFwiLFwiMjAuMlwiOlwiYWMxNDRiMTczODM3N2ZmOTU2Zjg2YjczMDYwNjM5NWVcIixcIjIwLjNcIjpcIjY4YmY0ZGE3ZmZmNGM5M2YyZDZlODVkOWE1MGJjZDNhXCJ9IiwiMmZjNDdhZjJlZjNkZDdkYjQwMmU0NmVjMGQwOGExNmIiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_2' id='gform_target_page_number_2' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_2' id='gform_source_page_number_2' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 2, 'https:\/\/bergenparkering.no\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery('#gform_ajax_frame_2').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_2');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_2').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_2').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_2').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_2').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_2').val();gformInitSpinner( 2, 'https:\/\/bergenparkering.no\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [2, current_page]);window['gf_submitting_2'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_2').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [2]);window['gf_submitting_2'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_2').text());}else{jQuery('#gform_2').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"2\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_2\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_2\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_2\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 2, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n<script>\ngform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 2) {gf_global[\"number_formats\"][2] = {\"23\":{\"price\":false,\"value\":false},\"1\":{\"price\":\"decimal_dot\",\"value\":false},\"24\":{\"price\":\"decimal_dot\",\"value\":false},\"7\":{\"price\":false,\"value\":false},\"9\":{\"price\":false,\"value\":false},\"19\":{\"price\":false,\"value\":false},\"22\":{\"price\":false,\"value\":false},\"21\":{\"price\":false,\"value\":false},\"27\":{\"price\":false,\"value\":false},\"14\":{\"price\":false,\"value\":false},\"3\":{\"price\":false,\"value\":false},\"20\":{\"price\":false,\"value\":false}};if(window['jQuery']){if(!window['gf_form_conditional_logic'])window['gf_form_conditional_logic'] = new Array();window['gf_form_conditional_logic'][2] = { logic: { 1: {\"field\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"23\",\"operator\":\"is\",\"value\":\"KlosterGarasjen\"}]},\"nextButton\":null,\"section\":null},24: {\"field\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"23\",\"operator\":\"is\",\"value\":\"ByGarasjen\"}]},\"nextButton\":null,\"section\":null} }, dependents: { 1: [1],24: [24] }, animation: 0, defaults: {\"7\":{\"7.2\":\"\",\"7.3\":\"\",\"7.4\":\"\",\"7.6\":\"\",\"7.8\":\"\"},\"21\":{\"21.1\":\"\",\"21.2\":\"\",\"21.3\":\"\"},\"14\":{\"14.1\":\"\",\"14.2\":\"\",\"14.3\":\"\",\"14.4\":\"\",\"14.5\":\"\",\"14.6\":\"Norge\"}}, fields: {\"23\":[1,24],\"1\":[],\"24\":[],\"7\":[],\"9\":[],\"19\":[],\"22\":[],\"21\":[],\"27\":[],\"14\":[],\"3\":[],\"20\":[]} }; if(!window['gf_number_format'])window['gf_number_format'] = 'decimal_dot';jQuery(document).ready(function(){gform.utils.trigger({ event: 'gform\/conditionalLogic\/init\/start', native: false, data: { formId: 2, fields: null, isInit: true } });window['gformInitPriceFields']();gf_apply_rules(2, [1,24], true);jQuery('#gform_wrapper_2').show();jQuery('#gform_wrapper_2 form').css('opacity', '');jQuery(document).trigger('gform_post_conditional_logic', [2, null, true]);gform.utils.trigger({ event: 'gform\/conditionalLogic\/init\/end', native: false, data: { formId: 2, fields: null, isInit: true } });} );} if(window[\"gformInitPriceFields\"]) jQuery(document).ready(function(){gformInitPriceFields();} );if(typeof Placeholders != 'undefined'){\n                        Placeholders.enable();\n                    }; new GFFrontendFeeds( {\"formId\":2,\"feeds\":[{\"feedId\":\"3\",\"addonSlug\":\"gravityformsstripe\",\"conditionalLogic\":false,\"isSingleFeed\":true,\"transactionType\":\"product\",\"subscription_name\":\"\",\"recurringAmount\":\"\",\"billingCycle_length\":\"\",\"billingCycle_unit\":\"\",\"setupFee_enabled\":\"\",\"setupFee_product\":\"\",\"trial_enabled\":\"\",\"trialPeriod\":\"\",\"paymentAmount\":\"form_total\",\"billingInformation_address_line1\":\"\",\"billingInformation_address_line2\":\"\",\"billingInformation_address_city\":\"\",\"billingInformation_address_state\":\"\",\"billingInformation_address_zip\":\"\",\"billingInformation_address_country\":\"\",\"customerInformation_email\":\"\",\"customerInformation_description\":\"\",\"customerInformation_coupon\":\"\"}]} );} } );jQuery(document).on('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );\n<\/script>\n<script>\ngform.initializeOnLoaded( function() {jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"2\", currentPage: \"1\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_2\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_2\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_2\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 2, 1 );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );\n<\/script>\n<\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-100p vce-col--lg-visible vce-col--lg-last vce-col--xl-auto vce-col--xl-visible vce-col--xl-last\" id=\"el-ee61dee0\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-ee61dee0\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-ee61dee0\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-row-container\"><div class=\"vce-row vce-element--has-background vce-row--col-gap-30 padded-section-medium vce-row-equal-height vce-row-content--middle\" data-vce-full-width=\"true\" id=\"el-dd5642ca\" data-vce-do-apply=\"all el-dd5642ca\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-auto vce-col--lg-visible vce-col--lg-first vce-col--xl-auto vce-col--xl-visible vce-col--xl-first\" id=\"el-aa8157a3\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-aa8157a3\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-aa8157a3\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-80p vce-col--lg-visible vce-col--xl-60p vce-col--xl-visible\" id=\"el-81d2625f\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-81d2625f\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-81d2625f\"><div class=\"vce-row-container\" data-vce-boxed-width=\"true\"><div class=\"vce-row vce-row--col-gap-60 vce-row-equal-height vce-row-content--top\" id=\"el-666ee738\" data-vce-do-apply=\"all el-666ee738\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-auto vce-col--lg-visible vce-col--lg-last vce-col--lg-first vce-col--xl-auto vce-col--xl-visible vce-col--xl-last vce-col--xl-first\" id=\"el-463b09ce\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-463b09ce\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-463b09ce\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-7d6fb377\" data-vce-do-apply=\"all el-7d6fb377\"><h2>Questions and Answers<\/h2><\/div><\/div><div class=\"vce-classic-accordion vce bp-faq vce-classic-accordion-align--left vce-classic-accordion-border-color--b-203-212-211\" id=\"el-fe3461d8\" data-vce-do-apply=\"all el-fe3461d8\" data-active-section=\"0\" data-close-on-click=\"true\"><div class=\"vce-classic-accordion-inner\"><div class=\"vce-classic-accordion-panels-container\"><div class=\"vce-classic-accordion-panels\" role=\"tablist\" aria-label=\"Classic accordion\"><div class=\"vce-classic-accordion-panel\" id=\"el-e8913cc9\" data-model-id=\"e8913cc9\" data-vce-content=\".vce-classic-accordion-panel-body\"><div class=\"vce-classic-accordion-section-inner\"><div class=\"vce-classic-accordion-panel-heading\"><a class=\"vce-classic-accordion-panel-title\" href=\"#el-e8913cc9\" data-vce-target=\"[data-model-id=e8913cc9]\" data-vce-use-cache=\"false\" data-vce-classic-accordion-element=\"\" data-vce-container=\".vce-classic-accordion-inner\" role=\"tab\" aria-selected=\"false\" aria-controls=\"el-e8913cc9\" id=\"section-e8913cc9\"><span>What happens if I arrive before the prepaid parking is activated?<\/span><\/a><\/div><div class=\"vce-classic-accordion-panel-body\" role=\"tabpanel\" aria-labelledby=\"section-e8913cc9\" data-vce-do-apply=\"all el-e8913cc9\" hidden=\"hidden\"><div class=\"vce-classic-accordion-element-container\" data-js-panel-body=\"\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-ef8f7a7e\" data-vce-do-apply=\"all el-ef8f7a7e\"><p>If you park before the prepaid parking's start time, you will be charged the standard parking rate for the period until the prepaid parking becomes valid.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-classic-accordion-panel\" id=\"el-3187bb10\" data-model-id=\"3187bb10\" data-vce-content=\".vce-classic-accordion-panel-body\"><div class=\"vce-classic-accordion-section-inner\"><div class=\"vce-classic-accordion-panel-heading\"><a class=\"vce-classic-accordion-panel-title\" href=\"#el-3187bb10\" data-vce-target=\"[data-model-id=3187bb10]\" data-vce-use-cache=\"false\" data-vce-classic-accordion-element=\"\" data-vce-container=\".vce-classic-accordion-inner\" role=\"tab\" aria-selected=\"false\" aria-controls=\"el-3187bb10\" id=\"section-3187bb10\"><span>What happens if I park beyond the validity of my prepaid parking?<\/span><\/a><\/div><div class=\"vce-classic-accordion-panel-body\" role=\"tabpanel\" aria-labelledby=\"section-3187bb10\" data-vce-do-apply=\"all el-3187bb10\" hidden=\"hidden\"><div class=\"vce-classic-accordion-element-container\" data-js-panel-body=\"\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-c3791cd5\" data-vce-do-apply=\"all el-c3791cd5\"><p>You will be charged the standard parking rate for the time you park beyond the validity period of your prepaid parking.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-classic-accordion-panel\" id=\"el-052215b1\" data-model-id=\"052215b1\" data-vce-content=\".vce-classic-accordion-panel-body\"><div class=\"vce-classic-accordion-section-inner\"><div class=\"vce-classic-accordion-panel-heading\"><a class=\"vce-classic-accordion-panel-title\" href=\"#el-052215b1\" data-vce-target=\"[data-model-id=052215b1]\" data-vce-use-cache=\"false\" data-vce-classic-accordion-element=\"\" data-vce-container=\".vce-classic-accordion-inner\" role=\"tab\" aria-selected=\"false\" aria-controls=\"el-052215b1\" id=\"section-052215b1\"><span>Can I change the date or license plate number after I have paid?<\/span><\/a><\/div><div class=\"vce-classic-accordion-panel-body\" role=\"tabpanel\" aria-labelledby=\"section-052215b1\" data-vce-do-apply=\"all el-052215b1\" hidden=\"hidden\"><div class=\"vce-classic-accordion-element-container\" data-js-panel-body=\"\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-9c62e89f\" data-vce-do-apply=\"all el-9c62e89f\"><p>Yes. As long as the season pass has not started, you can contact the service center to change the start date or license plate number. Unfortunately, we cannot make changes once the period has started.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-classic-accordion-panel\" id=\"el-a9b8be83\" data-model-id=\"a9b8be83\" data-vce-content=\".vce-classic-accordion-panel-body\"><div class=\"vce-classic-accordion-section-inner\"><div class=\"vce-classic-accordion-panel-heading\"><a class=\"vce-classic-accordion-panel-title\" href=\"#el-a9b8be83\" data-vce-target=\"[data-model-id=a9b8be83]\" data-vce-use-cache=\"false\" data-vce-classic-accordion-element=\"\" data-vce-container=\".vce-classic-accordion-inner\" role=\"tab\" aria-selected=\"false\" aria-controls=\"el-a9b8be83\" id=\"section-a9b8be83\"><span>Which facilities does the prepaid parking apply to?<\/span><\/a><\/div><div class=\"vce-classic-accordion-panel-body\" role=\"tabpanel\" aria-labelledby=\"section-a9b8be83\" data-vce-do-apply=\"all el-a9b8be83\" hidden=\"hidden\"><div class=\"vce-classic-accordion-element-container\" data-js-panel-body=\"\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-6b96a30c\" data-vce-do-apply=\"all el-6b96a30c\"><p>Prepaid parking can be used in either ByGarasjen or KlosterGarasjen, but not both. You choose which parking facility the prepaid parking applies to in the order form.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--md-auto vce-col--xs-1 vce-col--xs-last vce-col--xs-first vce-col--sm-last vce-col--sm-first\" id=\"el-9e97676e\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-9e97676e\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-9e97676e\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-auto vce-col--lg-visible vce-col--lg-last vce-col--xl-auto vce-col--xl-visible vce-col--xl-last\" id=\"el-f711e89a\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-f711e89a\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-f711e89a\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-row-container\" data-vce-boxed-width=\"true\"><div class=\"vce-row vce-row--col-gap-30 padded-section-bottom vce-row-equal-height vce-row-content--top\" id=\"el-6b8640d3\" data-vce-do-apply=\"all el-6b8640d3\"><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-auto vce-col--lg-visible vce-col--lg-first vce-col--xl-auto vce-col--xl-visible vce-col--xl-first\" id=\"el-86c38349\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-86c38349\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-86c38349\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-80p vce-col--lg-visible vce-col--xl-60p vce-col--xl-visible\" id=\"el-a3e3f3cf\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-a3e3f3cf\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-a3e3f3cf\"><div class=\"vce-row-container\" data-vce-boxed-width=\"true\"><div class=\"vce-row vce-element--has-background vce-row--col-gap-0 vce-row-equal-height vce-row-content--middle\" id=\"el-2af8b140\" data-vce-do-apply=\"all el-2af8b140\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-row-content\" data-vce-element-content=\"true\"><div class=\"vce-col vce-col--md-146-px vce-col--xs-1 vce-col--xs-last vce-col--xs-first vce-col--sm-last vce-col--sm-first vce-col--md-first vce-col--lg-first vce-col--xl-first\" id=\"el-5e05f1e5\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-5e05f1e5\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-5e05f1e5\"><div class=\"vce-single-image-container vce-single-image--align-center\"><div class=\"vce vce-single-image-wrapper\" id=\"el-ba074097\" data-vce-do-apply=\"all el-ba074097\"><figure><div class=\"vce-single-image-figure-inner\" style=\"width: 66px;\"><div class=\"vce-single-image-inner vce-single-image--absolute\" style=\"width: 100%; padding-bottom: 100%;\"><img loading=\"lazy\" decoding=\"async\" class=\"vce-single-image\"  width=\"66\" height=\"66\" srcset=\"https:\/\/bergenparkering.no\/wp-content\/uploads\/Group-37-66x66.png 66w\" src=\"https:\/\/bergenparkering.no\/wp-content\/uploads\/Group-37-66x66.png\" data-img-src=\"https:\/\/bergenparkering.no\/wp-content\/uploads\/Group-37.png\" data-attachment-id=\"5869\"  alt=\"Enkel svart strektegning av et hodesett-ikon p\u00e5 hvit bakgrunn.\" title=\"Group 37\" \/><\/div><\/div><figcaption hidden=\"\"><\/figcaption><\/figure><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--md-auto vce-col--xs-1 vce-col--xs-last vce-col--xs-first vce-col--sm-last vce-col--sm-first vce-col--md-last vce-col--lg-last vce-col--xl-last\" id=\"el-9147303b\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-9147303b\"><div class=\"vce-content-background-container\"><\/div><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-9147303b\"><div class=\"vce-text-block\"><div class=\"vce-text-block-wrapper vce\" id=\"el-0cf74305\" data-vce-do-apply=\"all el-0cf74305\"><h2>Need help?<\/h2>\n<p>Contact the service center at <a href=\"tel:55568870\">55 56 88 70<\/a> or <a href=\"mailto:post@bergenparkering.no\">post@bergenparkering.no<\/a>.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"vce-col vce-col--xs-100p vce-col--xs-visible vce-col--xs-last vce-col--xs-first vce-col--sm-100p vce-col--sm-visible vce-col--sm-last vce-col--sm-first vce-col--md-100p vce-col--md-visible vce-col--md-last vce-col--md-first vce-col--lg-auto vce-col--lg-visible vce-col--lg-last vce-col--xl-auto vce-col--xl-visible vce-col--xl-last\" id=\"el-b46f3b41\"><div class=\"vce-col-inner\" data-vce-do-apply=\"border margin background  el-b46f3b41\"><div class=\"vce-col-content\" data-vce-element-content=\"true\" data-vce-do-apply=\"padding el-b46f3b41\"><div class=\"vcv-row-control-wrapper\"><\/div><\/div><\/div><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Prepaid parking Are you parking with us for multiple days? With prepaid parking, you pay in advance and can park for several days.Bytt til norskOrder todayPark in 24 hoursLinked to license plate numberNo window cardPay by cardVisa, Mastercard, Google\/Apple Pay How it works Choose if you want to park for 3, 7, 14 or 30 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-5885","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/pages\/5885","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/comments?post=5885"}],"version-history":[{"count":0,"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/pages\/5885\/revisions"}],"wp:attachment":[{"href":"https:\/\/bergenparkering.no\/en\/wp-json\/wp\/v2\/media?parent=5885"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}