/*
* début style shortcode triple_entree_mercure
*/
.triple-entree-wrapper {
    display: flex;
    flex-direction: row;
    gap: 85px;
    min-height: 50vh;
    padding: 15px;
    background-color: #FEFAF6;
}
.triple-entree-item {
    width: 33.333%;
    position: relative;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.entree-item-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.entree-item-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.entree-item-content.no-logo {
    height: calc(100% - 13%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 9%;
}

.entree-item-logo{
    position: relative;
}

.entree-item-texte {
    position: relative;
    text-align: center;
}
.entree-item-texte .h3{
    color:white;
}

.entree-sub-title{
    font-size: 16px;
    font-weight: normal;
    line-height: 1em;
    color: white;
    padding-bottom: 4px;
    text-transform: uppercase;
}

.entree-item-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.entree-item-btn, .entree-texte-supp {
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
}
.entree-item-btn {
    min-width: 72px;
    height: 0;
}

.entree-texte-supp{
    max-height: 0;
    color: white;
    max-width: 500px;
}

.triple-entree-item:hover .entree-item-btn,
.triple-entree-item:hover .entree-texte-supp {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
    height: auto;

    }
.triple-entree-item:hover .entree-item-overlay {
    background: #cf967082;
}

.triple-entree-item:hover .entree-item-text-wrapper {
    border: 1px solid white;
    z-index: 1;
}

@media screen and (max-width: 1060px){
    .triple-entree-wrapper {

        flex-direction: column;
    }
    .triple-entree-item,
    .triple-entree-item:hover {
        width: 100%;
    }
    .entree-item-content,
    .entree-item-content.no-logo{

        padding: 5%;
    }
    .entree-item-text-wrapper{
        padding: 25px;
    }
    .triple-entree-wrapper{
        gap: 20px;
    }
    .entree-item-content.no-logo {
        margin: 10px;
    }


}


/*
* fin style shortcode triple_entree_mercure
*/

/*
* début style shortcode display_salle
*/

.salle-wrapper {
    display: flex
;
    flex-direction: row;
    gap: 30px;


}
.salle-wrapper.swiper-container-autoheight .swiper-slide{
    height: inherit;
}
.salle-item {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border: 1px solid;
    width: 25%;

}
.salle-item-img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 385 / 260;

}
.salle-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.salle-item-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    h3{
        padding: 0;
    }
    h3, .surface{
        font-weight: bold;
    }
}

.salle-item-dispositions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 200px;
    .nom{
        font-weight: bold;
    }
    .nom, .nombre{
        padding: 0;
    }
}

.salle-item-link{
    .btn.btn-mrcr-dijon
    {
        color:#272421;
        display: flex    ;
        align-items: center;
        gap: 20px;
        width: fit-content;
        padding-right: 20px;
        position: relative;
        font-weight: bold;
    }
    .btn.btn-mrcr-dijon:before
    {
        content: '';
        width: 0;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0;
        background: #F6EEE5;
        opacity: 1;
        z-index: -1;
        transition: all 0.4s ease-in-out;
    }
    .btn.btn-mrcr-dijon:hover::before
    {
        width: 100%;
    }

}
.button-prev-salle, .button-next-salle{
    cursor: pointer;
}
.button-prev-salle {
    background-image: url("/wp-content/uploads/icone-lien.svg");

    right: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%) rotate(-180deg) ;
    position: absolute;
    height: 40px;
    width: 40px;
    z-index: 2;
    background-repeat: no-repeat;
}
.button-next-salle{
    background-image: url("/wp-content/uploads/icone-lien.svg");
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    height: 40px;
    width: 40px;
    z-index: 2;
    background-repeat: no-repeat;
}

@media screen and (max-width: 760px){
    .button-prev-salle{
        right: 100%;
    }
    .button-next-salle{
        left: 100%;
    }
}