html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #e4eff1;
    color: #474747;
}

.content_wrapper {
    margin: auto;
    width: fit-content;
    margin-bottom: 2rem;
}

.content_wrapper.mep {
    background-color: #e2fff5;
    color: darkgreen;
    padding: 1rem 3rem;
    margin: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.content_wrapper .title {
    font-family: 'Playpen Sans';
    text-align: center;
    color: #178989;
    text-transform: uppercase;
}

.content_wrapper.mep .title {
    color: #2c7a1c;
}

.content_wrapper .content {
    display: flex;
    font-family: 'Montserrat';
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 767.98px) {
    .content_wrapper .content {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .talkbubble {
        max-width: 20rem;
    }
}

.talkbubble {
    max-width: none;
}

.svg_signature_lulu {
    /* margin-left: auto; */
    display: inline-block;
    width: fit-content;
    margin-right: 0;
    position: relative;
}

.page-header {
    background: #178989;
}

.header.content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    --container-max-width: 1480px;
}

.header.content img {
    height: 100%;
    max-height: 4rem;
    width: 100%;
}

.columns {
    font-family: 'Montserrat-regular';
    max-width: 1024px;
}

@media (max-width: 640px) {

    .content,
    .columns {
        margin: 1rem;
    }

    .talkbubble.shadowed {
        display: flex;
        flex-direction: column;
    }

    .talkbubble.shadowed .message {
        font-size: small;
    }
}

@font-face {
    font-family: 'Montserrat-regular';
    src: url(./assets/montserrat-regular.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.action.primary {
    margin: auto;
    width: 100%;
    padding: .8rem 0;
    color: fff;
    background: #e71973;
    border: none;
    color: #fff;
    border-radius: .5rem;
    text-decoration: none !important;
    white-space: nowrap;
    align-items: center;
    text-align: center;
}

.code-lpap {
    /* background: #e71973; */
    color: #e71973;
    font-weight: 800;
    /* font-family: 'Playpen Sans'; */
}

.icon-lpap {
    height: 6rem;
}

a {
    color: #178989
}

a.lpap {
    color: #e71973
}

p,
h2,
h3,
span {
    font-family: 'Montserrat-regular';
}

.talkbubble.gif.shadowed {
    display: flex;
    flex-direction: column;
}

.recomandation_txt {
    line-height: 1.5rem;
    margin: 0;
}

.center_content {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0.5rem;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 1px 9px 0 rgba(0, 0, 0, .05);
    padding: 2.5rem 3rem;
    gap: 2rem;
}

.content_wrapper.lpap_content {
    margin: 2rem 0;
}


/* ------ CGV ------ */
/* .cgv {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 9px rgba(0,0,0,0.05);
} */
.cgv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cgv-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 600;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.cgv-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.cgv.open .cgv-content {
    max-height: 300rem;
}

.cgv.open .cgv-toggle {
    transform: rotate(0deg); 
}