/* (screen width < 768px) */
@media (max-width: 767px) {
	
	.dropdown-toggle::after {
    top: 8px;
    position: relative;
    left: 10px;
    font-size: 30px;
}
	
	.menu-pc {
    display: none;
}
	
	#burger {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

#burger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animation vers X */
#burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#burger.open span:nth-child(2) {
  opacity: 0;
}

#burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

	#mobile-menu--wrapper {
		display: none; /* Initially hidden */
	}
	
	.region.region-menuprincipal {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    padding: 2.975rem .875rem;
    z-index: 99999;
	}
	
	#mobile-menu--wrapper .region.region-menuprincipal .nav-link {
    text-transform: uppercase;
    color: #0c5286;
    font-weight: 600;
    font-size: 1.275rem;
    outline: none !important;
    appearance: none !important;
	}
	
	#mobile-menu--wrapper .dropdown-menu.show {
    position: relative !important;
    border: 0 !important;
    border-left: 1px solid #0c5286 !important;
    border-radius: 0 !important;
    transform: none !important;
	}
	
	#mobile-menu--wrapper .dropdown-menu.show .dropdown-item {
    color: #0c5286;
    opacity: .8;
	}

  
}
