.container-outer {
    display: block;
    position: relative;
    width: 100%;
    padding: 5px;
    text-align: center;
    height: auto;

    margin-top: 20px;

    background-color: transparent;
}
.container-inner-left {
    display: inline-block;
    position: relative;
    width: 15%;
    height: 400px;
    min-width: 200px;
    text-align: left;
    vertical-align: top;

    padding-top:10px;
    padding-left: 10px;

    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;

    background-color: seagreen;
}

.container-inner-right {
    display: inline-block;
    position: relative;
    width: 80%;
    height: auto;
    min-width: 500px;

    /* padding-right: 20px; */

    text-align: left;
    vertical-align: top;

    background-color: sandybrown;
}
/* .list-container {
    display: block;
    position: relative;
    width: 100%;

    background-color: darkgoldenrod;
} */

.list-orders {
    list-style-type: none;
    background-color: grey;
    margin: auto;
    /* margin-top: 20px; */
    /* position: absolute;
    display: block; */
    /* width: 95%; */

    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
}



.listitems-orders {
    margin: 5px 10px;
    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background-color: whitesmoke;
    /* width: 100%; */
    height:80px;
    padding: 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.listitems-orders-message{
    margin: 5px auto;
    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background-color: whitesmoke;
    width: 200px;
    height:50px;
    padding: 20px;
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}


table, th, td {
     /* border: 1px solid black;  */
     margin: 5px 0;
     table-layout: fixed;
     
}



table td, th {
    margin: 5px 20px;
    padding: 0 5px;
    vertical-align: top;
}

table td {
    width: 250px;
}

table tr {
    height: 20px;
}
.order-title {
    font-weight: bold;
    font-size: 18px;
    margin: 0,0,10px,0;

}
.product-id {
    font-weight: normal;
    font-size: 12px;
}
.product-img {
    position: absolute;
}


.product-link {
    position: absolute;
    z-index: 2; 
    display:block;
    width:100%;
    height:100%;
    top: 0;
    left: 0;
}
.img {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 90%;
    max-height: 70%;
}

.visibility-hidden {
    visibility: hidden;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
  }

  .form-group  label{ 
    display: inline-block;
    width: 25%;
    vertical-align: center;
    margin-top: 5px;
  }

  .form-group-insert {
    display: inline-block;
    text-align: right;
    width: 50px;
    right: 5px;
  }
  .form-group  input[type=text], input[type=password], select , textarea { 
    display: inline-block;
    width: 70%;
    vertical-align: top;
  }

  .form-group-checkbox {
    margin-bottom: 20px;
    
  }
  .form-group-checkbox-list {
    margin-bottom: 10px;
    display: block;      
  }
  .form-group-checkbox-list input[type=checkbox] {
    display: inline-block;
    width:20px;  
  }
  .form-group-checkbox-list label {
    display: inline-block;  
    width:100px;
  }
  