.header--mobile {
    position: absolute;
    top: 16px;
    z-index: 500;
    width: 100%;
    display: none;
}

.header--mobile__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-nav-bar {
    max-width: 410px;
    width: 100%;
    height: 45px;
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    position: relative;
}

.floating-nav-bar__nav-elements-wrapper--opened {
    width: 100%;
    height: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
    opacity: 0;
    pointer-events: none;
    background-color: white;
}

.floating-nav-bar__nav-elements-wrapper--closed {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
    padding-left: 15px;
    pointer-events: none;
}

.floating-nav-bar__logo-wrapper {
    display: flex;
}

.floating-nav-bar__logo {
    height: 30px !important;
}

.floating-nav-bar__three-dots {
    height: 6px;
}

.floating-nav-bar__controls-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .avatar {
        border-radius: 50%;
        height: 2rem;
        width: 2rem;
    }
}

.floating-nav-bar__close-icon {
    cursor: pointer;
    height: 0.9rem;
}

.floating-nav-bar__nav-menu {
    line-height: 2;
    margin-top: 150px;
    a {
        color: black;
    }
}

@media (max-width: 806px) {
    .header--mobile {
        display: flex;
    }
}