
/*Menu flotante*/

.sideNav-style{
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    color:white;
    font-size: 22px;
    padding:5px
  }
  
  
  .sideNavAlt {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0);
    width: 6%;
    align-items: center;
    position: absolute;
    left: 5px;
    top: 300px;
    z-index: 99;
    color:white
  }
  
  .sideNavAlt-item  {
    /*height: 100px;
    flex: 1;*/
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: rgba(141, 137, 137, 0.418);
    border-radius: 5px;
    margin:5px;
    color: transparent;
  }
  
  .sideNavAlt-item:first-child {
    border-left: none;
  }