.recette {
    background-color: var(--third-normal);
    z-index: 10;
    width: 100%;
    position: fixed;
    bottom: 0px;
}
.recette p {
    font-weight: 400;
    font-size: 1.00rem;
}
.recette_dev {
    background-color: #FF6D00;
}
.recette .content {
    position: relative;
    max-width: 1200px;
    width: calc(100% - 100px);
    margin: 0px auto;
}
.recette .content p {
    margin: inherit;
    color: var(--white);
    width: 50%;
    margin: 8px 0px;
    font-weight: 400;
    font-size: 1.00rem;
}
.recette .content p:first-child {
    font-family: var(--primary-font);
}
.recette .content p:last-child {
    text-align: right;
    font-size: 0.875em;
}
.recette .content p a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

/* Overlay */
.close_bandeau {
    max-width: 20px;
    cursor: pointer;
}
.overlay_bandeau.target {
    -webkit-animation: openpopup 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    -moz-animation: openpopup 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    -o-animation: openpopup 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    animation: openpopup 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    visibility: visible;
    opacity: 1;
}
.overlay_bandeau {
    visibility: hidden;
    opacity: 0;
    z-index: 4000;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(50, 50, 50, 0.7);
}
.overlay_bandeau .maj_detail{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 500px;
    height: 100%;
    padding: 50px;
    background-color: var(--white);
    overflow: auto;
}
.overlay_bandeau .maj_detail_title {
    margin-bottom: 30px;
}
.overlay_bandeau .maj_detail_title h5 {
    margin-right: 20px;
}
.overlay_bandeau .maj_detail h6:first-of-type {
    color: var(--primary-pressed);
}
.overlay_bandeau .maj_detail h6 {
    margin-top: 40px;
    font-size: 1rem;
}
.overlay_bandeau .select_maj {
    border: 2px solid var(--second-light);
    border-radius: var(--secondary-border-radius);
    padding: 6px 10px;
    margin-top: 10px;
}
.overlay_bandeau .list_maj {
    flex-wrap: wrap;
}
.overlay_bandeau .maj {
    cursor: pointer;
    border-radius: var(--secondary-border-radius);
    width: 100%;
    padding: 5px;
}
.overlay_bandeau .maj p {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 0.875em;
}
/** Responsive **/
@media screen and (max-width: 600px) {
    .recette .content {
        display: block !important;
    }
    .recette .content p {
        width: 100%;
    }
    .recette .content p:first-child {
        margin-bottom: 5px;
    }
    .recette .content p:last-child {
        text-align: left;
        margin-top: 0px;
    }
}
@media screen and (max-width: 530px){
    .recette .content {
        width: calc(100% - 60px);
    }
    .overlay_bandeau .maj_detail {
        width: 100%;
    }
}
@media screen and (max-width: 450px) {
    .overlay_bandeau .maj_detail {
        padding: 30px;
    }
}