/* langue select */

.switch_language{
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    right: 12px;
    top: 25px;
    width: 55px;
    -webkit-box-shadow: 1px 1px 17px -2px rgba(0,0,0,0.10); 
    box-shadow: 1px 1px 17px -2px rgba(0,0,0,0.10);
    padding:2px 15px;
    border-radius: 8px;
    height: 41px;
    overflow: hidden;
    transition: 0.6s;
}

.expanded{
    height: 280px;
    transition: 0.6s;
    background-color: white;
}

.expanded_fr_en{
    height: 140px;
    transition: 0.6s;
    background-color: white;
}

#lang_arrow_down{
    transition: 0.4s;
}

#league_arrow_down{
    transition: 0.4s;
}

.flip90{
    transform: rotate(180deg);
    transition: 0.4s;
}
.selected_language{
    justify-content: space-between;
}

.separated{
    border-bottom: solid #DFE0EB 1px;
}

.flag{
    font-size: 30px;
}

.loader {
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #000000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
.background_loader{
    background-color: rgba(255, 255, 255, 0.326);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
} 


#would_you_be_ambassador{
    margin-bottom: 0;
}

.tooltips_section{
    position: relative;
}

.tooltips_content{
    display: none;
    margin: 0;
    width: 180px;
    right : 9px;
    bottom: 24px;
    position: absolute;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0px 0px 3px lightgray;
    padding: 16px 16px 12px 12px;
    font-size: 11px;
    font-weight: 400;
}

.tooltips_icon{
    width: 19px;
    height: 18px;
    margin: 0 0 -4px 8px;
    cursor: pointer;
}

.responsive_center{
    right : -91px
}

.tooltips_icon:hover + .tooltips_content{
    display: flex;
}

