.enov_language_switch_wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* height: 38px; */
    width: 38px;
    position: absolute;
    z-index: 10;
    right: 15px;
    top: -16px
}

.enov_language_selector {
    border: 2px solid #fff;
    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;
}

.enov_language_selector:hover {
    color: #1d3a65;
}

.enov_language_selector {
    color: #1d3a65;
}

.enov_language_selector > span:hover {
    color: #1d3a65;
    background-color: #fff; 
}

.active_language,
.active_language > span {
    color: #1d3a65;
    background-color: #ffffff;
    pointer-events: none;
}

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

.enov_language_switch_wrapper > div > a
{
    background-color: #fff;
    color: #1d3a65;
}

.enov_language_switch_wrapper > div:nth-child(1) > a
{
    background-color: #fff; 
}

.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;

   /* display: none !important;*/
}

.enov_language_switch_wrapper > div:nth-child(4)
{
    transform: translateY(-160px);
    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), .enov_language_switch_wrapper:hover > div:nth-child(4)
{
    transform: translateY(0);
    opacity: 1;
} 


.enov_language_switch_wrapper > div:nth-child(2):hover > a, .enov_language_switch_wrapper > div:nth-child(3):hover > a, .enov_language_switch_wrapper > div:nth-child(4):hover > a
{
    background-color: #fff;
    color: #1d3a65;
} 


/* 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_switch_wrapper > .enov_language_selector_col
{
    transform: unset;
    opacity: 1;
    margin-right: 20px
}