.btnDash{
    position: fixed;
    top: 3rem;
    right: .2rem;
    z-index: 7;
    height: 2.7rem;
    width: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #181d22;
    border-radius: .5rem;
    padding: .4rem;
    outline:  2px solid #eee;

}


.btnDash i{
    color: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}


.dashBoard{
    position: fixed;
    top: 6rem;
    right: -100%;
    z-index: 7;
    display: flex;
    height: max-content;
    width: 2.7rem;
    overflow: hidden;
    background: #181d22;
    border-radius: .5rem;
    padding: .4rem;
    box-shadow: 0 5px 8px rgba(0,0,0, .3);
    visibility: hidden;
    opacity: 0;
    outline: 2px solid #686868;
}
.dashBoard.dash{
    right: .2rem;
    visibility: visible;
    opacity: 1;
}

.dashBoard:hover{
    width: 20rem;
}


.dashBoard .containerDash{
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.dashBoard .containerDash a{
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    color: #8b8b8b;
    font-size: 1rem;
}
.dashBoard .containerDash a:hover{
    color: #fff;
}

.dashBoard .containerDash a i{
    font-size: 1.4rem;
    background: #131720;
    height: 1.9rem;
    width: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .3rem;
    border: 1px solid #313f4b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.7);
}
.dashBoard .containerDash a span{
    padding: .2rem;
    border-radius: 5px;
    background: #131720;
    border: 1px solid #313f4b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.7);
}

.dashBoard .containerDash a span:hover{
    background: #000;
    border: 1px solid #03325e;
}



@media(max-width:1200px){
    .dashBoard{
        bottom: 0;
        top: unset;
        left: 0 !important;
        width: 100%;
        border-radius: unset;
    }
}

