#fixed-buttons{
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 70px;
    z-index: 100;
}

#fixed-buttons > div{
    width: 100%;
    text-align: center;
}

.fixed-button{
    display: block;
    width: 100%;
    height: 60px;
    cursor: pointer;
}

#translate{
    color: #9747ff;
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin: 0 auto;
    transition: all .3s;
    text-transform: uppercase;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.fixed-button:hover #translate{
    transform: scale(1.3);
}

.fixed-button img{
    transition: .3s all;
    filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(5641%) hue-rotate(249deg) brightness(100%) contrast(104%)
    drop-shadow(1px 1px 0 white)
    drop-shadow(-1px 1px 0 white)
    drop-shadow(1px -1px 0 white)
    drop-shadow(-1px -1px 0 white);
}

.fixed-button:hover img{
    transform: scale(1.3);
}