/* MENU MOBILE */
.mobile_hidden{
    margin-left: 8px;
    font-weight: 400;
    color: initial;
} 

.mm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #F6F8FC;
    z-index: 1000;
}
.mm-open-animation {
    animation: fadeIn 400ms;
}
.mm-header {
    display: flex;
    height: 70px;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background-color: #FCF4E3;
    border-bottom: 1px solid #FAD3B1;
}
.mm-header-back-hidden {
    visibility: hidden;
}
.mm-header-icon {
    height: 40px;
    display: flex;
    align-items: center;
}
.mm-content {
    display: flex;
    padding: 36px 16px 36px 24px;
        flex-direction: column;
    align-self: stretch;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
}
.mm-content-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}
.mm-content-list-item{
    color:#282727;
    font-family: Futura;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    width: 100%;
    height: 44px;
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.mm-content-list-parent, .menu-principal{
    font-weight: 700;
}



li.mm-content-list-item a {
    width: 100%;
}

.mm .menu-separator {
    border: 0.5px solid #FAD3B1;
    pointer-events: none; /* Désactivez les interactions */
    cursor: default; /* Remettez le curseur par défaut */
    text-decoration: none;
    margin-right: 8px;
}

li:has(.menu-separator) {
    height: auto;
}

.mm span.button_menu_mobile {
    border: 1px solid #A95102;
    background-color: #EE7203 !important;
    color: #fff!important;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px 8px 8px 8px;
    padding: 12px 40px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-right: 8px;
}

.mm-content-list-item > a {
    all: unset;
}
.mm-content > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.request, .menumobile {
    border: none;
    /* margin-left: -6px; */
}
.request {
    display: flex;
    font-size: 1rem !important;
}

button.demo{
border: none;
margin-top: 20px;
    margin-bottom: -20px;
    background-color: #FFA844 !important;
}

.menumobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding: 0 !important;
}

.menuburger{
content: url('/wp-content/uploads/2023/11/burger.svg');
width: 24px;
height: 24px;
}


.animate {
    animation: fadeIn 800ms;
}

.arrow_left {
    background-image: url('/wp-content/uploads/2023/11/angle-left.svg'); /* Remplacez par le chemin de votre icône */
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 10px;
  } 


  .arrow_right  {
    background-image: url('/wp-content/uploads/2023/11/angle-right-small.svg'); /* Remplacez par le chemin de votre icône */
    display: inline-block;
    width: 44px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 10px;
  } 

  .menu_logo{
    content: url('/wp-content/uploads/2023/11/logo_icon.svg');
    width: 40px;
    height: 40px;
  }

  .close_icon{
    content: url('/wp-content/uploads/2023/11/close_menu.svg');
    width: 40px;
    height: 40px;
  }


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
 
@media(max-width: 767px) {

    .mobile_hidden{
        display: none;
    } 
} 

/* menu cursor */
.elementor-nav-menu--layout-horizontal .elementor-nav-menu a {
    cursor: default;
}
