.enov_language_switch_wrapper 
{
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 40px;
    position: relative; 
    z-index: 999;
}

.enov_language_selector {
    border: 2px solid;
    border-radius: 50px;
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Arial';
    font-weight: 700;
    margin-bottom: 15px;
    cursor: pointer;
}

.enov_language_switch_wrapper > div:nth-child(1)
{
    position: relative;
    z-index: 10;
}

.enov_language_switch_wrapper > div:nth-child(2) 
{
    transform: translateY(-53px);
    transition: all .5s;
    position: relative;
    z-index: 9;
    opacity: 0;
}

.enov_language_switch_wrapper > div:nth-child(3)
{
    transform: translateY(-106px);
    transition: all .5s;
    position: relative;
    z-index: 9;
    opacity: 0;
}


.enov_language_switch_wrapper:hover > div:nth-child(2), .enov_language_switch_wrapper:hover > div:nth-child(3)
{
    transform: translateY(0);
    opacity: 1;
} 


/* Mobile version - put parent class on shortcode widget */
.enov_switcher_mobile .enov_language_switch_wrapper
{
    width: 100%;
    position: unset;
    height: auto;
    flex-direction: row;
}
.enov_switcher_mobile .enov_language_selector
{
    margin: 0;
}
.enov_switcher_mobile .enov_language_switch_wrapper > .enov_language_selector_col
{
    transform: unset;
    opacity: 1;
    margin-right: 20px
}



/* Gestion taille */

/* Mobile small */
.enov_switcher_mobile.small .enov_language_selector
{
    height: 30px;
    width: 30px; 
    font-size: 11px;
}

/* Mobile large */
.enov_switcher_mobile.large .enov_language_selector
{
    height: 42px;
    width: 42px;
    font-size: 14px;
}

/* PC small */
.enov_language_switch.small:not(.enov_switcher_mobile) .enov_language_switch_wrapper 
{
    width: 32px;
    height: 32px;
}

.enov_language_switch.small:not(.enov_switcher_mobile) .enov_language_selector
{
    height: 30px;
    width: 30px;
    font-size: 11px;
}

/* PC large */
.enov_language_switch.large .enov_language_switch_wrapper
{
    width: 44px;
    height: 44px;
}
.enov_language_switch.large .enov_language_selector
{
    width: 44px;
    height: 44px;
    font-size: 14px;
}


@media screen and (max-width: 600px)
{
    .enov_language_switch_wrapper 
    {
        width: 32px;
        height: 32px;
    }
    .enov_language_selector
    {
        height: 30px;
        width: 30px;
        font-size: 11px;
    }
}