#shoppingcart {}

#shoppingcart #items {
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5em;
    border-radius: 24px;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0px;
    right: 0px;
}

#cart-container .max50 {
    border-radius: 50px;
}

#shoppingcart i {
    margin-right: 10px;
    font-size: 24px;
    text-align: center;
    color: #222;
}

#cartcontents {
    background: var(--backgroundColor);
    color: var(--textColor);
    position: absolute;
    top: 50px;
    right: 0px;
    width: 420px;
    display: none;
    padding: 30px;
    z-index: 1001;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3)
}

#cartcontents .max50 {
    height: 50px;
    width: 50px;
    max-width: 50px !important;
}

#body-main #cartcontents .productlist,
#cartcontents .productlist {
    padding: 0px;
}

#cartcontents .max50 {
    border-radius: 25px;
    width: 50px;
    height: 50px;
}