nav {
    height: 90px;
    width: 100%;
}
nav .nav-outer {
    background-color: #fff;
    box-shadow: 1px 1px 4px #a2a2a2;
    height: 90px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
}
nav .nav-inner {
    align-items: center;
    display: flex;
    padding: 20px 50px;
    justify-content: space-between;
}

nav .button-base.menu {
    display: none;
}

nav .nav-links-inner > a {
    color: var(--light-text-color);
    font-size: 16px;
    text-decoration: none;
    margin: 0 10px;
}
nav .nav-links-inner > a:hover {
    color: var(--ic-blue);
}

nav .button-base.login {
    background-color: #fff;
    border-color: var(--ic-blue);
    color: var(--ic-blue);
    transition: all .15s ease-in;
}
nav .button-base.login:hover {
    background-color: var(--ic-blue);
    color: #fff;
}
nav .button-base.signup {
    background-color: var(--ic-red);
    border-color: var(--ic-red);
    color: #fff;
    transition: all .15s ease-in;
}
nav .button-base.signup:hover {
    background-color: #fff;
    color: var(--ic-red);
}

@media only screen and (max-width: 700px) {
    nav .nav-inner {
        padding: 20px 20px;
    }

    nav .button-base.menu {
        background-color: #fff;
        border-color: var(--ic-blue);
        color: var(--ic-blue);
        display: block;
        font-size: 24px !important;
        transition: all .15s ease-in;
    }
    nav .button-base.menu:hover {
        background-color: var(--ic-blue);
        color: #fff;
    }

    nav .nav-links {
        display: none;
    }

    nav .nav-links.show-nav-links {
        display: initial;
    }

    nav .nav-links.show-nav-links .nav-links-outer {
        position: fixed;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 99;
    }

    nav .nav-links.show-nav-links .nav-links-inner {
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 1px 1px 4px #a2a2a2;
        display: flex !important;
        flex-direction: column;
        padding: 20px 30px;
        position: fixed;
        top: 90px;
        right: 0;
        width: 200px;
        z-index: 100;
    }

    nav .nav-links.show-nav-links .nav-links-inner > a {
        margin: 10px 0;
    }
}

@media only screen and (max-width: 450px) {
    nav .logo-box img {
        height: 35px
    }
}