#hdt_bonusproductincart_popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#hdt_bonusproductincart_popup .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

#hdt_bonusproductincart_popup .modal {
    background-color: #FFF;
    position: relative;
    z-index: 20;
    padding: 20px;
}

#hdt_bonusproductincart_popup .modal .top {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

#hdt_bonusproductincart_popup .modal .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#hdt_bonusproductincart form.product-item-photo{
    cursor: pointer;
    position: relative;
}

#hdt_bonusproductincart form.product-item-photo .add_cart{
    position: absolute;
    transition: 0.7s all ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    font-size: 50px;
    background-color: rgba(0,0,0,0.4);
    color: white;
    opacity: 0;
}

#hdt_bonusproductincart form.product-item-photo:hover .add_cart{
    opacity: 1;
}

#hdt_bonusproductincart form.product-item-photo .product-image-container{
    width: 100% !important;
}