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

.site-menuburger-close,
.site-menuburger-open {
	cursor:pointer;
}
.site-menuburger-open {
	width: 50px;
	margin: auto;
}
.site-menuburger-open hr{
	background-color: #000;
	border: none;
	height: 3px;
}
.site-menuburger-open hr{
	margin: 7px 0;
}
.site-menuburger-open hr:first-of-type{
	margin-top: 0;
}
.is-text-menu{
	font-weight: 500;
	line-height: 1em;
	font-size: 0.75em;
}

/** Panneau lateral **/
.site-aside {
	position:fixed;
	right:-100%;
	top:0;
	width:300px;
	height:100%;
	background-color: #fff;
  z-index: 20;
  padding : 20px;
	overflow-y: scroll;
	line-height: normal;
}
.site-menuburger-close {
  position: absolute;
  right: 15px;
	top: 15px;
  width: 55px;
  height: 55px;
	z-index: 1;
}
.site-aside .close{
	height: 100%;
	width: 100%;
}
.site-aside .close:before, .close:after {
	display: block;
  position: absolute;
  content: ' ';
	top: 0;
  left: 50%;
  height: 100%;
  transform-origin: center;
  width: 3px;
  background-color: #000;
}
.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;
}
.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: #444;
	text-decoration: none;
}
.aside-menu a:hover,{
  color: #000;
}
@media only screen and (max-width: 1100px) {
	body .menu-wrapper .menu{
		display:none;
	}
}
@media only screen and (min-width: 1101px) {
	.site-menuburger-wrapper{
		display:none;
	}
}

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

	to {
		right:0;
	}
}

@keyframes slideRight {
	from {
		right: 0;
	}

	to {
		right: -100%;
	}
}
