/* 
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, created by Elementor team
Author: Elementor Team
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
*/

/* Add your custom styles here */

.rank-math-breadcrumb{
    max-width: max-content;
    background-color: #F7F7F8;
    padding: 1px 10px;
    border-radius: 1px;
	color:black
}
.rank-math-breadcrumb a{
	color:black
}
.separator{
	color:black
}

/* BASE */
.skip-link {
    display: none !important;
}
.elementor-icon-wrapper{
	display:flex;
}


/*MENU*/
/* Wrapper des 4 colonnes */
.flag-columns {
  display: flex;
  align-items: flex-start;
  gap: 16px 24px;
}

/* Une colonne (max 15 items) */
.flag-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 25%;
  min-width: 0;
}

/* Élément pays (ton style) */
.flag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  background: transparent;
  transition: background .15s ease, transform .15s ease;
}

.flag-item:hover {
  background: #f6f7f9;
  transform: translateY(-1px);
}

/* Drapeau SVG/image à gauche */
.flag-img {
  width: 20px;
  object-fit: contain;
  display: block;
}

/* Libellé du pays */
.flag-label {
  font-size: 14px;
  line-height: 1.2;
  color: #111;
}

/* Mobile / tablette : colonnes empilées */
@media (max-width: 1024px) {
  .flag-columns {
    flex-direction: column;
  }
  .flag-col {
    flex: 1 1 100%;
  }
}

/**CONTENT**/
.content p{
	margin-top: 16px;
    margin-bottom: 16px
}
.content ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
}

.content ul li {
    position: relative;
    padding-left: 1.75rem;  /* espace entre la puce et le texte */
    margin-bottom: 0.5rem;
}
.content ul li::before,
.content ul li::after {
    content: "";
    position: absolute;
    top: 0.6em;                  /* centre la puce verticalement */
    transform: translateY(-50%);
    border-radius: 50%;
}

.content ul li::before {
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #002cff;
}

.content ul li::after {
    left: -2px;                  /* recentre l’anneau autour du centre */
    width: 12px;                 /* 8px + 2×1px (gap) + 2×1px (border) */
    height: 12px;
    border: 1px solid black;
}
