
/*******************************************/
/*
    GESTION FRAME MODULE RESA table
*/
/*******************************************/

#module-reservation-container-table {
    width: calc(100% - 100px);
    height: 100vh;
    position: fixed;
    top:0;
    z-index: 49;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#module-reservation-container-table .iframeContainerTable {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iframeContainerTable img {
    position: absolute;
    z-index: 1;
    margin: auto;
}

#module-reservation-container-table .iframeContainerTable .iframe-reservationTable {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

#module-reservation-container-table .btn-reservation-close-Table {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    border-radius: 50%;
    border: solid 2px #fff;
    position: absolute;
    top: -25px;
    right: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin: 0;
    transition: 0.3s;
    cursor: pointer;
}
#module-reservation-container-table .btn-reservation-close-Table:hover {
    background: #AF4034;
    transition: 0.3s;
}

#module-reservation-container-table .lightbox-Table {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    #module-reservation-container-table {
        margin-top: 55px;
        width: 100%;
    }
    #module-reservation-container-table .btn-reservation-close-Table {
        width: 30px;
        height: 30px;
        top: -15px;
        right: -15px;
    }
}
/* FIN MODULE RESA */