#left{
    position: fixed;
    left: 1vh;
    bottom: 1vh;
    width: 30px;
    padding: 0;
    margin: 0;
    z-index: 2;
    @media(min-width: 1200px){
        left:3vh;
        bottom:3vh;
        width:40px;
    }
}
#left li{
    list-style: outside none none;
    margin-top: 8px
}
#left li span{
    position: absolute;
    overflow: hidden;
    width: 0;
    white-space: nowrap;
    margin: 0;
    padding: 6px 0px 0px 10px;
    text-decoration: none;
    color:var(--gray);
    font-weight: 600;
    font-size: 20;
}
.icon_left path{
    fill: var(--gray);
    transition: fill 0.2s;
}
#left a:hover svg path{
    fill: grey;
}
#left a:hover span{
    width: auto;
    overflow: visible;
}

#right{
    position: fixed;
    z-index: 2;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 2vw 0 0;
    padding: 0;
    list-style: none;
}

.dot{
    display: flex;
    justify-content: end;
    align-items: center;
    text-decoration: none;
    color: var(--gray);
    height:1.6rem;
    font-size: 0.8rem;
}
.dot::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--gray);
    border-radius: 100%;
    margin-left: 8px;
}
.dot span{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#right:hover .dot span{
    opacity: 1;
}