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


.langues-wrapper {
	position:fixed;
	right:2%;
	top:30%;
	z-index:1000;
	background-color:#D2E9F1;
	border-radius: 10px;
    padding: 10px;
	cursor:pointer;
}

.langues-wrapper:after {
	content: '';
    background: #d2e9f1;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    right: -19px;
	top: 50%;
    transform: translateY(-50%);
}

.langues-wrapper > p {
	color:#EC5627;
	font-weight:700;
	font-size:20px;
	margin:0;
    right: 10px;
    width: 100%;
    text-align: right;
    line-height: 1;
}

.langues-wrapper.active > p {
	position: absolute;
}

.langues-wrapper .open-langues-wrapper {
	transition: .5s;
	opacity:0;
	display:none;
}

.langues-wrapper.active .open-langues-wrapper {
	transition: .5s;
	opacity:1;
	display:block;
}

.langues-wrapper .open-langues-wrapper .liste-langues {
	display:flex;
	gap:5px;
}

.langues-wrapper .open-langues-wrapper .liste-langues img {
	max-width:38px;
}


@media(max-width:768px) {
	.langues-wrapper {
		display:none;
	}
}