<div id='ds_search_box' style='padding-top:25px;'></div>    <script type="text/javascript">
        var $ = jQuery;
      //  alert($);
    </script>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <link type="text/css" rel="stylesheet" href="/booking/css/ply.css"/>
     <link type="text/css" rel="stylesheet" href="/booking/css/dsform.css"/>
     <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="/booking/js/ply.min.js" type="text/javascript"></script>
<script src="/booking/js/ctws_front.js" type="text/javascript"></script>
  
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"/>
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">-->
    <script>
     var $ = jQuery;
     jQuery(document).ready(function(){
                                    
    jQuery.ajax({
        url: '/booking/hotel2/ds_search_form_left.php',
        dataType: 'html',
        async: false,
        error: function(){
            alert("Error In Loading");
        },
        success: function(data){
            jQuery('#ds_search_box').html(data);
        },
    });
    });
    
    function frontajaxFormSubmit(paramlist_form){
    if(paramlist_form=="bookform" ){
        if($('#datef').val()=='Check In Dummy Don\'t use'){
            Ply.dialog("alert",err_checkin);
            return false;
        }
        if($('#datef1').val()=='Check Out Dummy Don\'t use'){
            Ply.dialog("alert",err_checkout);
            return false;
        }
        if($('#nights').val()==0){
            Ply.dialog("alert",err_nights);
            return false;
        }
        if($('#rooms').val()==0){
            Ply.dialog("alert",err_rooms);
            return false;
        }
        var wdate = $('#datef').val();
        var wdate1= $('#datef1').val();
        var dateFirst = wdate.split('/');
        var dateSecond = wdate1.split('/');
        var firstdate1 = dateFirst[2]+','+dateFirst[1]+','+dateFirst[0];
        var firstdate2 = dateSecond[2]+','+dateSecond[1]+','+dateSecond[0];
        var oneDay = 24*60*60*1000; // hours*minutes*seconds*milliseconds   
        var firstDate = new Date(firstdate1);
        var secondDate = new Date(firstdate2);
        var diffDays = Math.round((secondDate.getTime()-firstDate.getTime())/(oneDay));

        if ((diffDays)<=0){
            Ply.dialog("alert",err_departureOverArrival);
            return false;
        }
        for(var i=1;i<=$('#rooms').val();i++){
            //if($('#adults'+i).val()==0){
            if($('[name="room_adult['+i+']"]').val()==0){
                Ply.dialog("alert",err_adultForRoom+i+" !!!");
                return false;
            }
        }
//      $('html, body').animate({scrollTop:$('#right_column').offset()}, 'slow');
    }
    //var params = $('#'+paramlist_form).serialize();
    //$(".dropdown-toggle").removeClass("close-sh");
    //$("#search-panel").hide();
  //openPagePost(params);
  //if(paramlist_form=="bookform" || paramlist_form=="hotel_sort" || paramlist_form=="book_frm"){
    //ajaxSidebar();
  //}
  $("#"+paramlist_form).submit();
}
    </script>
    <script>
    function monthconversion(month){
    if(month != '' || month != 'undefined' || month != 'null'){
      switch(month){
        case '1':
        case '01': return 'JAN'; break;
        case '2':
        case '02': return 'FEB'; break;
        case '3':
        case '03': return 'MAR'; break;
        case '4':
        case '04': return 'APR'; break;
        case '5':
        case '05': return 'MAY'; break;
        case '6':
        case '06': return 'JUN'; break;
        case '7':
        case '07': return 'JUL'; break;
        case '8':
        case '08': return 'AUG'; break;
        case '9':
        case '09': return 'SEP'; break;
        case '10': return 'OCT'; break;
        case '11': return 'NOV'; break;
        case '12': return 'DEC'; break;

      }
    }
  }
  function checkinchangeDate(calender_id,change,second_calender_id){
    if(calender_id != 'null' || calender_id != 'undefined' || calender_id != ''){
      if(second_calender_id != 'null' || second_calender_id != 'undefined' || second_calender_id != ''){
        var date1 = $('#'+calender_id).datepicker('getDate');
        if(change != 'null' || change != 'undefined' || change != ''){
          $('#'+second_calender_id).datepicker('setDate', date1);
          if(change == '1') date1.setDate(date1.getDate() + 1);
          else if(change == '-1') date1.setDate(date1.getDate() - 1);
         
          $( '#'+calender_id ).datepicker( "option", "defaultDate", date1 );
          $( '#'+calender_id ).val( date1.getDate() );
          var datef = $.datepicker.formatDate('dd/mm/yy', date1);
          $('#datef').val(datef);
          var getVal = $("#datef").val();
          var checkin = getVal;
          getValArr = getVal.split('/');
          $('#date1d').val(getValArr[0]); 
          $('#date1m').val(getValArr[2]+getValArr[1]);
          $('#checkin_datebox').html(getValArr[0]);
          $('#checkin_month').html(monthconversion(getValArr[1]));
          //$('#checkin_year').html(getValArr[2]);

          $( "#"+second_calender_id ).datepicker( "option", "minDate", datef);
          var date2 = $( "#"+second_calender_id ).datepicker('getDate');
          date2.setDate(date1.getDate() + 7);
          $('#'+second_calender_id).datepicker('setDate', date2);
          $( "#"+second_calender_id ).datepicker( "option", "defaultDate", date2);
          $( "#"+second_calender_id ).val( date2.getDate() );
          date2 = $.datepicker.formatDate('dd/mm/yy', date2);
          
          $( "#datef1" ).val( date2 );
          var getVal = $("#datef1").val();
          var checkout = getVal;
          getValArr = getVal.split('/');
          $('#date2d').val(getValArr[0]); 
          $('#date2m').val(getValArr[2]+getValArr[1]);
          $('#checkout_datebox').html(getValArr[0]);
          $('#checkout_month').html(monthconversion(getValArr[1]));
         // $('#checkout_year').html(getValArr[2]);
          var diff = dateDifference(checkin,checkout);
          $('#nights').val(diff);
        }
      }
    }
  }
  function checkoutchangeDate(calender_id,change,second_calender_id){
    if(calender_id != 'null' || calender_id != 'undefined' || calender_id != ''){
      if(second_calender_id != 'null' || second_calender_id != 'undefined' || second_calender_id != ''){
        var date2 = $('#'+calender_id).datepicker('getDate');
        if(change != 'null' || change != 'undefined' || change != ''){
          if(change == '1') date2.setDate(date2.getDate() + 1);
          else if(change == '-1') date2.setDate(date2.getDate() - 1);
         
          $( '#'+calender_id ).datepicker( "option", "defaultDate", date2 );
          $( '#'+calender_id ).val( date2.getDate() );
          var datef1 = $.datepicker.formatDate('dd/mm/yy', date2);
          $('#datef1').val(datef1);
          var getVal = $("#datef1").val();
          var checkout = getVal;
          getValArr = getVal.split('/');
          $('#date2d').val(getValArr[0]); 
          $('#date2m').val(getValArr[2]+getValArr[1]);
          $('#checkout_datebox').html(getValArr[0]);
          $('#checkout_month').html(monthconversion(getValArr[1]));
          
          var getVal = $("#datef").val();
          var checkin = getVal;
          getValArr = getVal.split('/');
          $('#date1d').val(getValArr[0]); 
          $('#date1m').val(getValArr[2]+getValArr[1]);
           $('#checkin_datebox').html(getValArr[0]);
          $('#checkin_month').html(monthconversion(getValArr[1]));
          var diff = dateDifference(checkin,checkout);
          $('#nights').val(diff);
        }
      }
    }
  }
 // new code start
    var sale_room='';
                 var sale_price='';
                 var stop_room='';
                 //var Proom_date='';
                 var fast_date='';
                 var lst_date='';
                 var hoffer_date='';
                 var roomFill='';
                
                var stop_room;
              $.ajax({
                    url : "/booking/data_json.php",
                    type : "POST",
                    async:false,
                    //data : data,
                    dataType : 'json',
                    headers: {
                'X-Requested-With': 'XMLHttpRequest'
            },
                   success : function(result){
                   sale_room = JSON.parse(result['Salroom']);
                   lst_date = JSON.parse(result['last_date']);
                   sale_price = JSON.parse(result['SaleroomPrice']);
                   stop_room = JSON.parse(result['stoproomsal']);
                   fast_date = JSON.parse(result['fastfilldate']);
                   roomFill = JSON.parse(result['roomFill']);
                   //Proom_date = JSON.parse(result['price_date']);
                   hoffer_date = JSON.parse(result['RoomOfferDate']);
                   //console.log(result['Salroom']);
                  //alert(hoffer_date);
                  },
                 error : function () {
                        alert("error");
                   }
                });

var active_datesBlock = stop_room;
    var active_datesOffer = hoffer_date;
    
    var active_datesFast = fast_date;
    var active_datesFastPrice = sale_price;
     var above_date = sale_room;
      var da = new Date();
      var strDate = (da.getMonth()+1)+"/" +da.getDate()+ "/" + da.getFullYear() ;
      
       var lastDay = lst_date;
       var date1 = new Date(strDate);
       var date2 = new Date(lastDay);
       var timeDiff = Math.abs(date2.getTime() - date1.getTime());
       var diffDays = Math.ceil(timeDiff / (1000 * 3600 * 24));
       var mxDate1 = "+"+diffDays+"D";
       var getVal = $("#datef").val();
       var checkin = getVal;
       getVal = $("#datef1").val();
       var checkout = getVal;
     var diff = dateDifference(checkin,checkout);
   $('#nights').val(diff);
              

  function dateDifference(from, to)
  {
    if(from == ''|| from == null) from = '';
    if(to == ''|| to == null) to = '';
    if(from != '' && to != ''){
        from = from.split('/');
        from = from[1]+'/'+from[0]+'/'+from[2];
        from = new Date(from);
        to = to.split('/');
        to = to[1]+'/'+to[0]+'/'+to[2];
        to = new Date(to);
        var diff = to.getTime() - from.getTime();
        diff = diff/(1000*24*60*60);
        if(diff == 0) diff = 1;
        return diff;
    }
  }
  function addtoDate(from,night)
  {
    if(from == ''|| from == null) from = '';
    if(night == ''|| night == null) night = 1;
    if(from != ''){
        from = from.split('/');
        from = from[1]+'/'+from[0]+'/'+from[2];
        var to = new Date(from);alert(from+'=='+to);
        to.setTime(to.getTime()+parseInt(parseInt(night)*1000*60*60*24));alert(to);
    }
  }
   
   var $ = jQuery;
  $(function() {
  var $ = jQuery;
  var mobile="";

         
//alert(mobile+"test");
      if(mobile==1){
//alert("1");
            var num_of_mnth=1;

        }

        else

        {

          var num_of_mnth=2;

        }

    $( "#datef" ).datepicker({
      minDate:+1,
      maxDate: mxDate1,
      defaultDate: "+1w",
      changeMonth: true,
      numberOfMonths: num_of_mnth,
      dateFormat:"dd/mm/yy",
      beforeShowDay: function(date){ setTimeout(appendsomething, 10);
         var d = date;
         var curr_date = d.getDate();
         var curr_month = d.getMonth() + 1; //Months are zero based
         var curr_year = d.getFullYear();
         var formattedDate = curr_date + "/" + curr_month + "/" + curr_year

         if ($.inArray(formattedDate, active_datesBlock) != -1){
           return [false,'blockDay'];
         }
          if ($.inArray(formattedDate, active_datesBlock) != -1){
             var index = active_datesBlock.map(function(o) { return o; }).indexOf(formattedDate);
            
           return [true,'blockDay',active_datesBlock[index]];
         }
        if ($.inArray(formattedDate, active_datesOffer) != -1){
           return [true,'offersDay'];
         }
            if ($.inArray(formattedDate, active_datesFast) != -1){
           return [true,'fillingDay'];
         }
        
          

         if ($.inArray(formattedDate, active_datesFast) != -1){
             var index = active_datesFast.map(function(o) { return o; }).indexOf(formattedDate);
             
           return [true,'fillingDay',active_datesFastPrice[index]];
         }

          if ($.inArray(formattedDate, above_date) != -1){
             var index = above_date.map(function(o) { return o; }).indexOf(formattedDate);
             
           return [true,'availableDay',active_datesFastPrice[index]];
         }
          if ($.inArray(formattedDate, above_date) != -1){
           return [true,'availableDay'];
         }
       
        /* if(formattedDate>above_date)
             return [false,'notAvaiable'];*/
      //return [true, 'availableDay'];
      return [false,'notAvaiable'];
      },
      beforeShow: function(inp, inst) {
        //call the function to append div to datepicker
          setTimeout(appendsomething, 10);
        },
      onClose: function( selectedDate ) {
        var date2 = $('#datef').datepicker('getDate');
        date2.setDate(date2.getDate() + 1);
        $('#datef1').datepicker('setDate', date2);
        $( "#datef1" ).datepicker( "option", "minDate", selectedDate );
         var getVal = $("#datef").val();
     var checkin = getVal;
         getValArr = getVal.split('/');
         $('#date1d').val(getValArr[0]); 
         $('#date1m').val(getValArr[2]+getValArr[1]);
          $('#checkin_datebox').html(getValArr[0]);
          $('#checkin_month').html(monthconversion(getValArr[1]));
         var getVal = $("#datef1").val();
     var checkout = getVal;
         getValArr = getVal.split('/');
         $('#date2d').val(getValArr[0]); 
         $('#date2m').val(getValArr[2]+getValArr[1]);
          $('#checkout_datebox').html(getValArr[0]);
          $('#checkout_month').html(monthconversion(getValArr[1]));
     var diff = dateDifference(checkin,checkout);
     $('#nights').val(diff);
      }
    });
    $( "#datef1" ).datepicker({
      minDate:+1,
      maxDate: mxDate1,
      defaultDate: "+1w",
      changeMonth: true,
      changeYear: true,
      numberOfMonths:num_of_mnth,
      dateFormat:"dd/mm/yy",
      beforeShowDay: function(date){ setTimeout(appendsomething, 10);
         var d = date;
         var curr_date = d.getDate();
         var curr_month = d.getMonth() + 1; //Months are zero based
         var curr_year = d.getFullYear();
         var formattedDate = curr_date + "/" + curr_month + "/" + curr_year

         if ($.inArray(formattedDate, active_datesBlock) != -1){
           return [false,'blockDay'];
         }
         
        if ($.inArray(formattedDate, active_datesOffer) != -1){
           return [true,'offersDay'];
         }
            if ($.inArray(formattedDate, active_datesFast) != -1){
           return [true,'fillingDay'];
         }
        
          

         if ($.inArray(formattedDate, active_datesFast) != -1){
             var index = active_datesFast.map(function(o) { return o; }).indexOf(formattedDate);
             
           return [true,'fillingDay',active_datesFastPrice[index]];
         }

          if ($.inArray(formattedDate, above_date) != -1){
             var index = above_date.map(function(o) { return o; }).indexOf(formattedDate);
             
           return [true,'availableDay',active_datesFastPrice[index]];
         }
          if ($.inArray(formattedDate, above_date) != -1){
           return [true,'availableDay'];
         }
        if ($.inArray(formattedDate, active_datesBlock) != -1){
             var index = active_datesBlock.map(function(o) { return o; }).indexOf(formattedDate);
             
           return [true,'blockDay',active_datesBlock[index]];
         }
        /* if(formattedDate>above_date)
             return [false,'notAvaiable'];*/
      //return [true, 'availableDay'];
      return [false,'notAvaiable'];
      },
      beforeShow: function(inp, inst) {
        //call the function to append div to datepicker
          setTimeout(appendsomething, 10);
        },
      onClose: function( selectedDate ) {
       // $( "#fromD" ).datepicker( "option", "maxDate", selectedDate );
       var getVal = $("#datef1").val();
     var checkout = getVal;
         getValArr = getVal.split('/');
         $('#date2d').val(getValArr[0]); 
         $('#date2m').val(getValArr[2]+getValArr[1]);
          $('#checkout_datebox').html(getValArr[0]);
          $('#checkout_month').html(monthconversion(getValArr[1]));
         var getVal = $("#datef").val();
     var checkin = getVal;
         getValArr = getVal.split('/');
         $('#date1d').val(getValArr[0]); 
         $('#date1m').val(getValArr[2]+getValArr[1]);
           $('#checkin_month').html(monthconversion(getValArr[1]));
          $('#checkin_year').html(getValArr[2]);
           $('#checkin_datebox').html(getValArr[0]);
          $('#checkin_month').html(monthconversion(getValArr[1]));
     var diff = dateDifference(checkin,checkout);
     $('#nights').val(diff);
      }
    });
  });

   $( function() {
    $( "#date1" ).datepicker({dateFormat: 'dd/mm/y',//check change
    changeMonth: true,
    changeYear: true});
    $( "#date2" ).datepicker({dateFormat: 'dd/mm/y',//check change
    changeMonth: true,
    changeYear: true});
});

$('.ctws-guest , .ctws-done').click(function(e){

    $('.ctws-guest-popup').toggleClass('ctws-popup-open' , function(){$(this).focus();});
    
    });

     function appendsomething(){
            var $ = jQuery;
            var parElem = $("#ui-datepicker-div");
    //check if your div exists, append if not
    if( !parElem.find(".note_div").length ) {
        parElem.append('<div class="note_div"><div style="float: left; width: 100%; margin: 10px;font-size:10px"><div style="float:left;">Note:&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#27ae60;margin-top:6px;"></div><div style="float:left;">&nbsp;Available&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#FFC300;margin-top:6px;"></div><div style="float:left;">&nbsp;Offers&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#ff0000;margin-top:6px;"></div><div style="float:left;">&nbsp;Not Available &nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#eb008c;margin-top:6px;"></div><div style="float:left;">&nbsp;Filling Fast</div></div></div>');
    }
          
        }
  // new code end
  $(document).ready(function(){
    $('.ctws-room-select').on('click','.ctws-a-r-click',function(){
    jQuery(".ctws-rooms-box").toggle(1); 
    });
    $('.ctws-room-select').click(function(){
      
      jQuery('.ctws-rooms-box').css("display" , "block");
      
    });
    
  });
  </script>
    {"id":9,"date":"2019-03-13T07:21:03","date_gmt":"2019-03-13T07:21:03","guid":{"rendered":"http:\/\/fc7tx.hosts.cx\/?page_id=9"},"modified":"2021-03-01T07:58:49","modified_gmt":"2021-03-01T07:58:49","slug":"home","status":"publish","type":"page","link":"https:\/\/antonisghotelapts.com\/de\/","title":{"rendered":"HOME"},"content":{"rendered":"<p>[vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220; el_id=&#8220;ctws-home-slider&#8220; css=&#8220;.vc_custom_1593502133279{background-image: url(http:\/\/antonisghotelapts.com\/wp-content\/uploads\/2020\/06\/newnew76-1.jpg?id=795) !important;}&#8220;][vc_column][rev_slider_vc alias=&#8220;ctws-home-slider&#8220; el_class=&#8220;ctws-home-slider&#8220;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8220;ctws-welcome-txt&#8220;][vc_column][vc_custom_heading text=&#8220;ANTONIS G HOTEL&#8220; font_container=&#8220;tag:h2|font_size:35px|text_align:center|color:%238caea2&#8243; google_fonts=&#8220;font_family:Nunito%3A300%2Cregular%2C700|font_style:300%20light%20regular%3A300%3Anormal&#8220; el_class=&#8220;ctws-page-heading&#8220;][vc_column_text]<\/p>\n<p class=\"p1\" style=\"text-align: center;\"><strong>GREAT NEWS &#8211; WE ARE OPEN! BOOK DIRECT ONLINE AND GET THE BREAK YOU DESERVE.<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p class=\"p1\" style=\"text-align: center;\"><span class=\"s1\">Located in Voroklini village overlooking Larnaca Bay and the Mediterranean Sea, this family-run hotel offers self-catered rooms and restaurants. You can can enjoy calm leisure here with all facilities for your comfort.<\/span><\/p>\n<p class=\"p1\" style=\"text-align: center;\"><span class=\"s1\">Most of our rooms feature a private balcony with views of the garden or Oroklini mountainside.The property often hosts nights with live music and dancing. Guests have access to the outdoor swimming pool.\u00a0 Free WiFi\u00a0 is available in all areas.<\/span><\/p>\n<p class=\"p1\" style=\"text-align: center;\"><span class=\"s1\">Antonis G. Hotel is a 20-minute drive from Larnaca International Airport. A bus service, stopping by the hotel, takes guests to the beach in 5 minutes. Restaurants, banks and shops are within a 10-minute walk.<\/span><\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_id=&#8220;ctws-home-slider2&#8243;][vc_column width=&#8220;1\/3&#8243;][vc_single_image image=&#8220;642&#8243; img_size=&#8220;350&#215;200&#8243;][vc_column_text]<\/p>\n<h2>Antonia Rooms<\/h2>\n<p>Traditional Antonia Studio is located in the bottom of a beautiful mountain in Voroklini and offers an outdoor pool. Free WiFi is available throughout the property.[\/vc_column_text][vc_btn title=&#8220;View Rooms&#8220; style=&#8220;classic&#8220; shape=&#8220;square&#8220; color=&#8220;default&#8220; link=&#8220;url:http%3A%2F%2Fantonisghotelapts.com%2Faccommodation%2F|||&#8220;][\/vc_column][vc_column width=&#8220;1\/3&#8243;][vc_single_image image=&#8220;695&#8243; img_size=&#8220;350&#215;200&#8243;][vc_column_text]<\/p>\n<h2>Lithos Rooms<\/h2>\n<p>[\/vc_column_text][vc_btn title=&#8220;View Rooms&#8220; style=&#8220;classic&#8220; shape=&#8220;square&#8220; color=&#8220;default&#8220; link=&#8220;url:http%3A%2F%2Fantonisghotelapts.com%2Faccommodation%2F|||&#8220;][\/vc_column][vc_column width=&#8220;1\/3&#8243;][vc_single_image image=&#8220;620&#8243; img_size=&#8220;350&#215;200&#8243;][vc_column_text]<\/p>\n<h2>Antonis G Rooms<\/h2>\n<p>[\/vc_column_text][vc_btn title=&#8220;View Rooms&#8220; style=&#8220;classic&#8220; shape=&#8220;square&#8220; color=&#8220;default&#8220; link=&#8220;url:http%3A%2F%2Fantonisghotelapts.com%2Faccommodation%2F|||&#8220;][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220; el_class=&#8220;ctws-home-slider2&#8243; css=&#8220;.vc_custom_1578924688819{background-color: #e8e8e8 !important;}&#8220;][vc_column width=&#8220;1\/2&#8243; css=&#8220;.vc_custom_1578924738332{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1580807915926{margin-left: 20px !important;padding-right: 15px !important;padding-bottom: 242px !important;}&#8220;]<\/p>\n<h1 class=\"ctws-serv-heading ng-binding\">Luxuary Villa 7 Bedrooms<\/h1>\n<div>\n<div id=\"myCarousel_17\" class=\"carousel slide\" data-ride=\"carousel\">\n<div class=\"carousel-inner\">\n<div class=\"item active\" data-toggle=\"modal\" data-target=\"#lightbox\">Sleeps up to 18 perfect for wedding parties, Group trips, Schools and training for bike riders. Having its own private pool and 7 bedrooms.<\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8220;1\/2&#8243; css=&#8220;.vc_custom_1578924812221{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8220;][vc_single_image image=&#8220;536&#8243; img_size=&#8220;570&#215;500&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220; el_class=&#8220;ctws-home-slider2&#8243; css=&#8220;.vc_custom_1578924688819{background-color: #e8e8e8 !important;}&#8220;][vc_column width=&#8220;1\/2&#8243; css=&#8220;.vc_custom_1578924738332{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220;][vc_single_image image=&#8220;589&#8243; img_size=&#8220;570&#215;500&#8243;][\/vc_column][vc_column width=&#8220;1\/2&#8243; css=&#8220;.vc_custom_1578924812221{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1578926180458{margin-left: 20px !important;padding-right: 15px !important;padding-bottom: 242px !important;}&#8220;]<\/p>\n<h2>LITHOS BAR &amp; GRILL<\/h2>\n<p>The Lithos Bar &amp; Grill has been around since 2006 and has recently been fully renovated.<\/p>\n<p>The bar offers a good selection of spirits, beers and wines from all over the world.<\/p>\n<p>Lithos is also famous for serving quality food for both local and international cuisine. You are welcome to book a private party for up to 200 people according to your needs.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220; el_class=&#8220;ctws-home-slider2&#8243; css=&#8220;.vc_custom_1578924688819{background-color: #e8e8e8 !important;}&#8220;][vc_column width=&#8220;1\/2&#8243; css=&#8220;.vc_custom_1578924738332{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1580807122217{margin-left: 20px !important;padding-right: 15px !important;padding-bottom: 242px !important;}&#8220;]<\/p>\n<h1 class=\"vc_custom_heading vc_custom_1576680108279\">Voroklini Village Tavernio<\/h1>\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<p>Oroklini Tavernio is located in the heart of Voroklini Village or as more commonly known as Oroklini Village in Larnaca district, Cyprus.<\/p>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8220;1\/2&#8243;][vc_single_image image=&#8220;572&#8243; img_size=&#8220;570&#215;500&#8243;][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220; el_id=&#8220;ctws-home-slider&#8220; css=&#8220;.vc_custom_1593502133279{background-image: url(http:\/\/antonisghotelapts.com\/wp-content\/uploads\/2020\/06\/newnew76-1.jpg?id=795) !important;}&#8220;][vc_column][rev_slider_vc alias=&#8220;ctws-home-slider&#8220; el_class=&#8220;ctws-home-slider&#8220;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8220;ctws-welcome-txt&#8220;][vc_column][vc_custom_heading text=&#8220;ANTONIS G HOTEL&#8220; font_container=&#8220;tag:h2|font_size:35px|text_align:center|color:%238caea2&#8243; google_fonts=&#8220;font_family:Nunito%3A300%2Cregular%2C700|font_style:300%20light%20regular%3A300%3Anormal&#8220; el_class=&#8220;ctws-page-heading&#8220;][vc_column_text] GREAT NEWS &#8211; WE ARE OPEN! BOOK DIRECT ONLINE AND GET THE BREAK YOU DESERVE. &nbsp; Located in Voroklini village overlooking Larnaca Bay and the Mediterranean Sea, this family-run hotel offers self-catered rooms and restaurants. You can can enjoy calm [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"_links":{"self":[{"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/pages\/9"}],"collection":[{"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/comments?post=9"}],"version-history":[{"count":49,"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/pages\/9\/revisions"}],"predecessor-version":[{"id":699,"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/pages\/9\/revisions\/699"}],"wp:attachment":[{"href":"https:\/\/antonisghotelapts.com\/de\/wp-json\/wp\/v2\/media?parent=9"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}