:root {
    /* Base */
    interpolate-size: allow-keywords;
    
    /* Layout */
    --spacing: 1.5rem;
    --header-height: var(--ELEMENTOR_LOCATION_HEADER_HEIGHT);
    
    /* Layers */
    --loader-layer: 1000000;
    --header-layer: 3;
    --main-layer: 2;
    --footer-layer: 1;
    
    /* Easings */
    /* https://easings.co?demo=0&duration=600&offset=0&curve=0.215,0.61,0.355,1 */
    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    /* https://easings.co?demo=3&duration=600&offset=0&curve=0.77,0,0.175,1 */
    --ease-inOut: cubic-bezier(0.77, 0, 0.18, 1);

    /* Durations */
    --fast: 400ms;
    --regular: 600ms;
    --slow: 800ms;
    --super-slow: 1200ms;
    --giga-slow: 1600ms;

    /* Ease Out */
    --out--fast: var(--fast) var(--ease-out);
    --out: var(--regular) var(--ease-out);
    --out--slow: var(--slow) var(--ease-out);
    --out--super-slow: var(--super-slow) var(--ease-out);
    --out--giga-slow: var(--giga-slow) var(--ease-out);

    /* Ease In Out */
    --inOut--fast: var(--fast) var(--ease-inOut);
    --inOut: var(--regular) var(--ease-inOut);
    --inOut--slow: var(--slow) var(--ease-inOut);
    --inOut--super-slow: var(--super-slow) var(--ease-inOut);
    --inOut--giga-slow: var(--giga-slow) var(--ease-inOut);
}

body {
    --body-bg: var(--bs-body-bg);
    --loader-bg: var(--body-bg);
}

.elementor-location-header {
    position: sticky;
    z-index: var(--header-layer);
    top: 0;
    background-color: var(--body-bg);
    box-shadow: 0 0 32px rgba(0 0 0 / 5%);
}

.elementor-location-header + .elementor,
.elementor-location-header + .page {
    position: relative;
    z-index: var(--main-layer);
    background-color: var(--body-bg);
}

.elementor-location-footer {
    position: sticky;
    z-index: var(--footer-layer);
    bottom: 0;
}

/* WPML */
.wpml-ls-legacy-dropdown-click {
	width: auto;
}

.wpml-ls-legacy-dropdown-click a {
	border-color: oklch(0 0 0 / 0.1);
	backdrop-filter: blur(10px) saturate(130%);
	border-radius: 0.625rem;
	
	font-size: 16px;
	width: max-content;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
	padding-right: 10px;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle::after {
	--size: 6px;
	height: var(--size);
	width: var(--size);
	border: 0;
	border-right: 1px solid;
	border-top: 1px solid;
	
	rotate: 135deg;
	transform-origin: top;
	
	position: relative;
	top: calc(var(--size) / 2);
	right: auto;
	
	margin-left: .5rem;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
	overflow-y: clip;
	height: 0;
	opacity: 0;
	
	transition: height 400ms ease-out, opacity 400ms ease-out;
	
	border: 0;
	left: auto;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu[style="visibility: visible;"] {
	height: auto;
	opacity: 1;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item {
	border-top: 4px solid transparent;
}

/* Loader Core */
#app-loader {
    position: fixed;
    z-index: var(--loader-layer);

    height: 100%;
    width: 100%;
    background-color: var(--loader-bg);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--inOut--super-slow);
}

body.PAGE-IS--LOADED #app-loader {
    opacity: 0;
    pointer-events: none;
}

/* Loader Animation */
#app-loader {
    --initial-opacity: 10%;
}

.app-loader__image-bg {
    opacity: var(--initial-opacity);
    position: absolute;
}

.app-loader__image-filler {
    animation: clipRight 1600ms infinite var(--ease-out);
}

@keyframes clipRight {
    0% {
        opacity: var(--initial-opacity);
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }
    50% {
        opacity: 100%;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    100% {
        opacity: var(--initial-opacity);
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }
}

/* CMPLZ */
:root {
	 --cmplz_spacing: var(--spacing);
	 --cmplz_border-radius: .375rem;
	 --cmplz_font-size: 12px;
	 --cmplz_line-height: 1.8;
	 --cmplz_border-color: oklch(0 0 0 / 0.2);
	 --cmplz_light-color: #FFF;
	 --cmplz_dark-color: #606C38;
}
 .cmplz-cookiebanner {
	 border: 1px solid var(--cmplz_border-color) !important;
	 border-radius: var(--cmplz_border-radius) !important;
	 padding: var(--cmplz_spacing) !important;
	 font-size: var(--cmplz_font-size) !important;
	 line-height: var(--cmplz_line-height) !important;
}
 @media (prefers-reduced-transparency: no-preference) {
	 .cmplz-cookiebanner {
		 background: oklch(1 0 0 / 0.9) !important;
		 backdrop-filter: blur(12px) saturate(150%);
	}
}
 @media (min-width: 769px) {
	 .cmplz-cookiebanner {
		 bottom: var(--cmplz_spacing) !important;
		 right: var(--cmplz_spacing) !important;
	}
}
 .cmplz-header, .cmplz-divider-header {
	 display: none !important;
}
.cmplz-message {
    font-size: var(--cmplz_font-size) !important;
    line-height: var(--cmplz_line-height) !important;
}
 .cmplz-categories {
	 margin-top: var(--cmplz_spacing) !important;
}
 .cmplz-category {
	 border: 1px solid var(--cmplz_border-color) !important;
	 border-radius: var(--cmplz_border-radius) !important;
	 background-color: var(--cmplz_light-color) !important;
}
 .cmplz-category-title {
	 font-size: var(--cmplz_font-size) !important;
}
 .cmplz-category[open] .cmplz-icon.cmplz-open {
	 transform: rotate3d(1, 0, 0, -180deg) !important;
}
 .cmplz-description {
	 border-top: 1px solid var(--cmplz_border-color) !important;
	 font-size: var(--cmplz_font-size) !important;
}
 .cmplz-always-active {
	 color: inherit !important;
	 text-decoration: underline !important;
	 font-size: var(--cmplz_font-size) !important;
}
 .cmplz-open {
	 display: flex;
	 fill: var(--cmplz_border-color);
	 width: 0.625rem !important;
}
 .cmplz-label::before {
	 border: 1px solid var(--cmplz_border-color) !important;
}
 .cmplz-label::after {
	 background-color: var(--cmplz_border-color) !important;
}
 .cmplz-consent-checkbox:focus + .cmplz-label::before {
	 box-shadow: unset !important;
}
 .cmplz-consent-checkbox:checked + .cmplz-label::before {
	 background-color: var(--cmplz_dark-color) !important;
}
 .cmplz-consent-checkbox:checked + .cmplz-label::after {
	 background-color: var(--cmplz_light-color) !important;
}
 .cmplz-btn {
	 border-radius: var(--cmplz_border-radius) !important;
	 font-size: var(--cmplz_font-size) !important;
}
 .cmplz-accept {
	 background-color: var(--cmplz_dark-color) !important;
	 border-color: var(--cmplz_dark-color) !important;
}
 .cmplz-save-preferences {
	 background-color: var(--cmplz_light-color) !important;
	 border-color: var(--cmplz_border-color) !important;
}
.cmplz-documents {
    margin-top: calc(var(--cmplz_spacing) / 2);
}
 .cmplz-link {
	 color: var(--cmplz_dark-color) !important;
	 font-size: var(--cmplz_font-size) !important;
}