/* ==========================================================
   PAGE CARTE DE FRANCE
   Fichier utilisé uniquement par carte-france.html
   ========================================================== */

.page-carte-france {
    margin: 0;
    padding: 0;
    background: #dedede;
    font-family: Arial, Helvetica, sans-serif;
    color: #5b574a;
}


/* ==========================================================
   CONTENEUR PRINCIPAL
   ========================================================== */

.carte-wrapper {
    width: calc(100% - 30px);
    max-width: 1000px;
    margin: 20px auto;
    background: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   HEADER
   ========================================================== */

.carte-header {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.carte-header a {
    display: block;
}

.carte-header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* ==========================================================
   CONTENU
   ========================================================== */

.carte-main {
    width: 100%;
    padding: 36px 40px 55px;
    box-sizing: border-box;
}

.carte-titre {
    text-align: center;
}

.carte-titre h1 {
    margin: 0 0 25px;
    padding: 0;
    color: #333333;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.carte-consigne {
    display: inline-block;
    margin: 0 auto 28px;
    padding: 13px 24px;
    background: #eeeeee;
    border-radius: 4px;
    color: #444444;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}


/* ==========================================================
   CARTE
   ========================================================== */

.carte-zone {
    width: 100%;
    max-width: 519px;
    margin: 0 auto 45px;
}

.carte-zone img {
    display: block;
    width: 100%;
    max-width: 519px;
    height: auto;
    margin: 0 auto;
}


/* ==========================================================
   ARTICLE
   ========================================================== */

.carte-article {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    color: #5b574a;
    font-size: 16px;
    line-height: 1.72;
}

.carte-article p {
    margin: 0 0 20px;
    padding: 0;
    color: #5b574a;
    font-size: 16px;
    line-height: 1.72;
}

.carte-article .introduction {
    margin-bottom: 32px;
    padding: 22px 24px;
    background: #f5f5f5;
    border-left: 4px solid #888888;
}

.carte-article h2 {
    margin: 42px 0 17px;
    padding: 0;
    color: #333333;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.carte-article h3 {
    margin: 0 0 12px;
    padding: 0;
    color: #333333;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.carte-article strong {
    font-weight: 700;
}


/* ==========================================================
   LISTES
   ========================================================== */

.carte-article ul,
.carte-article ol {
    margin: 4px 0 25px;
    padding-left: 30px;
    color: #5b574a;
    font-size: 16px;
    line-height: 1.65;
}

.carte-article ul {
    list-style: disc;
}

.carte-article ol {
    list-style: decimal;
}

.carte-article li {
    margin: 0 0 8px;
    padding-left: 3px;
}


/* ==========================================================
   TABLEAUX
   ========================================================== */

.table-scroll {
    width: 100%;
    margin: 22px 0 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.carte-article table {
    width: 100%;
    min-width: 560px;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: #ffffff;
}

.carte-article th,
.carte-article td {
    padding: 12px 14px;
    border: 1px solid #cccccc;
    color: #5b574a;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

.carte-article th {
    background: #e8e8e8;
    color: #333333;
    font-weight: 700;
}


/* ==========================================================
   FAQ
   ========================================================== */

.faq-section {
    margin-top: 50px;
}

.faq-section > h2 {
    margin-bottom: 24px;
}

.faq-item {
    margin-bottom: 18px;
    padding: 20px 22px;
    background: #f4f4f4;
    border-radius: 4px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   LIENS
   ========================================================== */

.carte-article a {
    color: #454545;
    text-decoration: underline;
}

.carte-article a:hover,
.carte-article a:focus {
    text-decoration: none;
}


/* ==========================================================
   TABLETTE
   ========================================================== */

@media only screen and (max-width: 900px) {

    .carte-wrapper {
        width: calc(100% - 24px);
        margin: 12px auto;
    }

    .carte-main {
        padding: 30px 30px 45px;
    }

    .carte-titre h1 {
        font-size: 29px;
    }

    .carte-article h2 {
        font-size: 23px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media only screen and (max-width: 600px) {

    .page-carte-france {
        background: #ffffff;
    }

    .carte-wrapper {
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .carte-main {
        padding: 25px 18px 38px;
    }

    .carte-titre h1 {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 1.25;
    }

    .carte-consigne {
        display: block;
        margin-bottom: 23px;
        padding: 12px 14px;
        font-size: 15px;
    }

    .carte-zone {
        margin-bottom: 35px;
    }

    .carte-article,
    .carte-article p,
    .carte-article ul,
    .carte-article ol {
        font-size: 16px;
    }

    .carte-article {
        line-height: 1.65;
    }

    .carte-article p {
        margin-bottom: 18px;
        line-height: 1.65;
    }

    .carte-article .introduction {
        margin-bottom: 28px;
        padding: 18px;
    }

    .carte-article h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        font-size: 21px;
        line-height: 1.35;
    }

    .carte-article h3 {
        font-size: 18px;
    }

    .carte-article ul,
    .carte-article ol {
        padding-left: 25px;
    }

    .faq-item {
        padding: 17px;
    }

}


/* ==========================================================
   PETITS MOBILES
   ========================================================== */

@media only screen and (max-width: 380px) {

    .carte-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .carte-titre h1 {
        font-size: 23px;
    }

    .carte-article h2 {
        font-size: 20px;
    }

}