
.aside {
width: 90%;
  position: absolute;
  top: 0;
  right: 0;
display:none;
background-color:#fff;
padding:0 1rem;
height:100%;
  z-index: 2000;
  width: 0px;
  min-width: 0px;
  /*transition: 0.1s width ease, 0.1s min-width ease;*/
}

.aside.in {
 
  min-width: 100%;
}

.aside-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left:0;
  z-index: 1040;
  background-color: #000;
  transition: 0.2s opacity ease;
  opacity: 0;
  display: none;
}

.aside-backdrop.in {
  display: block;
  opacity: 0.5;
}

.accordion {
	overflow:hidden
}
.accordion>div{
	text-align:center;
	background-color:#fff;
	padding:2rem 1rem;
	margin-bottom:0px;
}
