/* =========================================================
   MODAL PRODUIT
   Aperçu / ajout depuis les listes catalogue
   ========================================================= */

.fclb_modal_product {
    width: calc(100% - 2rem);
    max-width: 1200px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.fclb_modal_product .modal-content {
    position: relative;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: var(--couleur-fond-bloc);
    color: var(--couleur-texte);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.fclb_modal_product .modal-body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1.5rem;
}

.fclb_modal_product_close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 20;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .9);
    background-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
    opacity: .75;
}

.fclb_modal_product_close:hover,
.fclb_modal_product_close:focus {
    opacity: 1;
}

.fclb_modal_product #contenupopupProduit {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.fclb_modal_product #contenupopupProduit > .row {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.fclb_modal_product .product-gallery,
.fclb_modal_product .product-details {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.fclb_modal_product img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TABLETTE / MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .fclb_modal_product {
        width: calc(100% - 1.5rem);
        max-width: none;
        margin: .75rem auto;
    }

    .fclb_modal_product .modal-content {
        max-height: calc(100vh - 1.5rem);
    }

    .fclb_modal_product .modal-body {
        padding: 1.25rem;
    }
}


@media (max-width: 767.98px) {

    .fclb_modal_product {
        width: calc(100% - 1rem);
        margin: .5rem auto;
    }

    .fclb_modal_product .modal-content {
        max-height: calc(100vh - 1rem);
        border-radius: 14px;
    }

    .fclb_modal_product .modal-body {
        padding: 1rem;
    }

    .fclb_modal_product_close {
        top: .5rem;
        right: .5rem;
        width: 38px;
        height: 38px;
    }
}