/*####################### //// SHOPPING CART INFO BAR #######################*/

/*####################### THE SHOPPING CART #######################*/

.shopping_cart_holder {
    z-index: 999999;
    display: none;
    position: absolute;
    right: 0;
    left: 50%;
    margin: 0 auto;
    margin-top: 2px;
    margin-right: 50px;
    padding: 5px;
    max-width: 300px;
    border: 0px solid #dedede;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    color: #000;
    /*overflow: auto ! important;
    overflow: none;*/
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .shopping_cart_holder {
        z-index: 999999;
        display: none;
        position: absolute;
        right: 0;
        left: 50%;
        margin: 0 auto;
        margin-top: 5px;
        margin-right: 20px;
        padding: 15px;
        width: 100%;
        border: 0px solid #dedede;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        color: #000;
    }
}
.shopping_cart_holder .close_shopping_cart_holder {
    float: right;
    padding: 0px;
    border: 0px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    text-decoration: none;
}
/* Checkout button */

.shopping_cart_holder .checkoutButton {
    border-radius: 0;
    background-color: #ff5500;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
}
/* Checkout button hover */

/*####################### //// THE SHOPPING HOLDER #######################*/

/*#######################  DISPLAY ITEMS  #######################*/

.checkout_btn {
    margin-bottom: 5px;
    border-radius: 0px;
    background-color: #00b300;
    color: #fff;
}
.continue_shopping_btn {
    margin-bottom: 5px;
    border-radius: 0px;
    background-color: #ff5500;
    color: #fff;
}
/*####################### //// CHECKOUT PAGE #######################*/

/*####################### FOOTER #######################*/

.item-name {
    display: block;
    padding-top: 10px;
    font-size: 16px;
    font-weight: bold;
}
.item-price {
    color: #6394F8;
    margin-right: 8px;
    font-size: 15px;
}
.item-quantity {
    color: #ABB0BE;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.shopping-cart-items {
    padding-top: 1000px;
}
.shopping-cart-items img {
    float: left;
    margin-right: 12px;
}
tfoot {
    height: 10000000px;
}