/* The side navigation menu */
#aside{
  display: flex;
  align-items: center;
  position: fixed;
  right: 0;
  top: 60%;
  z-index: 999999;
  margin-right: -280px;
  transition: 0.5s;
}

#aside.active{
  margin-right: 0px;
  transition: 0.5s;
}

#aside .teste{
  display: flex;
  justify-content: center;
  align-items: center;
}

#aside .botao{
  width: 35px;
  height: 35px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  box-shadow: -2px 3px 4px 3px rgb(52 52 52 / 15%);
  margin-top: -15px;
}

#aside .botao i{
  color: var(--main-azul);
  transform: rotate(90deg);
  transition: 0.5s;
}

#aside.active .botao i{
  transition: 0.5s;
  transform: rotate(-90deg);
}

#aside .btn-lateral{
  background: var(--main-azul);
  font-size: 21px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: rotate(-90deg);
  margin-right: -57px;
  padding-left: 20px;
  padding-right: 26px;;
}

#aside .btn-lateral .ltexto{
  color: #fff;
  margin-top: 5px;
  margin-bottom: 5px;
}

#aside .link{
  text-decoration: none;
}

#aside .box{
  padding: 10px 20px;
  width: 280px;
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */  
  background: #fff;   
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
}

#aside .box .item{
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

#aside .box .item .icon{
  min-width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;

}

#aside .box .item .leg{
  margin-left: 20px;
  color: #002762;
  font-weight: bold;
  font-size: 21px;
  line-height: 22px;
}

@media(max-width: 992px){
  #aside{
    display: none;
    visibility: none;
  }
}



