/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/*
    Add your custom styles here
*/


/* Bandeau */

.scrolling-banner {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.scrolling-button {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 0px 12px 12px 0px;
    background: #FF4F2A;
}

.scrolling-button .icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.scrolling-button:hover .icon {
    transform: scale(1.1);
}

.scrolling-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-left: 80px; /* espace pour le bouton à gauche */
    box-sizing: border-box;
    position: relative;
}

.scrolling-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    align-items: center; /* aligne tout au milieu verticalement */
}

.scrolling-track span {
    font-family: 'Lexend', sans-serif;
	color:#000000;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 32px;
    margin-top: 0px;
    vertical-align: middle;
    line-height: 80px;
}

.scrolling-track img {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 32px;
    vertical-align: middle;
    line-height: 80px;
}

@media (max-width: 768px) {
		.scrolling-banner {
    height: 60px;
    overflow: hidden;
}

.scrolling-button {

    width: 60px;
    height: 60px;
    border-radius: 0px 10px 10px 0px;
}

.scrolling-button .icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}
	
.scrolling-track span {
    font-size: 18px;
    line-height: 60px;
}

.scrolling-track img {
    width: 20px;
    height: 20px;
    line-height: 60px;
}
	
}