#orchard-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: $navbar-background;
    height: $navbar-height;
    z-index: $navbar-z-index;
    color: $navbar-color;
    font-size: $navbar-font-size;
    font-family: $navbar-font-family;

    a {
        color: $white;
        font-size: $navbar-font-size;
        font-family: $navbar-font-family;
        font-weight: 200;
        text-decoration: none;

        &:hover {
            font-weight: 400;
        }

        &:hover,
        &:active,
        &:focus {
            text-decoration: none;
        }
    }

    .catalog-search-link {
        display: inline-block;
        width: 105px;
    }

    .dropdown-menu {
        background: $navbar-background;
        margin-top: 0px;
        border: none;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;

        a:hover {
            background: $navbar-background;
            display: block;
        }
    }

    .dropdown-icon {
        position: absolute;
        cursor: pointer;
    }

    .dropdown {
        min-width: 140px;
    }

    .dropdown.user {
        min-width: 0px;
        height: 70px;
    }

    .dropdown.open {
        background: $navbar-background;
    }

    .desktop-logo {
        float: left;
        padding-top: 10px;
        padding-left: 15px;

        @include lt992 {
            display: none;
        }
    }

    .mobile-logo {
        display: none;

        @include lt992 {
            display: block;
            position: absolute;
            @include centerhv();

            &.hidden {
                display: none;
            }
        }
    }

    .desktop-nav {
        float: right;
        line-height: 40px;

        @include lt992 {
            display: none;
        }

        & > ul {
            list-style: none;
            float: left;
            margin-right: 20px;

            &.user-menu {
                margin-right: -30px;
                padding-left: 0;
                margin-left: 3px;
            }

            & > li {
                display: inline-block;
                padding: 15px;

                li {
                    a {
                        padding: 10px 0;
                        margin: 0 15px;
                        border-bottom: 1px solid rgba(255, 255, 255, .1);

                        &:hover {
                            background-color: inherit;
                        }
                    }

                    &:last-child {
                        a {
                            border-bottom: none;
                        }
                    }
                }
            }
        }

        .dropdown-icon {
            top: 33px;
            left: 119px;
        }

        .search {
            float: right;
            margin-top: 20px;
            position: relative;

            label {
                cursor: pointer;
                line-height: 12px;
                right: 7px;
                position: absolute;
                top: 8px;
            }

            input {
                padding: 0 10px;
                height: 30px;
                border: 0;
                border-radius: 3px;
                background: #0d1014;
                color: #a2afbc;
                width: 215px;

                &::placeholder {
                    color: #a2afbc;
                }

                &:focus,
                &:hover,
                &:active {
                    box-shadow: 0 0 2px 2px rgba(255, 255, 255, .2);
                }
            }
        }

        .login-logout {
            float: right;
            margin-left: 35px;
            padding-right: 15px;
            padding-top: 12px;

            .btn {
                font-size: 12px;
                font-weight: 500;
            }
        }
    }

    .beta img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .mobile-nav {
        display: none;

        .dropdown-toggle {
            padding-left: 15px;
        }

        @include lt992 {
            display: block;

            .main-dropdown {
                float: left;
                padding: 15px 15px 10px 15px;

                &.hidden {
                    display: none;
                }

                & > a {
                    font-size: 1.2em;

                    & > i {
                        margin-right: 2px;
                    }
                }

                ul.submenu {
                    list-style: none;

                    a {
                        text-decoration: none;
                    }
                }

                .dropdown-icon {
                    top: 42px;
                    left: 130px;
                }
            }

            .search {
                float: right;

                img {
                    padding-top: 16px;
                    padding-right: 15px;
                    cursor: pointer;
                    left: 80%;
                    width: 35px;

                    &.active {
                        position: absolute;
                        padding-top: 18px;
                        left: 30px;
                        top: -4px;
                        color: $navbar-color;
                        z-index: 2;
                        @include transition(left, 0.4s, linear, 0s);
                    }
                }

                input {
                    position: absolute;
                    top: 7px;
                    left: 25px;
                    width: 90%;
                    border-radius: 100px;
                    border-color: $navbar-color;
                    background: rgba(0,0,0,.35);
                    color: $navbar-color;
                    padding-left: 30px;
                    opacity: 0;
                    z-index: -1;

                    &.active {
                        opacity: 1;
                        z-index: 1;
                        @include transition(opacity, 0.5s, linear, 0s);
                    }
                }
            }

            .login,
            .logout {
                cursor: pointer;
            }
        }
    }

    a.dropdown-toggle,
    a.submenu-toggle {
        cursor: pointer;
        text-decoration: none;
    }

    .account-icon {
        background: url('/img/icons_v1/icon-account.svg') center center no-repeat;
        display: inline-block;
        width: 18px;
        height: 40px;

        &:hover {
            background: url('/img/icons_v1/icon-account-hover.svg') center center no-repeat;
        }
    }

    .desktop-logo {
        .orch-logo {
            display: none;

            img {
                width: 227px;
                height: 41px;
            }
        }

        .orch-icon {
            display: inline-block;
            margin-top: 3px;
        }

        @media only screen and (min-width: 1080px)  {
            .orch-logo {
                display: inline-block;
            }

            .orch-icon {
                display: none;
            }
        }
    }
}
