.header {
    background-color: rgb(250, 250, 250);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 1;
    box-shadow: 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 2px, rgb(0 0 0 / 5%) 0px 0px 0px 1px;
}

.headerContent {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    min-height: 64px;
    padding-left: 24px;
    padding-right: 24px;
}

.headerSpacer {
    flex-grow: 1;
}

.headerImg {
    height: 40px;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    border: none;
    cursor: pointer;
    background-color: rgb(250, 250, 250);
}

.dropdown:hover .dropbtn {
    background-color: whitesmoke;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    right: 30px;
    top: 45px;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: flex;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.flagIcon {
    width: 20px;
}

.menuItemIcon {
    width: 20px;
    margin-right: 16px;
    vertical-align: middle;
}

.menuItem {
    list-style-type: none;
}

.menuItem>a>span {
    color: rgb(31, 33, 37) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.15px !important;
    line-height: 22px !important;
}