.site-menuburger-wrapper{
	text-align: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.site-menuburger-close,
.site-menuburger-open{
	cursor:pointer;
	font-size: 35px;
    color: #fff;
}
.site-menuburger-open .fa.fa-bars{
    margin: 0;
}
.site-menuburger-close{
	color:#444;
  text-align: right;
}
.site-aside{
	position:fixed;
	right:0;
	top:0;
	width:300px;
	height:100%;
    overflow-y: scroll;
	background-color: #fff;
    z-index: 20;
    padding : 20px;
}
.site-aside li{
    margin-bottom: 20px;
}
.site-aside i{
    display: inline-block;
    width: 100%;
}
.aside-menu a {
    text-align: center;
    color: #444;
		transition: all ease 0.2s;
}
.site-aside a:hover,
.site-aside .current-menu-item > a,
.site-aside li.is-scrollspy-active a{
    color: #f1911f;
		text-decoration: none;
}
.site-aside:not(.site-menuburger-show){
	display:none;
}

.aside-menu .menu{
    padding-top: 25px;
}

.aside-menu .sub-menu{
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
	body .menu-wrapper .menu{
		display:none;
	}
}
@media only screen and (min-width: 769px) {
	.site-menuburger-wrapper{
		display:none;
	}
}

/*@patch 09/02/2024*/
#menu-mobile-portails{
	display: flex;
	margin: 15px 0 20px;
}
#menu-mobile-portails li{
	flex: 1;
	border-color: #444;
	border-style: solid;
	border-width: 1px 1px 1px 0;
}
#menu-mobile-portails li:first-of-type{
	border-width: 1px 1px 1px 1px;
}
#menu-mobile-portails i,
#menu-mobile-portails img{
	display: block;
	margin: 0 auto 10px;
}
#menu-mobile-portails i{
	font-size: 37px;
}
#menu-mobile-portails a{
	text-align: center;
	height: 100%;
	width: 100%;
	padding: 5px;
	font-size: 14px;
	font-family: 'Kalam', cursive;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 14px;
	transition: all ease 0.2s;
}
#menu-mobile-portails a:hover{
	text-decoration: none;
	background-color: #e6ead7;
	color: #444;
}
.page-template-carnet-de-balades #menu-mobile-portails li:first-of-type{
	background-color: #e6ead7;
}
.page-template-carnet-de-balades #menu-mobile-portails li:first-of-type a{
	background-color: #e6ead7;
	color: #444;
}
.page-template-allees-de-la-nature #menu-mobile-portails li:nth-of-type(2){
	background-color: #e6ead7;
}
.page-template-allees-de-la-nature #menu-mobile-portails li:nth-of-type(2) a{
	background-color: #e6ead7;
	color: #444;
}
#menu-mobile-connexion{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e6ead7;
}
.site-aside.site-menuburger-show {
	animation-name: slideLeft;
	animation-duration: 0.5s;
	right:0;
}

.site-aside.site-menuburger-hide {
	animation-name: slideRight;
	animation-duration: 0.5s;
	right:-100%;
}
@keyframes slideLeft {
	from {
		right:-100%;
	}

	to {
		right:0;
	}
}

@keyframes slideRight {
	from {
		right: 0;
	}

	to {
		right: -100%;
	}
}
