#pack_product_details_window {
    display:none;
    position: absolute;
    width:max-content;
    height:max-content;
    background-color:transparent;
    z-index: 1000;
}
#product_details_wrapper {
    background-color: lightgray;
    border-radius:5px;
    width:550px;
    height: max-content;

}
#product_popup_body {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding:10px;
    background-color: white;
}

#popup_product_details_table {
    border-collapse: collapse;
    margin-left:15px;
    margin-bottom:25px;
}
#popup_product_details_table th, #popup_product_details_table td {
    padding:7px; 
    font-size:14px;
    border:1px solid lightgray;
    line-height:1.6em;
}
#popup_product_details_table th {
    text-align:left;
    border-width: 0;
    color: #1e1e1e;
}
#popup_product_details_table td {
    max-width:200px;
    min-width:150px;
    border-width: 0;
    color:#1e1e1e
}
#product_popup_header, #product_popup_footer {
    padding:10px 25px;
    background-color: rgb(0,153,230);
    text-align:right;
}
#product_popup_header {
    border-top-right-radius: 5px;
}
#product_popup_footer {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#product_popup_header #closing_sign {
    padding:10px;
    color: white;
    text-align: right;
    font-weight:bold;
    margin-top:0;
    text-decoration: none;
    font-size:20px;
}

#product_popup_header #closing_sign:hover {
    color:black;
    cursor: pointer;
}

#popup_product_image_container {
    width:12vw;
    height:25vw;
    max-width:180px;
    min-width:150px;
    max-height:180px;
    text-align:center;
}
#popup_product_image_container img {
    max-width:100%;
    max-height:100%;
    border-radius:5px;
}
#product_detail_popup_description_box {
    border:1px solid lightgray;
    padding:10px;
    width:95%;
    border-radius:3px;
    margin-top:15px;
    background-color: white;
    color: #1e1e1e;
    max-height:250px;
    overflow-y: auto;
    line-height:1.6em;
}
#product_detail_popup_description_box p, #product_detail_popup_description_box li, 
#product_detail_popup_description_box span, #product_detail_popup_description_box div {
    color: #1e1e1e;
}

#product_popup_footer #more_details {
    color:white;
    padding:10px 25px;
    border-radius:3px;
    font-weight:bold;
}
#product_popup_footer #more_details:hover {
    text-decoration: underline;
    color:goldenrod
}

@media only screen and (max-width:802px){
    #popup_product_image_container {
        width:35vw;
        height:35vw;
        max-width:150px;
        min-width:150px;
        max-height:150px;
    }
    #popup_product_details_table th, #popup_product_details_table td,#product_detail_popup_description_box {
        font-size:small;
    }
    #popup_product_details_table td{
        min-width:150px;
        max-width:200px
    }
    #product_popup_footer #more_details {
        font-size:14px;
    }
    #product_details_wrapper{
        max-width:500px;
        width:max-content;
    }
    #popup_product_details_table {
        margin-top:35px
    }
}