.multi-language{
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 9999;
}
.multi-language li, .selected span{
    display: inline-block;
    font-size: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 15px rgba(136, 136, 136, 0.28);
    cursor: pointer;
}

.multi-language li img, .selected img{
    width: 40px;
    padding: 17px 0;
}
.drop-down{
    text-align: right;
}
.drop-down .option{
    position:relative; 
}

.drop-down .options ul{ 
    display: none;
    list-style:none; 
    padding:0; 
    position: relative;
    right: 0; 
    top: 0; 
    width:auto;
    transition: all .3s ease-out; 
}

.options li{
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 5px;
}

.options li:hover, .selected span:hover{
    transform: scale(1.1);
    transition: all .3s;
}