/*---------- TARIFS ----------*/
.tarifs {
    display:block;
    width:90%;
    padding: 0;
    margin: 80px auto 160px auto;
}
.tableau {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    gap:0;
}
.formule {
    background-color: #f6f3f0;
    width:100%;
    flex-grow: 1;
    padding: 80px 30px;
    text-align: center;
}
.eco {
    padding:60px;
    border-right: none;
    z-index: 1;
    position: relative;
}
.standard {
    z-index: 2;
    background-color: #f7f4f1;
    margin:20px auto;
}
.prestige {
    border:solid 10px #e5ca19;
    padding: 100px 60px !important;
    z-index: 1;
    background-color: #f8f6f4;
    position: relative;
}
.formule > .icon {
    width:100px;
    height:100px;
    opacity:.5;
    margin:10px auto;
}
@media (min-width: 1000px) {
    .tarifs {
        width:80%;
    }
    .tableau {
        flex-flow: row nowrap;
    }
    .formule {
        width:33%;
    }
    .eco {
        right: -25px;
    }
    .standard {
        margin:0;
    }
    .prestige {
        left: -25px;
    }
}
@media (min-width: 1200px) {
    .formule {
        padding: 80px 30px;
    }
}

.formule > h2 {
    text-transform: none;
    font-style: italic;
    font-size: 1.75em;
}
.formule > h2:after {
    display:none;
}

.formule > h3 {
    font-size: 1.75em;
}
/*.formule > h3:after {
        content:"";
        display:block;
        height:100px;
        width:100px;
        background: url(./icons/dog.svg) no-repeat bottom left;
        margin: 0 auto 10px auto;
        position: relative;
        bottom:0;
        opacity: .5;
}
.formule:nth-child(even) > h3:after {
    background-image: url(./icons/dog-2.svg);
}*/
.prestige > h3 {
    color: #d8c018;
    text-shadow: 0 1px 0 white;
}
.tarifs > .tableau ul li {
    margin: 0;
    padding: 15px 0;
    line-height: 1.5em;
    border-bottom: dashed  1px #d9cdc6;
}
.tarifs > .tableau ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.tarifs > .tableau ul li:before {
    display: none;
}
.tarifs > .tableau ul li.plus {
    position: relative;
    padding-bottom: 6px;
    border-bottom: none;
}
    .tarifs > .tableau ul li.plus:after {
        content: "+";
        display: block;    
        font-family: Montserrat, Arial, "sans-serif";
        font-weight: 400;
        font-size: 32px;
        color: #d8c018;
        position: relative;
        margin: 0 auto;
        bottom: -12px;
    }
