/* 
    på headeren:
        justify-content: space-between; 


    på logoet: 
        margin-right: auto;

*/

.language-selector {
    position: relative;
    height: 84px;
    margin-right: 110px;
    width: 110px;
}

.language-selector__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    font-size: 26px;
    height: 100%;
}

.language-selector__label {
    text-transform: uppercase;
}

/* globe */
.language-selector__btn::before {
	content: '';
    position: absolute;
    left: 10px;
    width: 18px;
    height: 18px;
    margin-top: -2px;
    background: url(/assets/img/globe.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.language-selector__btn::after {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    content: '▼';
    right: 13px;
    width: 18px;
    height: 18px;
    margin-top: -2px;
    font-size: 14px;
}

.language-selector--open .language-selector__btn::after {
    rotate: 180deg;
}


.language-selector__dropdown {
    position: absolute;
    top: 100%;
    left: 10px;
    background: #2C3944;
    color: #fff;
    width: 224px;
    border-radius: 0 0 7px 7px;
}

.language-selector__dropdown ul {
    padding: 15px 0px;
}

.language-selector__dropdown ul li {    
    cursor: pointer;
    padding: 12px 15px 12px 30px;
    font-size: 20px;
    list-style: none;
}