

body{
    margin-top: 57px;
    word-wrap: break-word;
}


.navbar{
    height: 57px;
    width: 100%;
    position: fixed;
    top: 0;
    max-height: 64px;
}
.row {
    width: 100%;
}

.navbar-brand img {
    max-height: 25px;
}

#order-container {
    position: fixed;
    top: 64px;
    right: -100%;
    min-height: 80vh;

    background-color: white;

    transition: right 0.2s linear;

    .header {
        border-bottom: black 2px double;
    }
    
    #order-load{
        max-height: 80vh;
        overflow-y: scroll;
    }
    .item {
        border-bottom: #a9a9a9 1px solid;
    }

    #finalPrice{
        border-top: 2px black double;
    }
}

#order-container.show {
    right: 0;

}

#shop-container{
    .item{
        border-radius: 10px;
    }
}


/* 
Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    #showOrderBtn{
        display: none;
    }
    #order-container {
        position: static;
        right: 0;
    }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}