/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/* ******************************************************
 * ******** Adapt Classes products to mobile 
 * **** and avoid huge button during booking is *********
* *******************in appearence, customize ***********
* *******************************************************
*/


	/*
	*	********************************************************************************************
	*	********************* Help to improve Accesibility for Lighthouse **************************
	* 	********************************************************************************************
	*	* Fix Elementor Skip Link Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #000000; /* Dark background */
    color: #FFFFFF;     /* White text */
    padding: 10px 15px;
    z-index: 99999;     /* Above everything */
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;             /* Drop down when tabbed */
    outline: 2px solid #FFFFFF;
}
/*
	*	********************************************************************************************
	*	***Fix Elementor Skip Link Accessibility *//* SOFT FIX: Hide Ghost Box, but allow Open *****
	* 	********************************************************************************************
*/
#wpcas-area {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: -100;
}

/* When the JS above adds 'active' or 'wpcas-open', SHOW IT */
#wpcas-area.active,
#wpcas-area.wpcas-open,
#wpcas-area.opened {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important;
    /* Reset position just in case */
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}