.container-outer {
    width: 830px;
    margin: 10px auto;
}
.container-inner-left {
    display: inline-block;
    position: relative;
    
    width: auto;
    height: auto;
}

/* .container-center-message {
    display: inline-block;
    position: relative;

    text-align: center;
    
    width: 400px;
    height: 70px;

    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background: whitesmoke;
} */

.listitems-cartitems-message{
    margin: 5px auto;
    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background-color: whitesmoke;
    width: 400px;
    height:50px;
    padding: 20px;
    line-height: 30px;
    position: relative;
    display: block;
    text-align: center;
}


.container-inner-right {
    position: absolute;
    display: inline-block;
    margin-left:10px ;
    padding: 20px;

    width: 150px;  
    height: 300px;  

    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background: whitesmoke;
}


/* .subtitle-container {
    position: absolute;
    margin-left: 20px;
    margin-top: 12px;
} */

 .list-cart {
    margin: 0;
    list-style-type: none;
    width:670px;
}


 .listitems-cartitems {
    margin: 0;
    margin-right: 10px;
    margin-bottom: 20px;
    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background-color: whitesmoke;
    width: 630px;
    height:150px;
    padding: 20px;
    position: relative;
    display: inline-block;
}

.listitems-cartitems table {
    position: relative;
    display: inline-block;
    table-layout: auto;
    width: 525px;  
    overflow: hidden;
}

table tr {
    height: 25px;
}
table td {
    width: 200px;
    margin: 5px 10px;
}

.cartitem-title {
    font-weight: bold;
    font-size: 18px;
    margin: 0,0,10px,0;

}

.checkout-element {
    display: absolute;
    margin: 10px;
    left:10px;
    
}

.submit-checkout {
    width: 45px;
    height: 25px;
    margin-top: 25px;
    /* padding: 12px 20px; */
    /* margin: 20px 20px; */
    /* box-sizing: border-box;
    border: 2px solid slateblue; */
    border-color: darkorange;
    border-style: solid;
    border-width: 2px;
    background-color: orangered;
    border-radius: 4px;
  
  }

  /* input[type=submit] {
    width: 100%;
    height: 25px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 4px;
  
  } */
  input[type=submit]:hover {
    border-color: black;
  }

  /* .input-important {
    width: 100%;
    height: 25px;
    margin-top: 15px;
    border-color: darkorange;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    background-color: orangered;
  } */
  .cart-display-none {
    display: none;    
}
.cartitem-img {
    position: relative;
    vertical-align: top;
    display: inline-block;
    background-color:transparent;
    height:90px;
    width:90px;
    margin-right:10px;
}

.img {
    position: absolute;
    max-width:100%;
    max-height:100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    background-color: transparent;
}

.price {
    text-align: right;
}

.subtotal {
    vertical-align: bottom;
    text-align: right;
    font-weight: bold;
}

.details-popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    text-align: center;

    padding: 20px;
    padding-top: 30px;

    border-style: outset;
    border-color: darkgreen;
    border-radius: 5px;
    border-width: 2px;

    background-color: whitesmoke;

    height: auto;
    width: auto;

    overflow: auto;

    z-index: 100;
}
.details-popup-box input {
    width: 100px;
}

.details-popup-inner-container {
    text-align: left;
    margin: 20px;
}

.text-area {
    width: 90%;
}
