        .cart-container {
            margin: auto;
            background: white;
            border-radius: 5px;
        }
        .cart-header{
            height: 30px;
            display: block;
            border-bottom: 1px solid #ddd;
        }
        .cart-item, .cart-total {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        .cart-item img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            float: left;
        }
        .cart-item {
            height: 75px;
            display: block;
            align-items: center;
            margin-bottom: 10px;
        }
        .item-info {
            display: block;
            width: 45%;
            float: left;
            height: 50px;            
        }
        .item-info img{
            height: 45px;
            width: 15%;
            display: block;
            float: left;
        }
        .item-span{
            height: 50px;
            width: 80%;
            display: block;
            float: left;
            margin-top: 2px;
        }

        .item-price2, .item-subtotal {
            font-weight: bold;
            display: block;
            width: 15%;
            float: left;
            height: 50px;
            
        }
        .quantity-control {
            display: block;
            align-items: center;
            width: 20%;
            float: left;
            height: 50px;
            
        }
        .quantity-control button, .quantity-control .adj  {
            background: #ddd;
            border: none;
            cursor: pointer;
            width: 15px;
            height: 30px;
            margin: 0;
            padding: 0;
            margin-top: 5%;
        }
        .quantity-control input {
            width: 25px;
            height: 30px;
            text-align: center;
            border: 1px solid #ccc;
            margin: 0;
            padding: 0;
        }
        
        .shipping-options{
            margin-top: 10px;;
        }
        .shipping-options p {
            display: inline-block;
            margin: 10px 0;
            padding-bottom: 10px;
            font-size: 10px;
        }
        .shipping-options input {
            width: 15px;
            display: inline-block;
            height: 10px;
        }
        .checkout-button {
            display: block;
            background: #d56b4a;
            color: white;
            padding: 10px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            width: 100%;
            height: 40px;
        }
        .checkout-button2 {
            display: block;
            border: #c1c1c1 1px solid;
            background: #C9A963;
            color: white;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            width: 45%;
            height: 30px;
            float: left;
            margin-right: 10px;
            line-height: 30px;
        }
        .checkout-button2:hover{
            color: white;
            background-color: #E0C98A;
        }
        .checkout-button3 {
            display: block;
            border: #c1c1c1 1px solid;
            background: #C9A963;
            color: white;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            width: 25%;
            height: 30px;
            float: left;
            line-height: 30px;
            margin-bottom: 10px;
        }
        .checkout-button3:hover{
            color: white;
            background-color: #E0C98A;
        }
        .checkout-button4 {
            display: block;
            color: white;
            border: #c1c1c1 1px solid;
            background-color: #C9A963;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            margin-bottom: 15px;
            width: 100%;
            height: 40px;
            float: left;
            margin-right: 10px;
            line-height: 40px;
        }
        .checkout-button4:hover{
            color: white;
            background-color: #E0C98A;
        }
        .out-button1{
            display: block;
            float: left;
            height: 50px;
            width: 5%;
        }
        .out-button1 button{
            border-radius: 50%;
            border: 1px solid #ccc;
            margin-top:10px ;
            color: #ccc;
        }
        .out-button1 button:hover{
            border: 1px solid #333;
            color: #333;
        }
