nav{
    position: fixed;
    z-index: 100;
    width: 100%;
    transition: .25s;
}
.menu-icon{
    display: none;
}
.logo{
    display: inline-block;
    transition: .2s;
    margin-left: 100px;
}
.menu{

    display: flex;
    flex-direction: row;
    width:95%;
}
nav ul{

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    width: 70%;
    white-space: nowrap;
}
nav ul li{
    padding-top: 7px;
    padding-left:7px;
    padding-right: 7px;
    display: flex;
    flex-direction: row;
}
nav ul li a{
    background-color: transparent;
    text-decoration: none;
    color: rgb(231,231,231);
    height: 40px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}
nav ul li a:hover{
    text-decoration: none;
    background-color: transparent;
    color: rgb(196,31,31) !important;
    transform: scale(1.1);
    font-weight: bold !important;
}
#user_dropdown_menu a{
    background-color: transparent;
}
#user_dropdown_menu a:hover{
    background-color: transparent;
    color:black !important;
}
nav ul li a:focus{
    background-color: transparent;
}
ul li img{
    display: none;
}
.show_nav{
    -webkit-transform: none;
    transform: none;
    transition: transform 360ms ease-in-out;
}
.myIcons{
    display: none;
}
#cartIcon{
    display: block;
    font-size: 20px;
    width: 30px;
    color: rgb(160,160,160);
    padding-top:7px;

}
#my_search_form{
    display: inline-block;
    margin-right: 5px;
    padding-top: 5px;
}


@media (max-width: 770px){
    nav{
        position: fixed !important;
    }
    .menu{
        position: absolute;
        height: 100vh;
        width: 60%;
        top: 0;
        background: rgba(25,25,25,1);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        transition: transform 360ms ease-in-out;
        flex-direction: column;
        will-change: transform;
        filter: drop-shadow(7px 0px 8px rgb(20, 20, 20));
    }
    .myIcons{
        display: block;
        font-size: 20px;
        margin-right: 1rem;
        width: 30px;
        color: rgb(160,160,160);
        padding-top: 5px;
    }
    #cartIcon{
        display: block;
        font-size: 20px;
        margin-right: 1rem;
        width: 30px;
        color: rgb(160,160,160);
        padding-top: 5px;
        margin-left: unset;
    }
    .show_nav{
        -webkit-transform: none;
        transform: none;
        transition: transform 360ms ease-in-out;
    }

    .mydropdown{
        color: rgb(0,0,0);
    }

    .menu-icon{
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right:5%;
        color: rgb(180,30,30);
        font-size: 26px;
    }
    #menu_logo_cell{
        border-bottom: 1px solid grey;
        margin-bottom: 2rem;
        padding-bottom: 1.7rem;
        height: 80px;
        padding-left:10px !important;
    }
    .logo{
        display: block;
        margin-left: 15px;
    }
    nav ul{
        flex-direction: column;
        margin-top: 0;
        width:70%;
    }
    nav ul li{
        height: 45px;
        padding-left:15%;
    }
    nav ul li a{
        font-weight: bold;
        width: 80%;
        color: rgb(231,231,231);
    }
    nav ul li a:hover{
        transform:unset;
    }
    ul li img{
        display: block;
    }
    #my_search_form{
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-top: 20px;
        margin-right: 0;
        padding-left: 7px;

    }
}
@media (max-width: 1024px){
    nav ul{
        width: 100%;
    }
    .logo{
        margin-left: 10px;
    }
}

@media screen and (max-width: 322px) {
    #menu_logo_cell{
        margin-bottom: .7rem;
    }
    #my_search_form{
        padding-top: 0;
    }
    nav ul li a{
        font-size: 13px;
    }
}



