﻿body {
}

#cartItems{
    max-height: 600px;
    overflow-y:scroll;
}

#ShoppingCart {
    position: absolute;
    padding: 5px;
    right: 5px;
    width: 500px;
    max-width: 100%;
    height: auto;
    background-color: white;
    border: 1px solid black;
    text-align: center;
    box-shadow: 1px 1px 5px black;
    z-index: 10;
}

@media screen and (max-width: 1080px) {
    #ShoppingCart {
        position: absolute;
        padding: 5px;
        right: 0px;
        width: 500px;
        max-width: 100%;
        height: auto;
        background-color: white;
        border: 1px solid black;
        text-align: center;
        box-shadow: 1px 1px 5px black;
        z-index: 10;
    }
    
}