.header--mobile {
    position: absolute;
    top: 16px;
    z-index: 500;
    width: 100%;
    display: none;
}

.header--mobile__inner {
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-nav-bar {
    max-width: 410px;
    width: 100%;
    height: 45px;
    background-color: #F3F3F3;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-nav-bar__nav-elements-wrapper--opened {
    width: 100%;
    height: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
    opacity: 0;
    pointer-events: none;
    background-color: var(--color-primary);
    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: 8px;
    pointer-events: none;
    overflow: hidden;
}

.floating-nav-bar__logo-wrapper {
    display: flex;
}

.floating-nav-bar__logo {
    height: 30px;
    z-index: 3;
}

.floating-nav-bar__left-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 49px;
    height: 100%;
    background-color: #F3F3F3;
    z-index: 2;
}

.floating-nav-bar__company-name-wrapper {
    font-size: 14px;
    padding-left: 4px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.floating-nav-bar__company-name {
    position: absolute;
    white-space: nowrap;
    color: #323C46;
}

.floating-nav-bar__three-dots {
    height: 6px;
}

.floating-nav-bar__opened-content-wrapper {
    padding-inline: 16px;
}


.floating-nav-bar__controls-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;

    img {
        height: 1.8rem;
        cursor: pointer;
    }
}

.floating-nav-bar__nav-menu {
    margin-top: 10px;
    line-height: 2;
    font-weight: 450;
    a {
        color: white;
    }
}

.floating-nav-bar__contact-button {
    margin-top: 48px;
}

@media (max-width: 806px) {
    .header--mobile {
        display: flex;
    }
}

@media (max-width: 300px) {
    .floating-nav-bar__company-name-wrapper {
        display: none;
    }
}