#modalAddToCart {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
}
#modalAddToCart #boxAddToCart {
    background-color: white;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 370px;
    z-index: 1000;
    padding: 5px;
    margin-top: 3rem;
}
#modalAddToCart #boxAddToCart #closeAddToCartButton {
    display: block;
    font-size: 25px;
    line-height: 15px;
    padding: 10px;
    background-color: black;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: white;
}
#modalAddToCart #addToCartForm {
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(/themes/dejavu_panda/assets/img/newloader.gif);
    background-position: center 25%;
    background-size: 120px;
    background-repeat: no-repeat;
}
