.detail_product_popup{
    display:block;
    position: fixed;
    z-index: 940;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 46px rgba(0,0,0,.12), 0 7px 15px rgba(0,0,0,.12);
    padding: 20px 0;
    transition: transform .5s ease;
    transform: translateY(calc(-100% - 76px));
}
.detail_product_popup_in{
    transform: translateY(0);
    top: 0;
}

@media (max-width: 855px) {
.detail_product_popup{
    display:none;
}
}
.frame_product_popup{
    width: 100%;
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1456px;
}
.body_product_popup{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.info_product_popup{
    flex-grow: 1;
    min-width: 0;
}
.img_product_popup{
    width: 60px;
    height: 60px;
    margin-right: 12px;
    -o-object-fit: contain;
    object-fit: contain;
}
.title_product_popup{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 16px;
    position: relative;
}
.description_product_popup{
    margin-top: 9px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.offer_product_popup{
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
}
.price_product_popup{
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    padding: 0 16px;
}