.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: 80%;
    width: 80%;

    overflow: auto;

    z-index: 100;
}

.popup-box-small {
    height: 40%;
    width: 30%;
}

.popup-box h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.popup-box p {
    color: whitesmoke;
}

.popup-box form {
    position: absolute;
    bottom: 15px;
    display: block;
    left: 50%;
    -webkit-transform: translate(-50%, -0);
    transform: translate(-50%, 0);;
}

.popup-display-none {
    display: none;
}
.list-container-popup {
    display: block;
    position: relative;
    background: honeydew;
    padding: 10px;
    height: 620px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow-x: hidden;
    overflow-y: scroll;

    border-style: outset;
    border-color: darkgreen;
    border-radius: 5px;
    border-width: 1px;
}

.list-container-popup-small {
    height: 250px;
}

.list-popup {
    position: absolute;
    width: 95%;
    list-style-type: none;
    background: transparent;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.listitems-popup {
    margin-bottom: 10px;
    border-style: groove;
    border-radius: 5px;
    border-color: darkgreen;
    border-width: 1px;
    background: whitesmoke;
    height:auto;
    padding: 10px;
    position: relative;
    display: block;
    text-align: left;
}

.listitems-popup table {
    position: relative;
    display: inline-block;
    table-layout: auto;
    width: 75%;  
    min-width: 600px;
    overflow: hidden;
}

.listitems-popup table th,  .listitems-popup table td {
    /* border: 1px solid black;  */
    margin: 5px 10px;
} 

/* .listitems-popup table tr {
    display: block;
} */


.text-group-popup {
    text-align: center;
    margin: 10px auto;
}

.text-popup {
    text-align: left;
    margin: 20px;
}

.orderitem-img {
    position: relative;
    display: inline-block;
    color: violet;
    background-color:transparent;
    height:150px;
    width: 20%;
    margin-right: 10px;
}

.img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    background-color: transparent;
}
