/* 
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
Author: Rémy PENET
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.3.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
*/

body, #content{
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.elementor-widget-posts .elementor-pagination{
    margin-top: 20px;
}

h2,h3,h4,h5,h6{
    font-family: var(--e-global-typography-primary-font-family);
}

.grecaptcha-badge { 
    visibility: hidden;
}

/*
 * Fix Text Display
 */
.elementor-widget-text-editor,
.elementor-widget-theme-post-content {
	:is(h2, h3) {
		padding-top: 15px;
	}
}

.elementor-widget-text-editor :is(h2, h3),
.elementor-widget-theme-post-content h2 {
	font-size: 2.3em;
	line-height: initial;
}

.elementor-widget-theme-post-content .wp-block-image {
	padding: 20px 0;
}

/*
 * Fix Slider Display
 */
.swiper-wrapper {
    display: inline-flex !important;
}


/*
 * Fix Nested tab Color
 */
.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true], .elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{
	background-color: var(--e-global-color-secondary) !important;
}

/*
 * CookieYes 
 */
.cky-btn{
    background-color : var(--e-global-color-secondary) !important;
    border-color: var(--e-global-color-secondary) !important;
	color: white !important;
}
.cky-btn.cky-btn-customize {
    background-color: white !important;
    color: var(--e-global-color-primary)!important;
}

/**
 * Button
 **/
.elementor-button-info .elementor-button{
    background-color: var(--e-global-color-e134851) !important;
    border-color : var(--e-global-color-accent) !important;
	color: var(--e-global-color-text) !important;
}

.elementor-button-info .elementor-button:hover{
    background-color: var(--e-global-color-accent) !important;
	color: var(--e-global-color-e134851) !important;
}
.elementor-button-success .elementor-button{
    background-color: var(--e-global-color-2bb2df8) !important;
    border-color : var(--e-global-color-2bb2df8) !important;
	color: var(--e-global-color-e134851) !important;
}

.elementor-button-success .elementor-button:hover{
	border-color : var(--e-global-color-accent) !important;
    background-color: var(--e-global-color-accent) !important;
	color: var(--e-global-color-e134851) !important;
}
.e-n-menu-dropdown-icon {
	box-shadow : none !important;
}


/*
 * Annimations 
 */
.fadeInRight{
    animation-name: fadeInRightCustom !important;
}
.fadeInLeft{
    animation-name: fadeInLeftCustom !important;
}
.fadeInUp{
    animation-name: fadeInUpCustom !important;
}
.fadeInDown{
    animation-name: fadeInDownCustom !important;
}
@keyframes fadeInRightCustom {
    from {
        opacity: 0;
        transform: translate3d(20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeftCustom {
    from {
        opacity: 0;
        transform: translate3d(-20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDownCustom {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}