*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/*Désactive la div edit elementor*/
.elementor-document-handle{
  display: none!important;
}

.elementor-element-edit-mode #loading-cover{
  display: none;
}

#Aurore-menu p {
 pointer-events: none;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #Aurore-menu-button{
    display: none;
  };
}


/* loading screen */


/*#loading-cover{

  position: fixed;
  height: 100vh;
  width: 100vw;
  background: rgb(255, 255, 255);
  top:0;
  z-index: 100;
  left: 0;
  transition: all 0.8s ease;
}

#loading-overlay {
  top: 0;
  left: 0;
  position: fixed;
  transform-origin: 12px 12px;
  width: 24px;
  height: 24px;
  background: rgb(255, 255, 255);
  z-index: 1000;
  border-radius: 50%;
  scale: 0;
  transition: scale 0.5s ease-out;
  pointer-events: none;
}*/

/* custom-styles.css */

/*
.CMP-siblings-container {
    display: flex;
    flex-wrap: wrap;
    gap:1rem;
}
.CMP-item-container{
    display: flex;
    flex-direction: column;
    background-color: var(--e-global-color-primary);
  max-width: 250px;
    flex: 1;
}
.CMP-maillage-image{
    background: grey;
    width: 100%;
    aspect-ratio:1.3/1;
}
.CMP-maillage-text{
    padding: 1rem;
    width: 100%;
    color: white;
    text-decoration: none;
    font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
}

*/
/* HEADER */

#navbar{

}

.Aurore-header {
  width: 100%;
  height: 5rem;
  background: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  animation: growShrink 1s ease-in-out;
}

@keyframes growShrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#logo-header{
  scale: 1.2;
  transition: all 0.5s ease;
}
.logged-in .Aurore-header{
  margin-top: 32px;
}
.Aurore-header{
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  padding: 0.25rem 1rem;
}
.Aurore-header.Aurore-has-white-bg{
  background: white;
  background-image: none;
}
.Aurore-header.Aurore-hasnt-white-bg{
  background: rgb(20 44 82 / 59%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
}
.Aurore-header svg{
  /*scale: 0.75;*/
}
.Aurore-has-white-bg #a913d{
  stroke: var(--e-global-color-primary);
}

#a913d{
  stroke: white;
}

/* PROFILING */

#Aurore-profiling{
  position: fixed;
  width: 142px;
  right: 0;
  top: 152px;
  z-index: 10;
  font-size: 12px;
}
#Aurore-profiling-header{
  position: relative;
  background: #F12870;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
#Aurore-profiling span{
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
#Aurore-profiling:hover span.material-symbols-outlined{
transform: rotate(180deg);
}

#Aurore-profiling-content{
  z-index: 9;
  position: absolute;
  max-height: 0;
  
  background: white;
  top: 100%;
left: 0;
display: flex;
flex-direction: column;
overflow: hidden;
transition: all 0.5s ease-in-out;
}
#Aurore-profiling:hover #Aurore-profiling-content{
  max-height: 250px;
}
#Aurore-profiling-content span{
  padding: 0.5rem 1rem;
}

@media screen and (max-width: 1024px){
  #Aurore-profiling{
    display: none;
  }
}
  
