@import '../../../variables';
@import '../../../mixins';
#navbar.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    height: 4em;
    left: 6.5em;
    padding: 0.2rem 1rem;
    padding-left: 1em !important;
    right: 0;
    z-index: 56;
    box-shadow: 0px 0px 1px -2px rgba(0, 0, 0, 0.14),
        0px 0px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
    background-color: $light-theme-bg-color;
    .navbar__left-side,
    .navbar__right-side {
        display: flex;
        align-items: center;
    }
    .chevrons {
        margin-right: .5rem;
        display: flex;

        @media screen and(max-width: 750px) {
            margin-right: 1.3em;
        }

        @media screen and (max-width: 600px) {
            display: none;
        }
    }
    .searchbar-container {
        @media screen and (max-width: 650px) {
            transition: all 0.5s;
            position: absolute;
            left: 0px;
            right: 0px;
            display: flex;
            justify-content: center;
        }
        @media screen and (min-width: 651px) {
            transform: none !important;
            opacity: 1 !important;
            pointer-events: initial !important;
        }
    }
    .logo {
        height: 3em;
        img {
            height: 75%;
        }
        a {
            height: 100%;
            display: flex;
            align-items: center;
        }
        @media screen and (min-width: 600px) {
            display: none;
        }
        margin-bottom: 0;
    }
    @media screen and(max-width: 900px) {
        left: 5.5em;
        .icons .friends {
            display: none;
        }

        .register__btn {
            display: none;
        }
    }
    @media screen and (min-width: 650px) {
        margin-right: auto;
        .search-icon {
            display: none;
        }
    }
    @include sm {
        left: 0;
        z-index: 999;
        padding: 0 0.3em;
    }
}

.player--dark {
    #navbar {
        background-color: $dark-theme-bg-color;
        border-bottom: $thin-border;
    }
}

.svg-image {
    fill: white;
}

.auth {
    .buttons {
        display: flex;
        align-items: center;
    }
}

.player--dark {
    .user {
        color: $dark-theme-text-color;
    }
}

.panel {
    min-width: 250px;
}

.lang {
    border: 1px solid black;
    padding: 0.1em 0.4em;
    border-radius: 3px;
}
