#orchard-login-popup {
    #page-flash,
    #login-popup-flash {
        margin-top: $navbar-height + 25px;
        margin-left: 100px;
        margin-right: 100px;
    }
}

#orchard-login-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10;

    .close-button {
        position: absolute;
        top: 13px;
        font-size: 30px;
        right: 20px;
        cursor: pointer;
        &:after {
            content: "⨯";
            color: white;
        }
    }

    .btn-secondary {
        border-color: $button-color;
        color: $gorilla;
        font-size: 12px;
        font-weight: 500;

        &:hover {
            font-weight: 500;
        }
    }
}

.login {
    .mobile-home {
        display: none;
        margin-top: 10px;
        color: #faa633;
    }
}

@media screen and ( max-height: 300px ) {
    .login {
        #orchard-header {
            display: none;
        }
        #orchard-footer {
            display: none;
        }
        .mobile-home {
            display: inline;
        }
    }
}
