{"id":6890,"date":"2018-06-22T16:41:49","date_gmt":"2018-06-22T13:41:49","guid":{"rendered":"https:\/\/goldenstarferries.gr\/?page_id=6890"},"modified":"2022-01-21T01:00:04","modified_gmt":"2022-01-20T22:00:04","slug":"home","status":"publish","type":"page","link":"https:\/\/tickets.goldenstarferries.gr\/en\/","title":{"rendered":"HOME"},"content":{"rendered":"<section class=\"wpb-content-wrapper\"><p>[vc_row css=&#8221;.vc_custom_1528899548093{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 10px !important;padding-right: 40px !important;padding-bottom: 10px !important;padding-left: 40px !important;}&#8221; simple_background_color=&#8221;#ffffff&#8221; el_class=&#8221;scrollnews-wrap&#8221;][vc_column][vc_widget_sidebar sidebar_id=&#8221;scroll-news&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1528374703490{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; simple_background_color=&#8221;#ffffff&#8221; el_class=&#8221;form-wrap&#8221;][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1528374687060{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}&#8221; el_class=&#8221;map_wrapper&#8221;][vc_column_text]    <div id=\"map\"><\/div>\n    <!--<div class=\"clear_routes_area\">\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \n        <div class=\"svg icon close\">\n            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" version=\"1.1\" id=\"iconClose\" x=\"0px\" y=\"0px\" width=\"99.99px\" height=\"98.08px\" viewBox=\"0 0 99.99 98.08\" enable-background=\"new 0 0 99.99 98.08\" xml:space=\"preserve\" class=\"svgImage replaced-svg\">\n                <polygon fill=\"#010101\" points=\"99.992,7.55 92.567,0.122 50.072,42.618 7.453,-0.004 0,7.448 42.622,50.068 2.164,90.525   9.6,97.953 50.048,57.494 90.628,98.08 98.089,90.621 57.5,50.043 \"><\/polygon>\n            <\/svg>\n        <\/div>\n    <\/div>-->\n    <script type=\"text\/javascript\">\n    let currLang = 'en';\n\nportLists = portLists.filter((item) =>  {\n    return item.short != 'ALO' && item.short != 'SKO';\n});\n\n\nvar searchMapInit = function(mapId) {\n    var map;\n    var markers = [];\n    var obj = {};\n    var line;\n    var selectedRoutes = {\n\troutes: [],\n\ticonNormal: '\/wp-content\/uploads\/def-marker.png',\n\ticonFirst: '\/wp-content\/uploads\/from-marker.png',\n\ticonNext: '\/wp-content\/uploads\/to-marker.png',\n\tgetSelectedIcon: function() {\n\t    return this.routes.length == 0 ? this.iconFirst : this.iconNext;\n\t},\n\tisComplete: function() {\n\t    return this.routes.length == 2;\n\t}\n    };\n    obj.setPoint = function(code) {\n\tobj.selectMarker(code);\n    };\n    obj.removePoint = function(position, length) {\n\tif (selectedRoutes.routes[position] != undefined) {\n\t    var marker = markers.filter(function(el) {\n\t\treturn el.id == selectedRoutes.routes[position]\n\t    })[0];\n\t    marker.setIcon(selectedRoutes.iconNormal);\n\t    selectedRoutes.routes.splice(position, length);\n\t    obj.deleteRoute();\n\t}\n    };\n    obj.hideMarkers = function() {\n\tfor (var i = 0; i < markers.length; i++) {\n\t    markers[i].setVisible(false);\n\t}\n    };\n    obj.showMarkers = function() {\n\tfor (var i = 0; i < markers.length; i++) {\n\t    markers[i].setVisible(true);\n\t}\n    };\n    obj.hideNotSelectedMarkers = function() {\n\tfor (var i = 0; i < markers.length; i++) {\n\t    if (selectedRoutes.routes.indexOf(markers[i].id) < 0) {\n\t\tmarkers[i].setVisible(false);\n\t    }\n\t}\n    };\n    obj.reset = function() {\n\tselectedRoutes.routes = [];\n\tfor (var i = 0; i < markers.length; i++) {\n\t    markers[i].setVisible(true);\n\t    markers[i].setIcon(selectedRoutes.iconNormal);\n\t}\n\tjQuery('#ctlFromPort').val('').change();\n\tjQuery('#ctlToPort').val('').change();\n\tobj.deleteRoute();\n    };\n    obj.showMarker = function(portCode) {\n\tif (portCode == '')\n\t    return;\n\tvar port = markers.filter(function(el) {\n\t    return el.id == portCode;\n\t})[0];\n        if(port)\n\t    port.setVisible(true);\n    };\n    obj.addMarker = function(lat, lng, id, name) {\n\tvar latitude = parseFloat(lat);\n\tvar longitude = parseFloat(lng);\n\tvar folder = '\/wp-content\/uploads\/';\n\tvar myLatlng = new google.maps.LatLng(latitude,longitude);\n\tvar marker = new google.maps.Marker({\n\t    position: myLatlng,\n\t    map: map,\n\t    icon: selectedRoutes.iconNormal,\n\t    id: id\n\t});\n\tvar contentString =    '<div class=\"infoWindow\">'+\n\t    '<h1 class=\"port_title\">'+name+' ('+id+')'+'<\/h1>'+\n\t    '<\/div>';\n\tvar infowindow = new google.maps.InfoWindow({\n\t    content: contentString\n\t});\n\tmarkers.push(marker);\n\tgoogle.maps.event.addListener(marker, 'mouseover', function() {\n\t    infowindow.open(map, marker);\n\t});\n\tgoogle.maps.event.addListener(marker, 'mouseout', function() {\n\t    infowindow.close(map, marker);\n\t});\n\tgoogle.maps.event.addListener(marker, 'click', function() {\n\t    var val = this.id;\n\t    var selPort = portLists.filter(function(e) {\n\t\treturn e.short == val;\n\t    })[0];\n\t    var drp;\n\t    if (selectedRoutes.routes.length == 0) {\n\t\tdrp = jQuery('#ctlFromPort');\n\t\tjQuery(\"#fromPort\").val(val);\n\t    } else if (selectedRoutes.routes.length == 1) {\n\t\tif (selectedRoutes.routes.indexOf(val) >= 0) {\n\t\t    obj.removePoint(selectedRoutes.routes.indexOf(val), 1);\n\t\t    obj.showMarkers();\n\t\t    jQuery('#ctlFromPort').val('').change();\n\t\t    return;\n\t\t}\n\t\tdrp = jQuery('#ctlToPort');\n\t\tjQuery(\"#toPort\").val(val);\n\t    } else {\n\t\tvar clickedRoute = selectedRoutes.routes.indexOf(val);\n\t\tobj.reset();\n\t\treturn;\n\t    }\n\t    drp.val(selPort.label + \" (\"+selPort.short+\")\").change();\n\t});\n    };\n    obj.selectMarker = function(val) {\n\tobj.hideMarkers();\n\tobj.showMarker(val);\n\tvar marker = markers.filter(function(el) {\n\t    return el.id == val\n\t})[0];\n\tmarker.setIcon(selectedRoutes.getSelectedIcon());\n\tselectedRoutes.routes.push(val);\n\tobj.showRoutesOfPort(val);\n\tif (selectedRoutes.isComplete()) {\n\t    obj.hideNotSelectedMarkers();\n\t    obj.drawRoute();\n\t    return;\n\t}\n    };\n    obj.showRoutesOfPort = function(port) {\n\tvar portRoutes = portLists.filter(function(e) {\n\t    return e.short == port;\n\t})[0];\n\tjQuery.each(portRoutes.destinations, function(index, dest) {\n\t    obj.showMarker(dest.value.substring(1, 4));\n\t});\n    };\n    obj.deleteRoute = function() {\n\tif (line != undefined)\n\t    line.setMap(null );\n    };\n    obj.drawRoute = function() {\n\tvar port1 = portLists.filter(function(el) {\n\t    return el.short == selectedRoutes.routes[0]\n\t})[0];\n\tvar port2 = portLists.filter(function(el) {\n\t    return el.short == selectedRoutes.routes[1]\n\t})[0];\n\ttmpLatLong1 = getLatLong(port1.short);\n\ttmpLatLongVals1 = tmpLatLong1.split(\"||\");\n\ttmpLatLong2 = getLatLong(port2.short);\n\ttmpLatLongVals2 = tmpLatLong2.split(\"||\");\n\tvar lineLatLng = [new google.maps.LatLng(tmpLatLongVals1[0],tmpLatLongVals1[1]), new google.maps.LatLng(tmpLatLongVals2[0],tmpLatLongVals2[1])];\n\tvar lineSymbol = {\n\t    path: 'M 0,-1 0,4',\n\t    strokeOpacity: 1,\n\t    scale: 2,\n\t    strokeColor: '#e2b900'\n\t};\n\tline = new google.maps.Polyline({\n\t    path: lineLatLng,\n\t    geodesic: true,\n\t    strokeOpacity: 1,\n\t    icons: [{\n\t\ticon: lineSymbol,\n\t\toffset: '0',\n\t\trepeat: '20px'\n\t    }],\n\t    map: map\n\t});\n\tline.setMap(map);\n\tvar bounds = new google.maps.LatLngBounds();\n\tvar locations = [['LOCATION1', port1.lat, port1.lon, 1], ['LOCATION2', port2.lat, port2.lon, 2], ];\n\tvar zoomLevel = map.getZoom();\n\tmap.setZoom(zoomLevel);\n    };\n    obj.init = function() {\n\tselectedRoutes.routes = [];\n\tmarkers = [];\n\tvar lon = '38.185681';\n\tvar lat = '24.330035';\n\tvar mapOptions = {\n\t    mapTypeControlOptions: {\n\t\tmapTypeIds: [google.maps.MapTypeId.ROADMAP]\n\t    },\n\t    zoom: 7,\n\t    scrollwheel: false,\n\t    streetViewControl: false,\n\t    center: new google.maps.LatLng(lon,lat),\n\t    styles: [{\n\t\t\"featureType\": \"administrative\",\n\t\t\"elementType\": \"labels.text.fill\",\n\t\t\"stylers\": [{\n\t\t    \"color\": \"#2e2e2e\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"landscape\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"color\": \"#cccccc\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"landscape.man_made\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"poi\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"road\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"saturation\": -100\n\t\t}, {\n\t\t    \"lightness\": 45\n\t\t}, {\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"road.highway\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"road.arterial\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"road.arterial\",\n\t\t\"elementType\": \"labels.icon\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"road.local\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"transit\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"water\",\n\t\t\"elementType\": \"all\",\n\t\t\"stylers\": [{\n\t\t    \"color\": \"#81b5de\"\n\t\t}, {\n\t\t    \"visibility\": \"on\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"water\",\n\t\t\"elementType\": \"geometry.fill\",\n\t\t\"stylers\": [{\n\t\t    \"color\": \"#FFFFFF\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"water\",\n\t\t\"elementType\": \"labels.text.fill\",\n\t\t\"stylers\": [{\n\t\t    \"color\": \"#FFFFFF\"\n\t\t}]\n\t    }, {\n\t\t\"featureType\": \"water\",\n\t\t\"elementType\": \"labels.text.stroke\",\n\t\t\"stylers\": [{\n\t\t    \"color\": \"#f2eeee\"\n\t\t}, {\n\t\t    \"weight\": \"0.81\"\n\t\t}, {\n\t\t    \"visibility\": \"off\"\n\t\t}]\n\t    }]\n\t};\n\tvar mapElement = document.getElementById(mapId);\n\tmap = new google.maps.Map(mapElement,mapOptions);\n\tjQuery.each(portLists, function(i, item) {\n\t\ttmpLatLong = getLatLong(item.short);\n\t\tif(!tmpLatLong) return;\n\t    tmpLatLongVals = tmpLatLong.split(\"||\");\n\t    obj.addMarker(tmpLatLongVals[0], tmpLatLongVals[1], item.short, item.label);\n\t});\n\tgoogle.maps.event.addDomListener(map, 'click', function() {});\n\tgoogle.maps.event.addDomListener(window, \"resize\", function() {\n\t    var center = map.getCenter();\n\t    google.maps.event.trigger(map, \"resize\");\n\t    map.setCenter(center);\n\t});\n    };\n    return obj;\n}\nvar selPortList;\njQuery(function($) {\n    jQuery('.routeControls').routeContoller();\n    searchMap = searchMapInit('map');\n    searchMap.init();\n});\njQuery.fn.routeContoller = function($) {\n    jQuery('#ctlFromPort').change(function() {\n\tvar targetElement = jQuery('#toPort');\n\tvar val = jQuery(this).val();\n\tvar hiddenVal = jQuery(\"#fromPort\").val();\n\tif (val == ''){\n\t    jQuery(this).val('');\n\t    jQuery(\"#fromPort\").val('');\n\t    targetElement.prop('disabled', true);\n\t    jQuery('#ctlToPort').prop('disabled', true);\n\t    jQuery(\".clear_routes_area\").hide();\n\t    if (searchMap != undefined) {\n\t\tsearchMap.init();\n\t    }\n\t    return;\n\t}\n\ttargetElement.prop('disabled', false);\n\tjQuery('#ctlToPort').prop('disabled', false);\n\tjQuery(\".clear_routes_area\").show();\n\tvar port = portLists.filter(function(e) {\n\t    return e.short == hiddenVal;\n\t})[0];\n\tif(typeof port !== \"undefined\") {\n\t    selPortList = port.destinations\n\t    if (searchMap != undefined && !jQuery(this).hasClass('Multiple')) {\n\t\tsearchMap.removePoint(0, 2);\n\t\tsearchMap.setPoint(hiddenVal);\n\t    }\n\t}\n\tfor (var i = 0; i < portLists.length; i++){\n\t    if (portLists[i].short == jQuery('#fromPort').val()){\n\t\tcombosList = portLists[i].destinations;\n\t\tbreak;\n\t    }\n\t}\n\tvar searchVal = port.value;\n\tjQuery(\"#ctlFromPort\").val(searchVal);\n    });\n    jQuery('#ctlToPort').change(function(){\n\tvar val = jQuery(this).val();\n\tvar hiddenVal = jQuery(\"#toPort\").val();\n\tif (val == ''){\n\t    return;\n\t}\n\tif (jQuery(this).hasClass('Multiple')) {\n\t    var nextContainer = that.filter(\":gt(\" + i + \")\").first();\n\t    var drp = jQuery('.RouteFROMDropDown', nextContainer);\n\t    drp.val(jQuery(this).val()).change().trigger('chosen:updated');\n\t} else {\n\t    var port = portLists.filter(function(e) {\n\t\treturn e.short == hiddenVal;\n\t    })[0];\n\t    if(typeof port !== \"undefined\") {\n\t\tselPortList = port.destinations\n\t\tif (searchMap != undefined && !jQuery(this).hasClass('Multiple')) {\n\t\t    searchMap.removePoint(1, 1);\n\t\t    searchMap.setPoint(hiddenVal);\n\t\t}\n\t    }\n\t}\n\tvar searchVal = port.value;\n\tjQuery(\"#ctlToPort\").val(searchVal);\n    });\n}\nfunction getLatLong(destcode) {\n\tlet items = {\n\t\tALO: \"39.1445||23.8654\",\n\t\tSKG: \"40.6338||22.9348\",\n\t\tVOL: \"39.358||22.9441\",\n\t\tJSI: \"39.1622||23.4922\",\n\t\tAND: \"37.8848||24.7355\",\n\t\tHER: \"35.342889||25.142818\",\n\t\tIOS: \"36.7235||25.2723\",\n\t\tJMK: \"37.4513||25.3274\",\n\t\tJNX: \"37.1064||25.3717\",\n\t\tJTR: \"36.3863||25.4293\",\n\t\tJSY: \"37.4423||24.6426\",\n\t\tPAS: \"37.0869||25.1493\",\n\t\tRAF: \"38.0223||24.0091\",\n\t\tSKO: \"39.121||23.7322\",\n\t\tTIN: \"37.537||25.1618\",\n\t\tRNO: \"35.365||24.479\",\n\t\tPIR: \"37.942||23.646\",\n\t\tFOL: \"36.628||24.920\",\n\t\tSIF: \"36.973||24.723\",\n\t\tMLO: \"36.743||24.423\",\n\t\tAMO: \"36.8274||25.8628\",\n\t\tKOU: \"36.9315||25.6022\"\n\t};\n\t\n\ttry {\n\t\treturn items[destcode];\n\t}\n\tcatch(e) {\n\t\treturn false;\n\t}\n\t\n}\njQuery(document).ready(function($){\n\n    \/\/ Set map height same to the search div\n    var clmhH = $(\".search_form_wrap\").height();\n    $(\"#map\").height(clmhH);\n    \/\/ Select multileg or simple trip\n    $(\".trip_select_wrap\").on(\"click\",\"li\",function(){\n\t$(\".trip_select_wrap ul li\").removeClass(\"active\");\n\t$(\"ul.tabsContent li\").removeClass(\"active\");\n\tvar tmpTab = $(this).attr(\"data-tab\");\n\tif(tmpTab==\"tab2\"){\n\t    $(\".map_wrapper\").addClass(\"multi\");\n\t    $(\".search_form_wrap\").addClass(\"multi\");\n\t} else {\n\t    $(\".map_wrapper\").removeClass(\"multi\");\n\t    $(\".search_form_wrap\").removeClass(\"multi\");\n\t    var tmpVal = $(this).attr(\"data-val\");\n\t    if(tmpVal==\"singleLeg\"){\n\t\t$(\"#ctlReturnDate\").datepicker(\"setDate\", '');\n\t\t$(\".dateContainer.to .day\").html('--');\n\t\t$(\".dateContainer.to .month\").html('--');\n\t\t$(\".dateContainer.to .year\").html('');\n\t\t$(\"#ctlReturnDate\").datepicker(\"change\");\n\t\t$(\"#ctlReturnDate\").datepicker( \"option\", \"disabled\", true );\n\t\t$(\".toDateArea .dateObject\").addClass(\"dsb\");\n\t\tjQuery('#route_type').val(\"0\");\n\t    } else {\n\t\t$(\".toDateArea .dateObject\").removeClass(\"dsb\");\n\t\t$(\"#ctlReturnDate\").datepicker( \"option\", \"disabled\", false );\n\t\tjQuery('#route_type').val(\"1\");\n\t    }\n\t}\n\t$(this).addClass(\"active\");\n\t$(\"ul.tabsContent li.\"+tmpTab+\"cont\").addClass(\"active\");\n    });\n\n    \/\/ Autocomplete Single Leg\n    $('input#ctlFromPort').each(function() {\n\tvar thisEl = $(this);\n\tthisEl.autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) {\n\t\tvar selectedObj = ui.item;\n\t\t$('#fromPort').val(selectedObj.short);\n\t\t$(\"#ctlFromPort\").val(selectedObj.label +\" (\"+selectedObj.short+\")\").change();\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\treturn $(\"<li><\/li>\")\n\t    .data( \"ui-autocomplete-item\", item )\n\t    .append(item.value)\n\t    .appendTo( ul );\n    };\n\n\t$('input#ctlFromPort').click(function(){\n\t\t$(this).select();\n\t\t$(this).autocomplete( \"search\", \"\" );\n\t});\n\n    $('input#ctlToPort').each(function() {\n\t$(this).autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\tjQuery('#toPort').val(selectedObj.short);\n\t\tjQuery(\"#ctlToPort\").val(selectedObj.label +\" (\"+selectedObj.short+\")\").change();\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\tproc = false;\n\tfor(var j=0;j<combosList.length;j++){\n\t    if(item.label == combosList[j].label){\n\t\tproc = true;\n\t\tbreak;\n\t    }\n\t}\n\tif(proc){\n\t    return jQuery(\"<li><\/li>\")\n\t\t.data( \"ui-autocomplete-item\", item )\n\t\t.append(item.value)\n\t\t.appendTo( ul );\n\t} else {\n\t    return jQuery(\"<li><\/li>\");\n\t}\n    };\n\n\t$('input#ctlToPort').click(function(){\n\t\t$(this).select();\n\t\t$(this).autocomplete( \"search\", \"\" );\n\t});\n\n\t$('input#ctlFromPortMult1,input#ctlToPortMult1').click(function(){\n\t\t$(this).select();\n\t\t$(this).autocomplete( \"search\", \"\" );\n\t});\n\n\t$('input#ctlFromPortMult2,input#ctlToPortMult2').click(function(){\n\t\t$(this).select();\n\t\t$(this).autocomplete( \"search\", \"\" );\n\t});\n\n\t$('input#ctlFromPortMult3,input#ctlToPortMult3').click(function(){\n\t\t$(this).select();\n\t\t$(this).autocomplete( \"search\", \"\" );\n\t});\n\n\t$('input#ctlFromPortMult4,input#ctlToPortMult4').click(function(){\n\t\t$(this).select();\n\t\t$(this).autocomplete( \"search\", \"\" );\n\t});\n\n    jQuery(\"input.forminput\").keydown(function(event){\n\tif(event.keyCode == 13 ) {\n\t    if(jQuery(\"input.forminput\").val().length==0) {\n\t\tevent.preventDefault();\n\t\treturn false;\n\t    }\n\t}\n    });\n    \/\/ Select dates single leg\n\tvar daysOff = [\"10\/01\/2022\",\"11\/01\/2022\",\"12\/01\/2022\",\"13\/01\/2022\",,\"14\/01\/2022\",\"15\/01\/2022\",\"16\/01\/2022\",\"17\/01\/2022\",\"18\/01\/2022\",\"19\/01\/2022\",\"20\/01\/2022\",\"21\/01\/2022\",\"22\/01\/2022\",\"23\/01\/2022\",\"24\/01\/2022\",\"25\/01\/2022\",\"26\/01\/2022\",\"27\/01\/2022\",\"28\/01\/2022\",\"29\/01\/2022\",\"30\/01\/2022\",\"31\/01\/2022\"];\n    jQuery(\"#ctlFromDate\").datepicker({\n\tminDate : 0,\/\/\"25\/02\/2022\",\n\tdateFormat: \"dd\/mm\/yy\",\n\tonSelect: function(dateText, inst) {\n\t    jQuery(\"#ctlFromDate\").change();\n\t},\n\tbeforeShowDay: function (date) {\n\n            \/*var Highlight = jQuery.inArray(jQuery.datepicker.formatDate(\"dd\/mm\/yy\",date), daysOff);\n            if (Highlight > 0){\n                return [false, \"red-date\", \"Closed\"];\n            }\n            else\n                return [date];*\/\n\t\treturn [date]\n    }\t\n    });\n    jQuery(\"#ctlReturnDate\").datepicker({\n\tminDate : 0,\n\tdateFormat: \"dd\/mm\/yy\",\n\tonSelect: function(dateText, inst) {\n\t    jQuery(\"#ctlReturnDate\").change();\n\t}\n    });\n    jQuery(\"#ctlFromDate\").change(function(){\n\tdate = jQuery(\"#ctlFromDate\").datepicker(\"getDate\");\n\tfromDate = Date.parse(jQuery(\"#ctlFromDate\").datepicker(\"getDate\"));\n\tvar day = date.getDate();\n\tjQuery(\".dateContainer.from .day\").html((\"0\" + day).slice(-2));\n\tvar monthIndex = parseInt(date.getMonth())+1;\n\tjQuery(\".dateContainer.from .month\").html((\"0\" + monthIndex).slice(-2));\n\tvar year = date.getFullYear();\n\tjQuery(\".dateContainer.from .year\").html(year);\n\tminTempDate = new Date();\n\tminTempDate.setTime(fromDate);\n\tif(jQuery('#route_type').val()=='1'){\n\t    toDate =  Date.parse(jQuery(\"#ctlReturnDate\").datepicker(\"getDate\"));\n\t    if(!toDate || toDate < minTempDate.getTime()){\n\t\tjQuery(\"#ctlReturnDate\").datepicker('setDate', minTempDate);\n\t\tvar date = jQuery(\"#ctlReturnDate\").datepicker('getDate');\n\t\tvar day = date.getDate();\n\t\tjQuery(\".dateContainer.to .day\").html((\"0\" + day).slice(-2));\n\t\tvar monthIndex = parseInt(date.getMonth())+1;\n\t\tjQuery(\".dateContainer.to .month\").html((\"0\" + monthIndex).slice(-2));\n\t\tvar year = date.getFullYear();\n\t\tjQuery(\".dateContainer.to .year\").html(year);\n\t    } \n\t}\n\tminTempDate.setTime(fromDate);\n\tjQuery(\"#ctlReturnDate\").datepicker('option', 'minDate', minTempDate);\n    });\n    jQuery(\"#ctlReturnDate\").change(function(){\n\tdate = jQuery(\"#ctlReturnDate\").datepicker(\"getDate\");\n\ttoDate = Date.parse(jQuery(\"#ctlReturnDate\").datepicker(\"getDate\"));\n\tvar day = date.getDate();\n\tjQuery(\".dateContainer.to .day\").html((\"0\" + day).slice(-2));\n\tvar monthIndex = parseInt(date.getMonth())+1;\n\tjQuery(\".dateContainer.to .month\").html((\"0\" + monthIndex).slice(-2));\n\tvar year = date.getFullYear();\n\tjQuery(\".dateContainer.to .year\").html(year);\n\tfromDate = Date.parse(jQuery(\"#ctlFromDate\").datepicker(\"getDate\"));\n\tif (fromDate > toDate){\n\t    jQuery(\"#ctlFromDate\").datepicker(\"setDate\", '');\n\t    jQuery(\".dateContainer.from .day\").html('');\n\t    jQuery(\".dateContainer.from .month\").html('');\n\t    jQuery(\".dateContainer.from .year\").html('');\n\t}\n    });\n    jQuery(\".fromDateArea\").click(function(){\n\tjQuery(\"#ctlFromDate\").datepicker(\"show\"); \n    });\n    jQuery(\".toDateArea\").click(function(){\n\tjQuery(\"#ctlReturnDate\").datepicker(\"show\"); \n    });\n    jQuery(\".toDateLbl span.close\").click(function(event){\n\tevent.preventDefault();\n\tjQuery(\"#ctlReturnDate\").datepicker(\"setDate\", '');\n\tjQuery(\".dateContainer.to .day\").html('');\n\tjQuery(\".dateContainer.to .month\").html('');\n\tjQuery(\".dateContainer.to .year\").html('');\n\tjQuery(\"#ctlReturnDate\").datepicker(\"change\");\n\treturn false;\n    });\n    \/\/ Select passengers single leg\n    jQuery(\".passengersContainer\").on(\"click\",\".passNymAdd\",function(){\n\ttmpVal = parseInt($(\"#passengersNum\").val());\n\tif(tmpVal<9){\n\t    newVal = tmpVal+1;\n\t    $(\".passengersContainer .passNum\").html(newVal);\n\t    $(\"#passengersNum\").val(newVal);\n\t}\n    });\n    jQuery(\".passengersContainer\").on(\"click\",\".passNymSub\",function(){\n\ttmpVal = $(\"#passengersNum\").val();\n\tif(tmpVal>1){\n\t    newVal = tmpVal-1;\n\t    $(\".passengersContainer .passNum\").html(newVal);\n\t    $(\"#passengersNum\").val(newVal);\n\t}\n    });\n    \/\/ Select vehicles single leg\n    jQuery(\".vehiclesContainer\").on(\"click\",\".vehsNymAdd\",function(){\n\ttmpVal = parseInt($(\"#vehiclesNum\").val());\n\tif(tmpVal<4){\n\t    newVal = tmpVal+1;\n\t    $(\".vehiclesContainer .vehsNum\").html(newVal);\n\t    $(\"#vehiclesNum\").val(newVal);\n\t}\n    });\n    jQuery(\".vehiclesContainer\").on(\"click\",\".vehsNymSub\",function(){\n\ttmpVal = $(\"#vehiclesNum\").val();\n\tif(tmpVal>0){\n\t    newVal = tmpVal-1;\n\t    $(\".vehiclesContainer .vehsNum\").html(newVal);\n\t    $(\"#vehiclesNum\").val(newVal);\n\t}\n    });\n    \/\/ Single leg form action\n    $(\"button.step1submit\").click(function(event){\n\tevent.preventDefault();\n\tvar proceed = true;\n\tif($(\"#ctlFromPort\").val()==\"\" || $(\"#ctlToPort\").val()==\"\" || $(\"#ctlFromDate\").val()==\"\"){\n\t    proceed = false;\n\t}\n\tvar tripType = $(\".trip_select_wrap\").attr(\"data-val\");\n\tif(tripType != \"singleLeg\"){\n\t    if($(\"#ctlToDate\").val()==\"\"){\n\t\tproceed = false;\n\t    }\n\t}\n\tif(!proceed){\n\t    if(currLang == 'el')\n\t\talert(\"\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03c0\u03b7\u03c1\u03ce\u03c3\u03c4\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03b4\u03af\u03b1!\");\n\t    else if(currLang == 'en')\n\t\talert(\"Please fill in all the fields!\");\n\t} else {\n\t    $(\"#single_route_form\").submit();\n\t}\n    });\n    \/\/ Multileg autocomplete\n    $('input#ctlFromPortMult1').each(function() {\n\tvar thisEl = $(this);\n\tthisEl.autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\t$('#fromPortMult1').val(selectedObj.short);\n\t\t$(\"#ctlFromPortMult1\").val(selectedObj.value).change();\n\t\tjQuery('#ctlToPortMult1').attr('disabled',false);\n\t\tjQuery('#ctlToPortMult1').val('');\n\t\tfor (var i = 0; i < portLists.length; i++){\n\t\t    if (portLists[i].short == jQuery('#fromPortMult1').val()){\n\t\t\tcombosListM[1] = portLists[i].destinations;\n\t\t\tbreak;\n\t\t    }\n\t\t}\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\treturn $(\"<li><\/li>\")\n\t    .data( \"ui-autocomplete-item\", item )\n\t    .append(item.value)\n\t    .appendTo( ul );\n    };\n    $('input#ctlToPortMult1').each(function() {\n\t$(this).autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\tjQuery('#toPortMult1').val(selectedObj.short);\n\t\tjQuery(\"#ctlToPortMult1\").val(selectedObj.value).change();\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\tproc = false;\n\tfor(var j=0;j<combosListM[1].length;j++){\n\t    if(item.label == combosListM[1][j].label){\n\t\tproc = true;\n\t\tbreak;\n\t    }\n\t}\n\tif(proc){\n\t    return jQuery(\"<li><\/li>\")\n\t\t.data( \"ui-autocomplete-item\", item )\n\t\t.append(item.value)\n\t\t.appendTo( ul );\n\t} else {\n\t    return jQuery(\"<li><\/li>\");\n\t}\n    };\n    $('input#ctlFromPortMult2').each(function() {\n\tvar thisEl = $(this);\n\tthisEl.autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\t$('#fromPortMult2').val(selectedObj.short);\n\t\t$(\"#ctlFromPortMult2\").val(selectedObj.value).change();\n\t\tjQuery('#ctlToPortMult2').attr('disabled',false);\n\t\tjQuery('#ctlToPortMult2').val('');\n\t\tfor (var i = 0; i < portLists.length; i++){\n\t\t    if (portLists[i].short == jQuery('#fromPortMult2').val()){\n\t\t\tcombosListM[2] = portLists[i].destinations;\n\t\t\tbreak;\n\t\t    }\n\t\t}\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\treturn $(\"<li><\/li>\")\n\t    .data( \"ui-autocomplete-item\", item )\n\t    .append(item.value)\n\t    .appendTo( ul );\n    };\n    $('input#ctlToPortMult2').each(function() {\n\t$(this).autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\tjQuery('#toPortMult2').val(selectedObj.short);\n\t\tjQuery(\"#ctlToPortMult2\").val(selectedObj.value).change();\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\tproc = false;\n\tfor(var j=0;j<combosListM[2].length;j++){\n\t    if(item.label == combosListM[2][j].label){\n\t\tproc = true;\n\t\tbreak;\n\t    }\n\t}\n\tif(proc){\n\t    return jQuery(\"<li><\/li>\")\n\t\t.data( \"ui-autocomplete-item\", item )\n\t\t.append(item.value)\n\t\t.appendTo( ul );\n\t} else {\n\t    return jQuery(\"<li><\/li>\");\n\t}\n    };\n    $('input#ctlFromPortMult3').each(function() {\n\tvar thisEl = $(this);\n\tthisEl.autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\t$('#fromPortMult3').val(selectedObj.short);\n\t\t$(\"#ctlFromPortMult3\").val(selectedObj.value).change();\n\t\tjQuery('#ctlToPortMult3').attr('disabled',false);\n\t\tjQuery('#ctlToPortMult3').val('');\n\t\tfor (var i = 0; i < portLists.length; i++){\n\t\t    if (portLists[i].short == jQuery('#fromPortMult3').val()){\n\t\t\tcombosListM[3] = portLists[i].destinations;\n\t\t\tbreak;\n\t\t    }\n\t\t}\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\treturn $(\"<li><\/li>\")\n\t    .data( \"ui-autocomplete-item\", item )\n\t    .append(item.value)\n\t    .appendTo( ul );\n    };\n    $('input#ctlToPortMult3').each(function() {\n\t$(this).autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\tjQuery('#toPortMult3').val(selectedObj.short);\n\t\tjQuery(\"#ctlToPortMult3\").val(selectedObj.value).change();\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\tproc = false;\n\tfor(var j=0;j<combosListM[3].length;j++){\n\t    if(item.label == combosListM[3][j].label){\n\t\tproc = true;\n\t\tbreak;\n\t    }\n\t}\n\tif(proc){\n\t    return jQuery(\"<li><\/li>\")\n\t\t.data( \"ui-autocomplete-item\", item )\n\t\t.append(item.value)\n\t\t.appendTo( ul );\n\t} else {\n\t    return jQuery(\"<li><\/li>\");\n\t}\n    };\n    $('input#ctlFromPortMult4').each(function() {\n\tvar thisEl = $(this);\n\tthisEl.autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\t$('#fromPortMult4').val(selectedObj.short);\n\t\t$(\"#ctlFromPortMult4\").val(selectedObj.value).change();\n\t\tjQuery('#ctlToPortMult4').attr('disabled',false);\n\t\tjQuery('#ctlToPortMult4').val('');\n\t\tfor (var i = 0; i < portLists.length; i++){\n\t\t    if (portLists[i].short == jQuery('#fromPortMult4').val()){\n\t\t\tcombosListM[4] = portLists[i].destinations;\n\t\t\tbreak;\n\t\t    }\n\t\t}\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\treturn $(\"<li><\/li>\")\n\t    .data( \"ui-autocomplete-item\", item )\n\t    .append(item.value)\n\t    .appendTo( ul );\n    };\n    $('input#ctlToPortMult4').each(function() {\n\t$(this).autocomplete({\n\t    source: portLists,\n\t    minLength:0,\n\t    select: function(event, ui) { \n\t\tvar selectedObj = ui.item;              \n\t\tjQuery('#toPortMult4').val(selectedObj.short);\n\t\tjQuery(\"#ctlToPortMult4\").val(selectedObj.value).change();\n\t\tevent.preventDefault();\n\t    }\n\t});\n    }).data(\"ui-autocomplete\")._renderItem = function( ul, item ) {\n\tproc = false;\n\tfor(var j=0;j<combosListM[4].length;j++){\n\t    if(item.label == combosListM[4][j].label){\n\t\tproc = true;\n\t\tbreak;\n\t    }\n\t}\n\tif(proc){\n\t    return jQuery(\"<li><\/li>\")\n\t\t.data( \"ui-autocomplete-item\", item )\n\t\t.append(item.value)\n\t\t.appendTo( ul );\n\t} else {\n\t    return jQuery(\"<li><\/li>\");\n\t}\n    };\n    \/\/ Multileg calendars\n    jQuery(\"#ctlFromDateMult1\").datepicker({\n\tminDate : 0,\n\tdateFormat: \"dd\/mm\/yy\",\n\tonSelect: function(dateText, inst) {\n\t    jQuery(\"#ctlFromDateMult1\").change();\n\t}\n    });\n    jQuery(\"#ctlFromDateMult2\").datepicker({\n\tminDate : 0,\n\tdateFormat: \"dd\/mm\/yy\",\n\tonSelect: function(dateText, inst) {\n\t    jQuery(\"#ctlFromDateMult2\").change();\n\t}\n    });\n    jQuery(\"#ctlFromDateMult3\").datepicker({\n\tminDate : 0,\n\tdateFormat: \"dd\/mm\/yy\",\n\tonSelect: function(dateText, inst) {\n\t    jQuery(\"#ctlFromDateMult3\").change();\n\t}\n    });\n    jQuery(\"#ctlFromDateMult4\").datepicker({\n\tminDate : 0,\n\tdateFormat: \"dd\/mm\/yy\"\n    });\n    jQuery(\"#ctlFromDateMult1\").change(function(){\n\tdate = jQuery(\"#ctlFromDateMult1\").datepicker(\"getDate\");\n\tfromDate = Date.parse(jQuery(\"#ctlFromDateMult1\").datepicker(\"getDate\"));\n\tvar day = date.getDate();\n\tjQuery(\".dateContainer.fromMult1 .day\").html((\"0\" + day).slice(-2));\n\tvar monthIndex = parseInt(date.getMonth())+1;\n\tjQuery(\".dateContainer.fromMult1 .month\").html((\"0\" + monthIndex).slice(-2));\n\tvar year = date.getFullYear();\n\tjQuery(\".dateContainer.fromMult1 .year\").html(year);\n\tminTempDate = new Date();\n\tminTempDate.setTime(fromDate);\n\tjQuery(\"#ctlFromDateMult2\").datepicker('option', 'minDate', minTempDate);\n    });\n    jQuery(\"#ctlFromDateMult2\").change(function(){\n\tdate = jQuery(\"#ctlFromDateMult2\").datepicker(\"getDate\");\n\ttoDate = Date.parse(jQuery(\"#ctlFromDateMult2\").datepicker(\"getDate\"));\n\tvar day = date.getDate();\n\tjQuery(\".dateContainer.fromMult2 .day\").html((\"0\" + day).slice(-2));\n\tvar monthIndex = parseInt(date.getMonth())+1;\n\tjQuery(\".dateContainer.fromMult2 .month\").html((\"0\" + monthIndex).slice(-2));\n\tvar year = date.getFullYear();\n\tjQuery(\".dateContainer.fromMult2 .year\").html(year);\n\tfromDate = Date.parse(jQuery(\"#ctlFromDateMult2\").datepicker(\"getDate\"));\n\tif (fromDate > toDate){\n\t    jQuery(\"#ctlFromDateMult1\").datepicker(\"setDate\", '');\n\t    jQuery(\".dateContainer.fromMult1 .day\").html('--');\n\t    jQuery(\".dateContainer.fromMult1 .month\").html('--');\n\t    jQuery(\".dateContainer.fromMult1 .year\").html('');\n\t}\n\tminTempDate = new Date();\n\tminTempDate.setTime(fromDate);\n\tjQuery(\"#ctlFromDateMult3\").datepicker('option', 'minDate', minTempDate);\n    });\n    jQuery(\"#ctlFromDateMult3\").change(function(){\n\tdate = jQuery(\"#ctlFromDateMult3\").datepicker(\"getDate\");\n\ttoDate = Date.parse(jQuery(\"#ctlFromDateMult3\").datepicker(\"getDate\"));\n\tvar day = date.getDate();\n\tjQuery(\".dateContainer.fromMult3 .day\").html((\"0\" + day).slice(-2));\n\tvar monthIndex = parseInt(date.getMonth())+1;\n\tjQuery(\".dateContainer.fromMult3 .month\").html((\"0\" + monthIndex).slice(-2));\n\tvar year = date.getFullYear();\n\tjQuery(\".dateContainer.fromMult3 .year\").html(year);\n\tfromDate = Date.parse(jQuery(\"#ctlFromDateMult3\").datepicker(\"getDate\"));\n\tif (fromDate > toDate){\n\t    jQuery(\"#ctlFromDateMult2\").datepicker(\"setDate\", '');\n\t    jQuery(\".dateContainer.fromMult2 .day\").html('--');\n\t    jQuery(\".dateContainer.fromMult2 .month\").html('--');\n\t    jQuery(\".dateContainer.fromMult2 .year\").html('');\n\t}\n\tminTempDate = new Date();\n\tminTempDate.setTime(fromDate);\n\tjQuery(\"#ctlFromDateMult4\").datepicker('option', 'minDate', minTempDate);\n    });\n    jQuery(\"#ctlFromDateMult4\").change(function(){\n\tdate = jQuery(\"#ctlFromDateMult4\").datepicker(\"getDate\");\n\ttoDate = Date.parse(jQuery(\"#ctlFromDateMult4\").datepicker(\"getDate\"));\n\tvar day = date.getDate();\n\tjQuery(\".dateContainer.fromMult4 .day\").html((\"0\" + day).slice(-2));\n\tvar monthIndex = parseInt(date.getMonth())+1;\n\tjQuery(\".dateContainer.fromMult4 .month\").html((\"0\" + monthIndex).slice(-2));\n\tvar year = date.getFullYear();\n\tjQuery(\".dateContainer.fromMult4 .year\").html(year);\n\tfromDate = Date.parse(jQuery(\"#ctlFromDateMult3\").datepicker(\"getDate\"));\n\tif (fromDate > toDate){\n\t    jQuery(\"#ctlFromDateMult3\").datepicker(\"setDate\", '');\n\t    jQuery(\".dateContainer.fromMult3 .day\").html('--');\n\t    jQuery(\".dateContainer.fromMult3 .month\").html('--');\n\t    jQuery(\".dateContainer.fromMult3 .year\").html('');\n\t}\n    });\n    jQuery(\".dateWrapper.fromDateArea1\").click(function(){\n\tjQuery(\"#ctlFromDateMult1\").datepicker(\"show\"); \n    });\n    jQuery(\".dateWrapper.fromDateArea2\").click(function(){\n\tjQuery(\"#ctlFromDateMult2\").datepicker(\"show\"); \n    });\n    jQuery(\".dateWrapper.fromDateArea3\").click(function(){\n\tjQuery(\"#ctlFromDateMult3\").datepicker(\"show\"); \n    });\n    jQuery(\".dateWrapper.fromDateArea4\").click(function(){\n\tjQuery(\"#ctlFromDateMult4\").datepicker(\"show\"); \n    });\n\t\n\tjQuery(\"#mulit_leg_form .passengersContainer\").on(\"click\",\".passNymAdd\",function(){\n\ttmpVal = parseInt($(\"#passengersNumMult\").val());\n\tif(tmpVal<9){\n\t    newVal = tmpVal+1;\n\t    $(\".passengersContainer .passNum\").html(newVal);\n\t    $(\"#passengersNumMult\").val(newVal);\n\t}\n    });\n    jQuery(\"#mulit_leg_form .passengersContainer\").on(\"click\",\".passNymSub\",function(){\n\ttmpVal = $(\"#passengersNumMult\").val();\n\tif(tmpVal>1){\n\t    newVal = tmpVal-1;\n\t    $(\".passengersContainer .passNum\").html(newVal);\n\t    $(\"#passengersNumMult\").val(newVal);\n\t}\n\t});\n\n\tjQuery(\"#mulit_leg_form .vehiclesContainer\").on(\"click\",\".vehsNymAdd\",function(){\n\ttmpVal = parseInt($(\"#vehiclesNumMult\").val());\n\tif(tmpVal<4){\n\t    newVal = tmpVal+1;\n\t    $(\".vehiclesContainer .vehsNum\").html(newVal);\n\t    $(\"#vehiclesNumMult\").val(newVal);\n\t}\n    });\n    jQuery(\"#mulit_leg_form .vehiclesContainer\").on(\"click\",\".vehsNymSub\",function(){\n\ttmpVal = $(\"#vehiclesNumMult\").val();\n\tif(tmpVal>0){\n\t    newVal = tmpVal-1;\n\t    $(\".vehiclesContainer .vehsNum\").html(newVal);\n\t    $(\"#vehiclesNumMult\").val(newVal);\n\t}\n    });\n\n    \/\/ Multileg form action\n    $(\"button.step1submitM\").click(function(event){\n\tevent.preventDefault();\n\tvar proceed = true;\n\tif($(\"#ctlFromPortMult0\").val()==\"\" || $(\"#ctlFromPortMult1\").val()==\"\" || $(\"#ctlFromPortMult2\").val()==\"\" || $(\"#ctlToPortMult0\").val()==\"\" || $(\"#ctlToPortMult1\").val()==\"\" || $(\"#ctlToPortMult2\").val()==\"\" || $(\"#ctlFromDateMult0\").val()==\"\" || $(\"#ctlFromDateMult1\").val()==\"\" || $(\"#ctlFromDateMult2\").val()==\"\"){\n\t    proceed = false;\n\t}\n\tif(!proceed){\n\t    if(currLang == 'el')\n\t\talert(\"\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03c4\u03b5 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd 2 \u03b4\u03c1\u03bf\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1!\");\n\t    else if( currLang == 'en')\n\t\talert(\"Please fill in at least 2 trips!\");\n\t} else {\n\t    $(\"#mulit_leg_form\").submit();\n\t}\n    });\n    $(\"button.webchkin\").click(function(){\n\twindow.open(\"https:\/\/webcheckin.goldenstarferries.gr\/index.php?lang=en\",\"_blank\");\n    });\n    $(\"button.excs\").click(function(){\n\twindow.open(\"https:\/\/goldenstarferries.gr\/%ce%b5%ce%ba%ce%b4%cf%81%ce%bf%ce%bc%ce%b5%cf%83\/\",\"_self\");\n    });\n});\n    <\/script>\n[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;search_form_wrap&#8221; css=&#8221;.vc_custom_1526999831607{background-color: #005187 !important;}&#8221;][vc_column_text css=&#8221;.vc_custom_1529677444880{margin-top: 0px !important;margin-bottom: 0px !important;}&#8221;]<\/p>\n<h3 style=\"text-align: center;\">PLANNING YOUR NEXT TRIP?<\/h3>\n<div class=\"sbttl\" style=\"text-align: center;\">Discover the destinations of GOLDEN STAR FERRIES,<br \/>\nchoose a destination port on the map and start planning it!<\/div>\n<div class=\"formarea\">\n    <div class=\"head\">\n        <ul>\n            <li>Book Ferry Tickets Online<\/li>\n            <li><button class=\"webchkin\">Web Check-in<\/button><\/li>\n            <li><button class=\"excs\">Excursions<\/button><\/li>\n        <\/ul>\n    <\/div>\n    <div class=\"main_form_wrapper\">\n            <div class=\"trip_select_wrap\">\n        <label>SELECT ROUTE:<\/label>\n        <ul class=\"routeTypeSelect\">\n            <li data-tab=\"tab1\" data-val=\"singleLeg\" class=\"\">ONEWAY<\/li>\n            <li data-tab=\"tab1\" data-val=\"roundtrip\" class=\"active\">ROUNDTRIP<\/li>\n            <li data-tab=\"tab2\" data-val=\"multiLeg\" class=\"\">ISLAND HOPPING<\/li>\n        <\/ul>\n            <\/div>\n            <ul class=\"tabsContent\">\n            <li class=\"routeControls tab1cont tab active\">\n                <div class=\"error_div step1\"><\/div>\n                <form name=\"single_route\" method=\"post\" action=\"https:\/\/tickets.goldenstarferries.gr\/tickets\/search_itineraries.php\"  id=\"single_route_form\">\n                    <div class=\"fromPortAutocomplete\">\n                        <label>From:<\/label>\n                        <input id=\"ctlFromPort\" name=\"from\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select departure port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"fromPort\" name=\"fromPort\" type=\"hidden\" value=\"\">\n                    <\/div>\n                    <div class=\"dest-spacer\"><\/div>\n                    <div class=\"toPortAutocomplete\">\n                        <label>To:<\/label>\n                        <input id=\"ctlToPort\" name=\"to\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select destination port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"toPort\" name=\"toPort\" type=\"hidden\" value=\"\">\n                    <\/div>\n                    <div class=\"outboundTripDate\">\n                        <div class=\"fieldWrapper dateWrapper fromDateArea\">\n                            <label class=\"fromDateLbl\">DEPARTURE<br>date<\/label>\n                            <input type=\"hidden\" id=\"ctlFromDate\" class=\"required\" name=\"depart\" size=\"12\" autocomplete=\"off\" value=\"\"><button type=\"button\" class=\"ui-datepicker-trigger\">...<\/button>\n                            <div class=\"dateObject cf\">\n                                <div class=\"dateContainer from\">\n                                    <div class=\"day\">--<\/div><div class=\"month\">--<\/div><div class=\"year\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"inboundTripDate\">\n                        <div class=\"fieldWrapper dateWrapper toDateArea\">\n                            <label class=\"toDateLbl\">RETURN<br>date<\/label>\n                            <input type=\"hidden\" id=\"ctlReturnDate\" name=\"return\" autocomplete=\"off\" size=\"12\" value=\"\" class=\"\"><button type=\"button\" class=\"ui-datepicker-trigger\">...<\/button>\n                            <div class=\"dateObject cf\">\n                                <div class=\"dateContainer to\">\n                                    <div class=\"day\">--<\/div><div class=\"month\">--<\/div><div class=\"year\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"passengersSel\">\n                        <div class=\"fieldWrapper selectWrapper\">\n                            <label class=\"selectWrapLbl pasngrs\"><span>PASSENGERS<br>number<\/span><\/label>\n                            <div class=\"passengersContainer\">\n                                <input type=\"hidden\" name=\"passengers\" id=\"passengersNum\" value=\"1\" \/>\n                                <div>\n                                    <div class=\"passNum\">1<\/div>\n                                    <div class=\"passNymAdd\"><\/div>\n                                    <div class=\"passNymSub\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"vehiclesSel\">\n                        <div class=\"fieldWrapper selectWrapper\">\n                            <label class=\"selectWrapLbl vehs\"><span>VEHICLES<br>number<\/span><\/label>\n                            <input type=\"hidden\" name=\"vehicles\" id=\"vehiclesNum\" value=\"0\">\n                            <div class=\"vehiclesContainer\">\n                                <div>\n                                    <div class=\"vehsNum\">0<\/div>\n                                    <div class=\"vehsNymAdd\"><\/div>\n                                    <div class=\"vehsNymSub\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    \t<input type=\"hidden\" id=\"route_type\" name=\"roundtrip\" value=\"1\">\n                    \t<input type=\"hidden\" id=\"current_language\" name=\"current_language\" value=\"en\">\n                    <div class=\"submit_btn\">\n                       <button class=\"step1submit\">SEARCH<\/button>\n                    <\/div>\n                <\/form>\n            <\/li>\n            <li class=\"tab2cont tab multiLeg\">\n                <form name=\"multi_leg\" id=\"mulit_leg_form\" method=\"post\" action=\"https:\/\/tickets.goldenstarferries.gr\/tickets\/search_itineraries.php\">\n                    <div class=\"fromPortAutocomplete\">\n                        <label>From:<\/label>\n                        <input id=\"ctlFromPortMult1\" name=\"from0\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select departure port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"fromPortMult1\" name=\"fromPortMult1\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"toPortAutocomplete\">\n                        <label>To:<\/label>\n                        <input id=\"ctlToPortMult1\" disabled=\"disabled\" name=\"to0\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select destination port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"toPortMult1\" name=\"toPortMult1\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"outboundTripDate M1\">\n                        <div class=\"fieldWrapper dateWrapper fromDateArea1\">\n                            <label class=\"fromDateLblM1\">TRIP<br>date<\/label>\n                            <input type=\"hidden\" id=\"ctlFromDateMult1\" class=\"required\" name=\"depart0\" size=\"12\" autocomplete=\"off\" value=\"\">\n                            <div class=\"dateObject cf\">\n                                <div class=\"dateContainer fromMult1\">\n                                    <div class=\"day\">--<\/div><div class=\"month\">--<\/div><div class=\"year\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>  \n                    <div class=\"fromPortAutocomplete\">\n                        <label>From:<\/label>\n                        <input id=\"ctlFromPortMult2\" name=\"from1\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select departure port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"fromPortMult2\" name=\"fromPortMult2\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"toPortAutocomplete\">\n                        <label>To:<\/label>\n                        <input id=\"ctlToPortMult2\" disabled=\"disabled\" name=\"to1\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select destination port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"toPortMult2\" name=\"toPortMult2\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"outboundTripDate M2\">\n                        <div class=\"fieldWrapper dateWrapper fromDateArea2\">\n                            <label class=\"fromDateLblM2\">TRIP<br>date<\/label>\n                            <input type=\"hidden\" id=\"ctlFromDateMult2\" class=\"required\" name=\"depart1\" size=\"12\" autocomplete=\"off\" value=\"\">\n                            <div class=\"dateObject cf\">\n                                <div class=\"dateContainer fromMult2\">\n                                    <div class=\"day\">--<\/div><div class=\"month\">--<\/div><div class=\"year\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"fromPortAutocomplete\">\n                        <label>From:<\/label>\n                        <input id=\"ctlFromPortMult3\" name=\"from2\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select departure port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"fromPortMult3\" name=\"fromPortMult3\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"toPortAutocomplete\">\n                        <label>To:<\/label>\n                        <input id=\"ctlToPortMult3\" disabled=\"disabled\" name=\"to2\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select destination port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"toPortMult3\" name=\"toPortMult3\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"outboundTripDate M3\">\n                        <div class=\"fieldWrapper dateWrapper fromDateArea3\">\n                            <label class=\"fromDateLblM3\">TRIP<br>date<\/label>\n                            <input type=\"hidden\" id=\"ctlFromDateMult3\" class=\"required\" name=\"depart2\" size=\"12\" autocomplete=\"off\" value=\"\">\n                            <div class=\"dateObject cf\">\n                                <div class=\"dateContainer fromMult3\">\n                                    <div class=\"day\">--<\/div><div class=\"month\">--<\/div><div class=\"year\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"fromPortAutocomplete\">\n                        <label>From:<\/label>\n                        <input id=\"ctlFromPortMult4\" name=\"from3\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select departure port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"fromPortMult4\" name=\"fromPortMult4\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"toPortAutocomplete\">\n                        <label>To:<\/label>\n                        <input id=\"ctlToPortMult4\" disabled=\"disabled\" name=\"to3\" autocomplete=\"off\" type=\"text\" class=\"label_better forminput required ui-autocomplete-input\" placeholder=\"Select destination port\" value=\"\" autocomplete=\"off\">\n                        <input id=\"toPortMult4\" name=\"toPortMult4\" type=\"hidden\">\n                    <\/div>\n                    <div class=\"outboundTripDate M4\">\n                        <div class=\"fieldWrapper dateWrapper fromDateArea4\">\n                            <label class=\"fromDateLblM4\">TRIP<br>date<\/label>\n                            <input type=\"hidden\" id=\"ctlFromDateMult4\" class=\"required\" name=\"depart3\" size=\"12\" autocomplete=\"off\" value=\"\">\n                            <div class=\"dateObject cf\">\n                                <div class=\"dateContainer fromMult4\">\n                                    <div class=\"day\">--<\/div><div class=\"month\">--<\/div><div class=\"year\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"passengersSel\">\n                        <div class=\"fieldWrapper selectWrapper\">\n                            <label class=\"selectWrapLbl pasngrs\"><span>PASSENGERS<br>number<\/span><\/label>\n                            <div class=\"passengersContainer\">\n                                <input type=\"hidden\" name=\"passengers\" id=\"passengersNumMult\" value=\"1\" \/>\n                                <div>\n                                    <div class=\"passNum\">1<\/div>\n                                    <div class=\"passNymAdd\"><\/div>\n                                    <div class=\"passNymSub\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"vehiclesSel\">\n                        <div class=\"fieldWrapper selectWrapper\">\n                            <label class=\"selectWrapLbl vehs\"><span>VEHICLES<br>number<\/span><\/label>\n                            <input type=\"hidden\" name=\"vehicles\" id=\"vehiclesNumMult\" value=\"0\">\n                            <div class=\"vehiclesContainer\">\n                                <div>\n                                    <div class=\"vehsNum\">0<\/div>\n                                    <div class=\"vehsNymAdd\"><\/div>\n                                    <div class=\"vehsNymSub\"><\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n\t\t\t\t\t<input type=\"hidden\" name=\"roundtrip\" value=\"2\">\n                \t<input type=\"hidden\" id=\"current_language\" name=\"current_language\" value=\"en\">\n\t\t\t\t\t<div class=\"submit_btn\">\n                        <button class=\"step1submitM\">SEARCH<\/button>\n                    <\/div>\n                <\/form>\n            <\/li>\n        <\/ul>\n    <\/div>\n<\/div>\n[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_text_aligment=&#8221;center&#8221;][vc_column]<div class=\"mkdf-tours-carousel-holder mkdf-carousel-pagination\">\n\t<div class=\"mkdf-tours-row mkdf-tr-no-space mkdf-has-label\">\n\t    \t\t    <div class=\"mkdf-tours-row-inner-holder\">\n\t\t        <div class=\"mkdf-tours-carousel mkdf-owl-slider\" data-enable-loop=\"yes\" data-enable-pagination=\"no\" data-number-of-items=\"3\" data-enable-navigation=\"yes\">\n\n\t\t            \t\t                \t                    <div class=\"mkdf-tours-gallery-simple-item mkdf-tours-row-item mkdf-tour-item-no-rating post-6897 tour-item type-tour-item status-publish has-post-thumbnail hentry\">\n\t\t\t<div class=\"mkdf-tours-gallery-simple-item-image-holder\">\n\t\t\t\t\t\t\n\t\t\t<div class=\"mkdf-tours-gallery-simple-item-image\">\n\t\t\t\t<img width=\"640\" height=\"965\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-HMERISIO2.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-HMERISIO2.jpg 640w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-HMERISIO2-199x300.jpg 199w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/>\t\t\t\t<span class=\"mkdf-tours-gallery-simple-item-price-holder\">\n\t\t\t\t\t\n\t\t<span class=\"mkdf-tours-price-holder\">\n\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<\/span>\t\t\t\t\n\t\t\t\t<div class=\"mkdf-tours-gallery-simple-item-content-holder\">\n\t\t\t\t\t<div class=\"mkdf-tours-gallery-simple-item-content-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"mkdf-tours-gallery-simple-title-holder\">\n\t\t\t\t\t\t\t<h4 class=\"mkdf-tour-title\">\n\t\t\t\t\t\t\t\t-30% SAME DAY RETURN\t\t\t\t\t\t\t<\/h4>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<a class=\"mkdf-tours-gallery-simple-item-link\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/tour-item\/30-same-day-return\/\"><\/a>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\t\t            \t\t                \t                    <div class=\"mkdf-tours-gallery-simple-item mkdf-tours-row-item mkdf-tour-item-no-rating post-6896 tour-item type-tour-item status-publish has-post-thumbnail hentry\">\n\t\t\t<div class=\"mkdf-tours-gallery-simple-item-image-holder\">\n\t\t\t\t\t\t\n\t\t\t<div class=\"mkdf-tours-gallery-simple-item-image\">\n\t\t\t\t<img width=\"640\" height=\"965\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-PAIDIKA.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-PAIDIKA.jpg 640w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-PAIDIKA-199x300.jpg 199w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/>\t\t\t\t<span class=\"mkdf-tours-gallery-simple-item-price-holder\">\n\t\t\t\t\t\n\t\t<span class=\"mkdf-tours-price-holder\">\n\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<\/span>\t\t\t\t\n\t\t\t\t<div class=\"mkdf-tours-gallery-simple-item-content-holder\">\n\t\t\t\t\t<div class=\"mkdf-tours-gallery-simple-item-content-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"mkdf-tours-gallery-simple-title-holder\">\n\t\t\t\t\t\t\t<h4 class=\"mkdf-tour-title\">\n\t\t\t\t\t\t\t\t-50% CHILDREN\t\t\t\t\t\t\t<\/h4>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<a class=\"mkdf-tours-gallery-simple-item-link\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/tour-item\/50-children\/\"><\/a>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\t\t            \t\t                \t                    <div class=\"mkdf-tours-gallery-simple-item mkdf-tours-row-item mkdf-tour-item-no-rating post-6894 tour-item type-tour-item status-publish has-post-thumbnail hentry\">\n\t\t\t<div class=\"mkdf-tours-gallery-simple-item-image-holder\">\n\t\t\t\t\t\t\n\t\t\t<div class=\"mkdf-tours-gallery-simple-item-image\">\n\t\t\t\t<img width=\"640\" height=\"965\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-GROUPS.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-GROUPS.jpg 640w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GSF-offerPhotos-GROUPS-199x300.jpg 199w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/>\t\t\t\t<span class=\"mkdf-tours-gallery-simple-item-price-holder\">\n\t\t\t\t\t\n\t\t<span class=\"mkdf-tours-price-holder\">\n\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<\/span>\t\t\t\t\n\t\t\t\t<div class=\"mkdf-tours-gallery-simple-item-content-holder\">\n\t\t\t\t\t<div class=\"mkdf-tours-gallery-simple-item-content-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"mkdf-tours-gallery-simple-title-holder\">\n\t\t\t\t\t\t\t<h4 class=\"mkdf-tour-title\">\n\t\t\t\t\t\t\t\tGROUPS PRICES\t\t\t\t\t\t\t<\/h4>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<a class=\"mkdf-tours-gallery-simple-item-link\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/tour-item\/groups-prices\/\"><\/a>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\t\t            \n\t\t        <\/div>\n\t\t    <\/div>\n\t    \t    \t<\/div>\n<\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221; disable_background_image=&#8221;&#8221; content_text_aligment=&#8221;center&#8221; el_class=&#8221;golden-miles&#8221; simple_background_image=&#8221;6477&#8243; css=&#8221;.vc_custom_1528963082019{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_column_text el_class=&#8221;app-txt&#8221; css=&#8221;.vc_custom_1638373019774{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221;]<\/p>\n<h4>Soon! Smartphone app<br \/>\nfrom\u00a0<strong>GOLDEN STAR FERRIES<\/strong><\/h4>\n<p>Book and manage your tickets directly from the screen of your smartphone![\/vc_column_text][vc_row_inner css=&#8221;.vc_custom_1528908195572{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 200px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221;][vc_column_inner width=&#8221;1\/2&#8243;][vc_single_image image=&#8221;6473&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221; onclick=&#8221;custom_link&#8221; link=&#8221;javascript:void(0)&#8221; el_class=&#8221;fll app-icon&#8221;][vc_single_image image=&#8221;6476&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221; onclick=&#8221;custom_link&#8221; link=&#8221;javascript:void(0)&#8221; el_class=&#8221;fll app-icon&#8221;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][vc_single_image image=&#8221;6475&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221; el_class=&#8221;flr app-icon&#8221;][\/vc_column_inner][\/vc_row_inner][\/vc_column][vc_column width=&#8221;1\/2&#8243; el_class=&#8221;miles-card&#8221;][vc_single_image image=&#8221;6474&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221;][vc_column_text]<\/p>\n<h4>Become a member,<br \/>\nget GOLDEN MILES!<\/h4>\n<hr \/>\n<p><b>Golden Miles! Golden Choices! Golden Gifts!<\/b><br \/>\nWin discounts and exclusive privileges![\/vc_column_text]<a itemprop=\"url\" href=\"https:\/\/goldenmiles.goldenstarferries.gr\/index.php?lang=en\" target=\"_blank\" style=\"color: #ffffff;background-color: #005187;font-size: 20px;font-weight: 400;text-transform: none;margin: 30px 0 30px 0;padding: 5px 150px 5px 150px\" class=\"mkdf-btn mkdf-btn-large mkdf-btn-solid mkdf-btn-custom-hover-bg mkdf-btn-custom-hover-color\" data-hover-color=\"#005187\" data-hover-bg-color=\"#e2b900\" >\n    <span class=\"mkdf-btn-text\">REGISTER NOW<\/span>\n    <\/a>[\/vc_column][\/vc_row][vc_section full_width=&#8221;stretch_row_content&#8221; el_class=&#8221;destinations_new&#8221;][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; disable_element=&#8221;yes&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_raw_html]JTNDZGl2JTIwY2xhc3MlM0QlMjJocy13cmFwcGVyJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtY3JldGUxLnBuZyUyMiUyMGFsdCUzRCUyMmltYWdlMDElMjIlM0UlMEElMjAlMjAlMjAlMjAlM0NpbWclMjBzcmMlM0QlMjIlMkZ3cC1jb250ZW50JTJGdXBsb2FkcyUyRmRlc3RpbmF0aW9ucy1jcmV0ZTIucG5nJTIyJTIwYWx0JTNEJTIyaW1hZ2UwMiUyMiUzRSUwQSUyMCUyMCUyMCUyMCUzQ2ltZyUyMHNyYyUzRCUyMiUyRndwLWNvbnRlbnQlMkZ1cGxvYWRzJTJGZGVzdGluYXRpb25zLWNyZXRlMy5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTAzJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtY3JldGU0LnBuZyUyMiUyMGFsdCUzRCUyMmltYWdlMDQlMjIlM0UlMEElMjAlMjAlMjAlMjAlM0NpbWclMjBzcmMlM0QlMjIlMkZ3cC1jb250ZW50JTJGdXBsb2FkcyUyRmRlc3RpbmF0aW9ucy1jcmV0ZTUucG5nJTIyJTIwYWx0JTNEJTIyaW1hZ2UwNSUyMiUzRSUwQSUyMCUyMCUyMCUyMCUzQ2ltZyUyMHNyYyUzRCUyMiUyRndwLWNvbnRlbnQlMkZ1cGxvYWRzJTJGZGVzdGluYXRpb25zLWNyZXRlNi5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTA2JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtY3JldGU3LnBuZyUyMiUyMGFsdCUzRCUyMmltYWdlMDclMjIlM0UlMEElMjAlMjAlMjAlMjAlM0NpbWclMjBzcmMlM0QlMjIlMkZ3cC1jb250ZW50JTJGdXBsb2FkcyUyRmRlc3RpbmF0aW9ucy1jcmV0ZTgucG5nJTIyJTIwYWx0JTNEJTIyaW1hZ2UwOCUyMiUzRSUwQSUyMCUyMCUyMCUyMCUzQ2RpdiUyMGNsYXNzJTNEJTIyaHMtb3ZlcmxheSUyMiUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZnb2xkZW5zdGFyZmVycmllcy5nciUyRmVuJTJGcm91dGVzJTJGcmFmaW5hLWN5Y2xhZGVzLWNyZXRlJTJGJTIyJTNFQ1lDTEFERVMlMjAtJTIwQ1JFVEUlM0MlMkZhJTNFJTBBJTIwJTIwJTIwJTIwJTNDJTJGZGl2JTNFJTBBJTNDJTJGZGl2JTNF[\/vc_raw_html][\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_raw_html]JTNDZGl2JTIwY2xhc3MlM0QlMjJocy13cmFwcGVyJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzMS5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTAxJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzMi5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTAyJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzMy5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTAzJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzNC5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTA0JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzNS5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTA1JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzNi5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTA2JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzNy5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTA3JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDaW1nJTIwc3JjJTNEJTIyJTJGd3AtY29udGVudCUyRnVwbG9hZHMlMkZkZXN0aW5hdGlvbnMtdmtpa2xhZGVzOC5wbmclMjIlMjBhbHQlM0QlMjJpbWFnZTA4JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDZGl2JTIwY2xhc3MlM0QlMjJocy1vdmVybGF5JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDYSUyMGhyZWYlM0QlMjJodHRwcyUzQSUyRiUyRmdvbGRlbnN0YXJmZXJyaWVzLmdyJTJGZW4lMkZyb3V0ZXMlMkZyYWZpbmEtY3ljbGFkZXMlMkYlMjIlM0VDWUNMQURFUyUzQyUyRmElM0UlMEElMjAlMjAlMjAlMjAlM0MlMkZkaXYlM0UlMEElM0MlMkZkaXYlM0U=[\/vc_raw_html][\/vc_column][\/vc_row][\/vc_section][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; disable_element=&#8221;yes&#8221; content_text_aligment=&#8221;center&#8221; el_class=&#8221;destinations-wrap&#8221;][vc_column][vc_basic_grid post_type=&#8221;post&#8221; max_items=&#8221;4&#8243; element_width=&#8221;3&#8243; gap=&#8221;0&#8243; order=&#8221;ASC&#8221; item=&#8221;6231&#8243; grid_id=&#8221;vc_gid:1642715333534-fb1ecded-1ce6-3&#8243; taxonomies=&#8221;2&#8243;][vc_basic_grid post_type=&#8221;post&#8221; max_items=&#8221;4&#8243; element_width=&#8221;3&#8243; gap=&#8221;0&#8243; order=&#8221;ASC&#8221; item=&#8221;6231&#8243; grid_id=&#8221;vc_gid:1642715333535-0321a262-4b2d-10&#8243; taxonomies=&#8221;2&#8243; offset=&#8221;4&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; content_text_aligment=&#8221;center&#8221; el_class=&#8221;icon-menu-wrap&#8221; css=&#8221;.vc_custom_1527075858361{padding-top: 50px !important;padding-right: 50px !important;padding-bottom: 50px !important;padding-left: 50px !important;}&#8221;][vc_column width=&#8221;1\/3&#8243;]<div class=\"mkdf-iwt clearfix  mkdf-iwt-icon-top mkdf-iwt-icon-medium\">\n\t<div class=\"mkdf-iwt-icon\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/routes\/\" target=\"_self\">\n\t\t\t\t\t\t\t\t\t<img width=\"195\" height=\"200\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/routes-icon.png\" class=\"attachment-full size-full\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t<div class=\"mkdf-iwt-content\" style=\"padding-top: 25px\">\n\t\t\t\t\t<h6 class=\"mkdf-iwt-title\" >\n\t\t\t\t\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/routes\/\" target=\"_self\">\n\t\t\t\t\t\t\t\t<span class=\"mkdf-iwt-title-text\">Routes<\/span>\n\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/h6>\n\t\t\t\t\t\t\t<p class=\"mkdf-iwt-text\" >Choose the ideal route for you based on your needs<\/p>\n\t\t\t<\/div>\n<\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243;]<div class=\"mkdf-iwt clearfix  mkdf-iwt-icon-top mkdf-iwt-icon-medium\">\n\t<div class=\"mkdf-iwt-icon\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/our-fleet\/\" target=\"_self\">\n\t\t\t\t\t\t\t\t\t<img width=\"226\" height=\"189\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/fleet-icon.png\" class=\"attachment-full size-full\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t<div class=\"mkdf-iwt-content\" style=\"padding-top: 25px\">\n\t\t\t\t\t<h6 class=\"mkdf-iwt-title\" >\n\t\t\t\t\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/our-fleet\/\" target=\"_self\">\n\t\t\t\t\t\t\t\t<span class=\"mkdf-iwt-title-text\">Fleet<\/span>\n\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/h6>\n\t\t\t\t\t\t\t<p class=\"mkdf-iwt-text\" >Explore our fleet, get to know our ships and travel with us<\/p>\n\t\t\t<\/div>\n<\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243;]<div class=\"mkdf-iwt clearfix  mkdf-iwt-icon-top mkdf-iwt-icon-medium\">\n\t<div class=\"mkdf-iwt-icon\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/central-agencies\/\" target=\"_self\">\n\t\t\t\t\t\t\t\t\t<img width=\"211\" height=\"190\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/agencies-icon.png\" class=\"attachment-full size-full\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t<div class=\"mkdf-iwt-content\" style=\"padding-top: 25px\">\n\t\t\t\t\t<h6 class=\"mkdf-iwt-title\" >\n\t\t\t\t\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/tickets.goldenstarferries.gr\/en\/central-agencies\/\" target=\"_self\">\n\t\t\t\t\t\t\t\t<span class=\"mkdf-iwt-title-text\">Agencies<\/span>\n\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/h6>\n\t\t\t\t\t\t\t<p class=\"mkdf-iwt-text\" >To receive and issue your tickets, please visit our network<\/p>\n\t\t\t<\/div>\n<\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; disable_background_image=&#8221;&#8221; content_text_aligment=&#8221;center&#8221; el_class=&#8221;web-checkin&#8221; css=&#8221;.vc_custom_1528974603301{padding-top: 150px !important;padding-right: 100px !important;padding-bottom: 150px !important;padding-left: 100px !important;}&#8221; simple_background_image=&#8221;6512&#8243;][vc_column width=&#8221;2\/3&#8243;][vc_column_text]<\/p>\n<h4>NEW! E-Ticket! Web Check in Online<br \/>\neasily and fast<\/h4>\n<h6>The new e-ticket from Golden Star Ferries!<\/h6>\n<p>Have you purchased your ticket through an online reservation system?<br \/>\nClick here to issue your e-ticket for instant boarding![\/vc_column_text]<a itemprop=\"url\" href=\"https:\/\/webcheckin.goldenstarferries.gr\/index.php?lang=en\" target=\"_blank\" style=\"color: #ffffff;background-color: #005187;font-size: 20px;font-weight: 400;text-transform: none;margin: 30px 0 30px 0;padding: 5px 150px 5px 150px\" class=\"mkdf-btn mkdf-btn-large mkdf-btn-solid mkdf-btn-custom-hover-bg mkdf-btn-custom-hover-color\" data-hover-color=\"#005187\" data-hover-bg-color=\"#e2b900\" >\n    <span class=\"mkdf-btn-text\">WEB CHECK-IN<\/span>\n    <\/a>[\/vc_column][vc_column width=&#8221;1\/3&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; el_class=&#8221;services-wrap&#8221; css=&#8221;.vc_custom_1527183375312{padding-top: 50px !important;padding-right: 80px !important;padding-left: 80px !important;}&#8221;][vc_column]<div class=\"mkdf-section-title-holder  \" style=\"text-align: left\">\n\t<div class=\"mkdf-st-inner\">\n\t\t\t\t\t\t\t<h3 class=\"mkdf-st-title\" >\n\t\t\t\tEnjoy our en route services!\t\t\t<\/h3>\n\t\t\t\t\t\t\t<p class=\"mkdf-st-text\" >\n\t\t\t\tTravel with GOLDEN STAR FERRIES for a trip full of on board surprises!\t\t\t<\/p>\n\t\t\t<\/div>\n<\/div>[vc_row_inner][vc_column_inner width=&#8221;1\/3&#8243;][vc_column_text]<img loading=\"lazy\" class=\"alignnone wp-image-9742 size-full\" style=\"margin-top: 8px;\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service1-magazine-max-3.png\" alt=\"\" width=\"532\" height=\"133\" srcset=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service1-magazine-max-3.png 532w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service1-magazine-max-3-300x75.png 300w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/p>\n<h6><a href=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/GOLDEN-STAR-ALL-MAGAZINE-SPEADS.pdf\" target=\"_blank\" rel=\"noopener\">Flip the magazine<\/a><\/h6>\n<p>Travel and discover the beauties of the Aegean, now also from mobile \/ tablet.[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243;][vc_column_text]<img loading=\"lazy\" width=\"989\" height=\"223\" class=\"alignnone wp-image-6263\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service2.png\" alt=\"\" srcset=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service2.png 989w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service2-300x68.png 300w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service2-768x173.png 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><\/p>\n<h6><a href=\"https:\/\/tickets.goldenstarferries.gr\/en\/our-fleet\/\">Onboard shopping<\/a><\/h6>\n<p>In our stores you can find new collections and gifts to your loved ones[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243;][vc_column_text]<img loading=\"lazy\" class=\"alignnone wp-image-6269 size-full\" src=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service4.png\" alt=\"\" width=\"989\" height=\"227\" srcset=\"https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service4.png 989w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service4-300x69.png 300w, https:\/\/tickets.goldenstarferries.gr\/wp-content\/uploads\/service4-768x176.png 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><\/p>\n<h6><a href=\"https:\/\/tickets.goldenstarferries.gr\/en\/our-fleet\/\">Surf the web with wifi<\/a><\/h6>\n<p>Travel having secured that you get internet for the duration of your trip[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row]<\/p>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>[vc_row css=&#8221;.vc_custom_1528899548093{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 10px !important;padding-right: 40px !important;padding-bottom: 10px !important;padding-left: 40px !important;}&#8221; simple_background_color=&#8221;#ffffff&#8221; el_class=&#8221;scrollnews-wrap&#8221;][vc_column][vc_widget_sidebar sidebar_id=&#8221;scroll-news&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1528374703490{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; simple_background_color=&#8221;#ffffff&#8221; el_class=&#8221;form-wrap&#8221;][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1528374687060{margin-right: 0px !important;margin-left: [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"full-width.php","meta":[],"acf":[],"_links":{"self":[{"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/pages\/6890"}],"collection":[{"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/comments?post=6890"}],"version-history":[{"count":5,"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/pages\/6890\/revisions"}],"predecessor-version":[{"id":11089,"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/pages\/6890\/revisions\/11089"}],"wp:attachment":[{"href":"https:\/\/tickets.goldenstarferries.gr\/en\/wp-json\/wp\/v2\/media?parent=6890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}