/* Mobile First */
.cart-content {
    display: none;
    width: 100%;
    max-height: 100%;
    position: fixed;
    top: 50px;
    right: 0px;
    bottom: 0px;
    border: 1px solid #E0E0E0;
    border-top: none;
    background-color: #FFFFFF;
    z-index: 999;
}

.update-cart {
    float: right;
    margin-right: 5px;
}

.remove-from-cart {
    float: right
}

#empty-cart {
    font-weight: 700;
    text-align: center;
}

#cart-total-price-container {
    border-bottom: 1px solid #E0E0E0;
}

#total-price-text {
    font-size: 1.8rem;
    font-weight: 400;
    height: 36px;
    line-height: 36px;
}

#cart-total {
    font-weight: 700;
}

#checkout-btn {
    float:right;
}

.cart-item img {
    max-height: 150px;
}

.cart-item-title {
    font-size: 1.8rem;
}

.cart-item-cost {
    display: inline-block;
    font-weight: 500;
    height: 37px;
    line-height: 37px;
}

.cart-quantity-text {
    display: inline-block;
    height: 37px;
    line-height: 37px;
}

.quantity-input {
    width: 80px;
}

.show-menu {
    display: block;
    overflow: auto;
}

.no-padding-top {
    padding-top: 0px;
}

.separator {
    border-bottom: 1px solid #E0E0E0;
}

/* Tablet and Desktop */
@media only screen and (min-width: 768px) {
    .cart-content {
        width: 400px;
    }
}

