/* =========================================
   AKI FEST LANGUAGE BUTTON
========================================= */


.language-box{

    position:fixed;

    right:22px;

    bottom:25px;

    z-index:9999;

}



/* main circle button */

.lang-current{

    width:52px;

    height:52px;

    border-radius:50%;

    border:3px solid white;

    background:
    linear-gradient(
        135deg,
        #ffb6d5,
        #ff8cb7
    );

    color:white;

    font-size:14px;

    font-weight:800;

    cursor:pointer;


    box-shadow:

    0 0 0 4px #ffd6e7,

    0 8px 25px rgba(255,120,170,.45);


    transition:.3s;


}





.lang-current:hover{


    transform:
    translateY(-5px)
    scale(1.05);


}






/* language popup */

.language-options{


    display:none;


    position:absolute;


    right:0;


    bottom:65px;


    background:#fff4f9;


    border:3px solid #ffc2d6;


    border-radius:25px;


    padding:10px;


    box-shadow:

    0 10px 30px rgba(255,150,190,.35);


}






.language-options button{


    width:45px;

    height:35px;


    display:block;


    margin:5px;


    border-radius:20px;


    border:2px solid #ffd6e7;


    background:white;


    color:#ff6fa5;


    font-weight:700;


    cursor:pointer;


    transition:.25s;


}





.language-options button:hover{


    background:#ff8cb7;


    color:white;


    transform:scale(1.1);


}





.language-box.open 
.language-options{


    display:block;


}





/* mobile */

@media(max-width:850px){


    .language-box{


        right:15px;

        bottom:20px;


    }


}