.new_contain_prestation{
}

.new_contain_prestation .row{
    margin-bottom: 0;
}
.new_contain_prestation .parent_title.dark_bg{
    background-color: black;
}

.new_contain_prestation .element_padding{
    padding-left: 150px;
    padding-right: 150px;
}
.new_contain_prestation.plus .element_padding{
    padding-left: 0px;
    padding-right: 0px;
}
.new_contain_prestation .parent_title{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: 60px;
    margin: 0;
    cursor: pointer;
    position: relative;
}
.new_contain_prestation .parent_title:hover{
    text-decoration: underline;
    text-decoration-color: black;
}
.new_contain_prestation .parent_title.dark_bg:hover{
    text-decoration: underline;
    text-decoration-color: white;
}
.new_contain_prestation .contain_title{
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: black;
    padding: 0;
    margin: 0;
}
.new_contain_prestation .parent_title.dark_bg .contain_title{
    color: white;
}
.new_contain_prestation .p_line_price{
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}
.new_contain_prestation .p_line_price span{
    width: 150px;
    display: inline-block;
    text-align: center;
}
.new_contain_prestation  .contain_table{
    display: block;
    height: 100%;
    overflow: hidden;
    
} 
.new_contain_prestation  .contain_table_01{
    display: block;
    height: 100%;
}
.new_contain_prestation  .contain_table.contain_sup{
    display: block;
    animation: show_contain_table 1s ease-in-out ;
    height: 100%;
    overflow: hidden;
}
.new_contain_prestation  .contain_table_01.contain_sup{
    display: block;
    animation: show_contain_table 1s ease-in-out ;
    height: 100%;
    overflow: hidden;
}
.new_contain_prestation  .contain_table_01.contain_sup_hide{
    height: 0;
    overflow: hidden;
    animation: hide_contain_table 1s ease-in-out ;
}
.new_contain_prestation  .contain_table.contain_sup_hide{
    height: 0;
    overflow: hidden;
    animation: hide_contain_table 1s ease-in-out ;
}

@keyframes show_contain_table {
    0%{
        height: 0;
        overflow: hidden;
    }
    100%{
        height: 250px;
        overflow: hidden;
    }
}
@keyframes hide_contain_table {
    0%{
        height: 250px;
        overflow: hidden;
    }
    100%{
        height: 0;
        overflow: hidden;
    }
}

.new_contain_prestation table{
    border-collapse: collapse;
    width: 100%;
    
}

.new_contain_prestation table.table_final{
    display: table;
}
.new_contain_prestation table.table_01{
    display:table;
}

.new_contain_prestation table th,
.new_contain_prestation table td{
    
    border: 1px solid transparent;
    padding: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
}
.new_contain_prestation table td a{
    font-weight: bold;
    color: black;
}
.new_contain_prestation table .center{
    text-align: center;
}
.new_contain_prestation table tr.dark_bg{
    background-color: rgb(0, 0, 0);
    color: white
}
.new_contain_prestation table tr.dark_bg td a{
    color: white
}
.new_contain_prestation table td.td_voir_plus{
    background-color: ;
    padding: 0;
    text-align: right;
    padding-right: 30px;
}
.new_contain_prestation table td.td_voir_plus button{
    margin: 0;
    font-size: 16px;
    font-style: italic;
    background-color: transparent;
    border: none;
    color: rgb(53, 134, 248);
    font-weight: bold;
}

@media only screen and (max-width:1000px){
    .new_contain_prestation .element_padding{
        padding-left: 5%;
        padding-right: 5%;
    }

}
@media only screen and (max-width:750px){
    .new_contain_prestation .element_padding{
        padding-left: 1%;
        padding-right: 1%;
    }

}

@media only screen and (max-width:500px){
    .new_contain_prestation table.table_final{
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
    }
}








