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

.site-menuburger-close,
.site-menuburger-open {
	cursor:pointer;
	font-size: 35px;
}

.site-menuburger-close {
	color:var(--eolis-black);
  text-align: center;
}

.site-menuburger-open {
	color:var(--eolis-black);
	padding: 3px 5px;
	border: 1px solid var(--eolis-black);
	border-radius: 10px;
}
.is-text-menu{
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
}
.site-menuburger-open hr{
	border: 1px solid var(--eolis-black);
	background-color: var(--eolis-black);
	margin-right: 0;
	margin-top: 4px;
	margin-bottom: 4px;
}

/** Panneau lateral **/
.site-aside {
	position:fixed;
	right:-100%;
	top:0;
	width:300px;
	height:100%;
	background-color: #f9f6f4;
  z-index: 20;
  padding : 20px;
	overflow-y: scroll;
	line-height: normal;
}
.site-aside .close {
  position: absolute;
  right: 10px;
	top: 15px;
  width: 45px;
  height: 45px;
	padding: 5px;
	border: 1px solid var(--eolis-black);
	border-radius: 10px;
}
.site-aside .close:before, .close:after {
  position: absolute;
  content: ' ';
  height: 34px;
  width: 1.5px;
  background-color: var(--eolis-black);
}
.site-aside .close:before {
  transform: rotate(45deg);
}
.site-aside .close:after {
  transform: rotate(-45deg);
}
.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%;
}
.aside-menu .menu {
  padding-top: 25px;
}
.aside-menu li {
  margin-bottom: 15px;
	border: 1px solid var(--eolis-black);
	border-radius: 10px;
	padding: 5px 15px;
}
.aside-menu li a{
	display: block;
}
.aside-menu .menu > li:first-of-type{
	border: none;
}
.aside-menu .menu > li:first-of-type > a{
	text-decoration: none;
}
.aside-menu .menu > li:first-of-type > a:after{
	content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path d="M1 3l4 4 4-4" stroke="black" fill="none"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.aside-rs-wrapper{
	justify-content: center;
	align-items: center;
}
.aside-rs-wrapper a{
	margin: 0 8px;
	padding: 5px 6px;
	border: 1px solid var(--eolis-black);
	border-radius: 10px;
}
.aside-rs-wrapper svg{
	height: 25px;
	vertical-align: middle;
}
.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);
}
.aside-menu a:hover{
  color: var(--eolis-black);
}
.site-aside .menu-item-description{
	padding-left: 4px;
}
@media only screen and (max-width: 1279px) {
	body .menu-wrapper .col-02{
		display:none;
	}
}
@media only screen and (min-width: 1280px) {
	.site-menuburger-wrapper{
		display:none;
	}
}

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

	to {
		right:0;
	}
}

@keyframes slideRight {
	from {
		right: 0;
	}

	to {
		right: -100%;
	}
}
