@media (max-width: 1199px) {

    /* smaller screen  */

    #hamburger {
        position: fixed;
        right: 20px;
        top: 25px;
        display: flex;
        background-image: url('/img/icons/hamburger_w.svg');
        background-size: contain;
        height: 30px;
        width: 30px;
        cursor: pointer;
        z-index: 1;
        opacity: 0.8;
    }

    #hamburger:hover {
        opacity: 1.0;
    }

    #hamburger_header {
        width: 100%;
        height: 60px;
        display: inline-block;
    }

    #hamburger_header .logo {
        position: fixed;
        top: 20px;
        left: 20px;
    }

    #hamburger_header .logo img {
        height: 36px;
    }

    #hamburger_header .close {
        position: fixed;
        top: 30px;
        right: 25px;
        cursor: pointer;
    }

    #hamburger_header .close img {
        height: 20px;
    }


    #hamburger_header a {
    }

    #menu {
        position: fixed;
        right: 0px;
        top: 0px;
        background-color: #fff;
        padding: 0px 10px 20px 10px;
        z-index: 2;
        width: 100%;
        transition: 0.3s all;
    }

    #menu.scrolled {
        transition: 0.3s all;
    }

    #menu.hamburger_hidden {
        display: none;
    }

    #menu .item {
        font-size: 18px;
        font-weight: 500;
        padding: 15px 10px 15px 10px;
        color: rgba(0, 0, 0, 0.8);
        cursor: pointer;
        transition: 0.3s all;
    }

    #menu .item:hover {
        color: rgba(0, 0, 0, 1.0);
        background-color: rgba(0, 0, 0, 0.1);
        transition: 0.3s all;
        border-radius: 6px;
    }

    #menu .item img {
        display: none;
    }


    #menu .make {
        color: #000;
        font-size: 18px;
        padding: 10px 12px;
        border: none;
        border-radius: 8px;
        line-height: 20px;
        display: flex;
        flex-wrap: wrap;
    }

    #menu .make_area {
        position: relative;
    }


    #menu .make_area .make_cta {
        background: linear-gradient(to right, #0074F8, #4099ff);
        backdrop-filter: blur(5px);
        border-radius: 6px;
        font-size: 20px;
        padding: 20px 12px;
        font-weight: 500;
        transition: 0.5s all;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
        cursor: default;
        width: 100%;
        margin-top: 10px;
    }

    #menu .make_area .make_cta:hover {
        background: linear-gradient(to right, #004faa, #0066da);
        color: #fff;
    }

    #menu .make_area .make_cta .icon {
        margin-left: 8px;
        margin-top: -1px;
    }

    #menu .make_area .make_cta .icon img {
        height: 6px;
    }




}


@media (min-width: 1200px) {

    /* larger screen */

    #hamburger {
        display: none;
    }

    #hamburger_header {
        display: none;
    }

    #menu {
        position: fixed;
        right: 20px;
        top: 20px;
        display: flex;
        z-index: 1;
        transition: 0.3s all;
    }

    #menu.scrolled {
        transition: 0.3s all;

    }

    #menu .item {
        backdrop-filter: blur(5px);
        border-radius: 6px;
        font-size: 14px;
        padding: 8px 12px;
        margin-left: 10px;
        font-weight: 500;
        cursor: pointer;
        transition: 0.5s all;
        border: solid 1px rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.8);
        height: 36px;
    }

    #menu .make_area {
        position: relative;
        padding-bottom: 4px;
        margin-left: 10px;
    }

    #menu .make_area .make_cta {
        background: linear-gradient(to right, #0074F8, #4099ff);
        backdrop-filter: blur(5px);
        border-radius: 6px;
        font-size: 14px;
        padding: 10px 12px;
        font-weight: 500;
        transition: 0.5s all;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
        height: 36px;
        cursor: default;
    }

    #menu .make_area .make_cta:hover {
        background: linear-gradient(to right, #004faa, #0066da);
        color: #fff;
    }

    #menu .make_area .make_cta .icon {
        margin-left: 8px;
        margin-top: -1px;
    }

    #menu .make_area .make_cta .icon img {
        height: 6px;
    }

    #menu.scrolled .item {
        color: rgba(0, 0, 0, 0.8);
        border: solid 1px rgba(0, 0, 0, 0.2);
    }


    #menu .item:hover {
        transition: 0.5s all;
        background-color: rgba(255, 255, 255, 0.3);
    }

    #menu .item.interest {
        background-color: rgba(255, 255, 255, 0.2);
        border: solid 1px rgba(0, 0, 0, 0.2);
    }

    #menu .item.interest:hover {
        background-color: rgba(255, 255, 255, 0.3);
        border: solid 1px rgba(0, 0, 0, 0.2);
    }

    #menu .item img {
        height: 15px;
    }

    #menu .item .hamburger_only {
        display: none;
    }

}


#bar {
    background-color: #fff;
    opacity: 0.0;
    z-index: 0;
    height: 100px;
    width: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    transition: 0.4s all;
    z-index: 1;
}

#bar.scrolled {
    height: 75px;
    background-color: #fff;
    opacity: 1.0;
    box-shadow: 0px 0px 8px rgba(40, 40, 40, 0.1);
    transition: 0.4s all;
}

#connected_wallet .chain img {
    margin-right: 10px;
    mix-blend-mode: exclusion;
    filter: invert(1);
}

#menu .item.hidden.flex {
    display: none;
}

#menu .item.flex {
    display: flex;
    flex-wrap: wrap;
}