.navbar{    
    border-top: 1px solid black;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    color: white;
    padding: 0 1rem;
    background-color: black;
}

.navbar-nav{
    height: 100%;
    color: white;
}
.nav-item{
    transition: all 0.3s;
    padding: 0.5rem 0;    
}

.nav-icon{
    transition: all 0.3s;
    padding-top: 15px;
}

.nav-link{
    font-size: large;
    transition: all 0.3s;
}

.navbar-toggler-icon{
    border-color: white;
    background-color: white;
}

.navbar-nav:first-child{
    margin-left: auto;
}

.navbar-brand img{
    height: 3.5rem;
    width: auto;
}
.navbar-brand{
    padding: 0.5rem 0;
}

.cart-scroll{
    border: 1px solid black;
    width: 95px;
    background-color: white;
    min-height: 80px;
    position: fixed;
    right: 0px;
    text-align: center;
    padding: 10px 2px;
    color: red;
    white-space: nowrap;
    z-index: 100;
}
/* was 768 */
@media (max-width: 576px){
    .top-bar{
        display: none;
    }

    .navbar-brand img{
        display: none;
    }
    .navbar-toggler{
        margin: 3px;
    }
}


