/* Header */
.header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: #FFF;
}

.header__logo {
    height: 56px;
    width: 174px;
}

.header__language {
    position: relative; /* In case to position dropdown menu */
    border: 1px solid #E9E9E9;
    border-radius: 12px;
    height: 56px;
    width: 117px;
    cursor: pointer;
}

.header__language--open {
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.header__language__current {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__language__current > * {
    margin-right: 12px;
}

.header__language__current > *:last-child {
    margin-right: 0;
}

.header__language__dropdown {
    width: 117px;
    position: absolute;
    left: -1px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #E9E9E9;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 0;
    align-items: center;
    padding: 10px 0;
}

.header__language__dropdown--hidden {
    display: none;
}

.header__dropdown__languages__item, .header__dropdown__languages__item:hover {
    padding: 2.5px 10px;
    color: #000;
    text-decoration: none;
    margin-bottom: 2.5px;
}

.header__dropdown__languages__item:last-child {
    margin-bottom: 0;
}

.header__dropdown__languages__item:hover {
    background: #E9E9E9;
    border-radius: 4px;
}
