/** Header **/
.site-menuburger-wrapper {
	text-align: center;
}

.site-menuburger-close,
.site-menuburger-open {
	cursor:pointer;
	position: relative;
	z-index: 1;
}
.site-menuburger-open {
	color: #fff;
}
.site-menuburger-open{
	width: 40px;
	margin-left: auto;
}
.site-menuburger-open hr{
	border: none;
	height: 3px;
	background-color: #FC6E3A;
}
.site-menuburger-open hr:first-of-type{
	margin-top: 0;
}
.is-text-menu{
	line-height: 1em;
	display: none;
}

/** Panneau lateral **/
.site-aside {
	position:fixed;
	right:-100%;
	top:0;
	width:100%;
	height:100%;
	background-color: #fc6e3a;
  z-index: 20;
  padding : 20px;
	overflow-y: scroll;
	line-height: normal;
border:20px solid white;
}

.site-aside.site-menuburger-show {
	animation-name: slideLeft;
	animation-duration: 0.3s;
	right:0;
}
.site-aside.site-menuburger-hide {
	animation-name: slideRight;
	animation-duration: 0.5s;
	right:-100%;
}
.site-aside .close {
  position: absolute;
  right: 0;
	top: 0;
  width: 30px;
  height: 30px;
	display: flex;
  align-items: center;
  justify-content: center;
}
.site-aside .close:before, .close:after {
  position: absolute;
  content: ' ';
  height: 30px;
  width: 3px;
  background-color: var(--couleur-Blanc);
}
.site-aside .close:before {
  transform: rotate(45deg);
}
.site-aside .close:after {
  transform: rotate(-45deg);
}
.aside-menu .menu {
  padding-top: 25px;
}
.aside-menu li {
  margin-bottom: 15px;
   font-size: 2em;
  font-family: "barlow" sans-serif;
  font-weight: 500;
  color: var(--couleur-Blanc);
  text-align:center;
}
.aside-menu .sub-menu {
  margin-top: 10px;
	margin-left: 10px;
	font-size: 15px;
}
.aside-menu .sub-menu li {
	margin-bottom: 5px;
}
.aside-menu .sub-menu li:last-of-type {
	margin-bottom: 15px;
}
.aside-menu a {
  color: var(--eolis-black);
	text-decoration: none;
}
.aside-menu a:hover{
  color: var(--eolis-yellow);
}
.site-aside .menu-item-description{
	padding-left: 4px;
}


.block-burger{
position: relative;
	background: white;
  width: 100px;
padding: 30px 60px 29px 25px;
}
.block-burger:before{
	content: "\A";
  border-style: solid;
  border-width: 91.5px 25px 0px 0px;
  border-color: transparent #ffffff transparent transparent;
  position: absolute;
  left: -25px;
  top: 0;
}
@media only screen and (max-width: 768px) {
	body .menu-wrapper .menu{
		display:block;
	}
}
@media only screen and (min-width: 769px) {
	.site-menuburger-wrapper{
		display:block;
	}
}

@keyframes slideLeft {
	from {
		right:-100%;
	}

	to {
		right:0;
	}
}

@keyframes slideRight {
	from {
		right: 0;
	}

	to {
		right: -100%;
	}
}
