.navbar {
    width: 100% - 36px;
    top: 0;
    overflow: visible;
    height: 0;
    position: relative;
    position: sticky;
    z-index: 420;
}

.navbar-parent-container {
    overflow: visible;
    height: 0;
    position: absolute;
    width: 100%;
}

.navbar-container {
    justify-content: space-between;
    align-items: center;
    position: absolute;
    display: flex;
    width: 100%;
    height: 64px;
    z-index: 421;
}

.navbar-container a {
    display: flex;
    align-items: center;
}

.lightened {
    filter: invert(20%) brightness(200%) contrast(600%);
}

.navbar-logo {
    margin-left: 24px;
}

.navbar-hamburger {
    margin-right: 24px;
}

.navbar-popup {
    background-color: var(--beige);
    width: 100vw;
    height: 100vh;
    display: none;
    flex-direction: column;
    z-index: 419;
    position: sticky;
}

.navbar-popup-item:first-child {
    margin-top: 118px;
}

.navbar-popup-item {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.navbar-popup-item-bold-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red);
    color: var(--beige);
    border-radius: 4px;
    padding: 12px 32px 8px 32px;
    font-weight: 600;
    font-family: Source Sans Pro;
}

.navbar-popup-item-arrow {
    width: 10px;
    margin: 0 0 4px 16px;
}

.change-language {
    background-color: var(--beige);
    color: var(--grey);
    font-weight: bold;
    border: none;
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.navbar-popup-dropdown-arrow {
    width: 12px;
    margin-bottom: 2px;
}

.visible {
    display: flex;
}

.lock-scroll {
    overflow: hidden;
}