/* 
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.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
*/

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

.comments-area {
    padding: 13px 37px 22px 38px;
}

.title-comments, #reply-title {
    font-size: 1.5em;
    font-weight: bold;
}

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

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

.tagcloud .tag-cloud-link {
    font-size: 1em !important;
    padding: 10px;
    border: solid var( --e-global-color-secondary ) 2px;
    margin: 5px;
    display: inline-block;
}

.grecaptcha-badge { 
    visibility: hidden;
}

/**
 * Buttons
 **/

/* Texte centré */
.elementor-button-text {
	margin: auto;
}

/* Icône bouton */
.elementor-button-icon {
	padding: 15px;
	background-color: white;
	border-radius: 100px;
}

/* SVG */
.elementor-button:has(svg){
	padding: 5px 5px 5px 70px !important;
}
.elementor-button-content-wrapper svg {
	fill: var(--e-global-color-primary);
	width: 20px;
	transition: 100ms linear all;
}

/* Hover bouton */
.elementor-button:hover {
	transform: translateY(-5px);
}

.elementor-button:hover .elementor-button-content-wrapper svg {
	transform: rotateZ(41deg);
}

/* Variante bouton "info" */
.elementor-element.elementor-button-info .elementor-button {
	background-color: white;
}

.elementor-element.elementor-button-info .elementor-button-icon {
	background-color: var(--e-global-color-primary);
}

.elementor-element.elementor-button-info .elementor-button-content-wrapper svg {
	fill: white;
}

/* Variante bouton "success" */
.elementor-element.elementor-button-success .elementor-button {
	background-color: var(--e-global-color-primary);
	color: white;
}

.elementor-element.elementor-button-success .elementor-button-icon {
	background-color: white;
}

.elementor-element.elementor-button-success .elementor-button-content-wrapper svg {
	fill: var(--e-global-color-primary);
}

body[data-elementor-device-mode=mobile] .counter-custom, body[data-elementor-device-mode=tablet] .counter-custom {
	text-align: center;
}

/*
 * 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;
    }
}