﻿/*******************************************************
FONTS
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/*******************************************************
GENERAL
********************************************************/
body {
    font-weight: 400;
    color: #222222;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Fira Sans' !important;
}

p, li, label, td {
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
}


#back-to-top {
    position: fixed;
    bottom: 7px;
    right: 7px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: #0C4DA2;
        color: white;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        border: 1px solid white;
        border-radius: 100%;
    }

.container-fluid > .row,
.container-fluid > div > .row {
    padding: 0;
}

.max-width {
    max-width: 1300px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

.bg-perso,
.copyright {
    display: none;
}


.anchor {
    visibility: hidden;
    height: 255px;
    margin-top: -255px;
}

a {
    display: inline-block;
    color: #0C4DA2;
    font-weight: 500;
}


    a:hover,
    a:active,
    a:focus,
    button:hover,
    button:active,
    button:focus {
        text-decoration: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    a:hover,
    a:active,
    a:focus {
        color: #86A6D1;
    }

h2.page {
    font-family: Anton;
    font-size: 45px;
    margin: 0;
}

    h2.page span.fond{
        display: inline-block;
        background-color: #0C4DA2;
        background: url(/docs/templates/41/pinceau-bleu-title.svg);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        color: white;
        padding: 7px 25px;
    }

@media(max-width:992px) {
    h2.page {
        font-size: 38px;
    }

        h2.page span.fond {
            padding: 7px 12px;
        }
}

/*******************************************************
BTN
********************************************************/

.btn {
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 0 30px;
    width: fit-content;
    border: none;
    letter-spacing: 0;
    justify-content: center;
    border-radius: 50px;
}

    .btn i {
        font-size: 20px;
        margin-right: 10px;
    }

    .btn img {
        margin-right: 10px;
    }


    .btn:hover,
    .btn:active,
    .btn:focus {
        transition: all 0.3s ease;
    }

    .btn.btn-secondary {
        color: #222222;
        background-color: white;
        box-shadow: inset 0 0 0 5px #DFE5F1;
    }

        .btn.btn-secondary:hover,
        .btn.btn-secondary:active,
        .btn.btn-secondary:focus {
            color: #222222;
            background-color: #DFE5F1;
            box-shadow: inset 0 0 0 5px #DFE5F1;
        }

    .btn.btn-secondary-alt {
        color: #222222;
        background-color: white;
        box-shadow: inset 0 0 0 5px #86A6D1;
    }

        .btn.btn-secondary-alt:hover,
        .btn.btn-secondary-alt:active,
        .btn.btn-secondary-alt:focus {
            color: #222222;
            background-color: white;
            box-shadow: inset 0 0 0 0 #86A6D1;
        }

    .btn.btn-jaune {
        color: #222222;
        background-color: #FDB813;
        box-shadow: inset 0 0 0 5px #FCE197;
    }

        .btn.btn-jaune:hover,
        .btn.btn-jaune:active,
        .btn.btn-jaune:focus {
            color: #222222;
            background-color: #FDB813;
            box-shadow: inset 0 0 0 0 #FCE197;
        }

    .btn.btn-default:before {
        content: "";
        position: absolute;
        height: calc(100% + 2px);
        width: calc(100% + 2px);
        box-shadow: inset 0 0 0 5px #DFE5F1;
        border-radius: 50px;
        left: -1px;
        top: -1px;
        transition: all .3s ease;
    }

    .btn.btn-default:hover:before {
        box-shadow: inset 0 0 0 0px #DFE5F1;
        transition: all .3s ease;
    }

    .btn.btn-default {
        color: white;
        position: relative;
        background-color: #0C4DA2;
        /* box-shadow: inset 0 0 0 5px #DFE5F1;*/
    }

        .btn.btn-default:hover,
        .btn.btn-default:active,
        .btn.btn-default:focus {
            color: white;
            background-color: #0C4DA2;
            /*box-shadow: inset 0 0 0 0 #DFE5F1;*/
        }

.btn-danger.active {
    background-color: #DA0812 !important;
}

.btn-success.active {
    background-color: #96BE28 !important;
}


/*******************************************************
HEADER
********************************************************/

header {
    background-color: #0C4DA2;
    padding: 25px 0;
}

    header.fixed {
        position: fixed;
        width: 100%;
        z-index: 100;
    }


.max-width-header {
    max-width: 1580px;
    margin: 0 auto;
}

header img {
    vertical-align: middle;
}

@media(max-width:991px) {
    header {
        padding: 10px 0;
    }

        header img {
            max-width: 150px;
        }
}

header h1 {
    font-size: 34px;
    font-family: Anton;
    color: white;
    line-height: 1;
    margin: 0;
    display: inline-block;
    padding-left: 30px;
    vertical-align: middle;
    border-left: 4px solid #FDB813;
    margin-left: 60px;
}

@media(max-width:991px) {
    header h1 {
        padding-left: 10px;
        font-size: 26px;
        margin: 10px 0;
    }
}

/*******************************************************
FOOTER
********************************************************/

footer {
    background-color: #0C4DA2;
    padding: 20px 0;
    color: white;
}


    footer ul {
        margin: 0;
        padding: 0;
    }

        footer ul li {
            display: inline-block;
            color: white;
            position: relative;
        }

            footer ul li + li {
                padding-left: 30px;
            }


@media(min-width:768px) {

    footer ul li + li:before {
        content: "";
        position: absolute;
        height: 4px;
        width: 4px;
        background-color: white;
        border-radius: 100%;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
}

                @media(max-width:767px){

                    footer ul li {
                        display: block;
                        padding: 5px 0 !important;
                    }
                }

            footer ul li a {
                color: white;
                text-decoration: none;
            }

                footer ul li a:hover,
                footer ul li a:active,
                footer ul li a:focus {
                    opacity: 0.6;
                    color: white;
                }

footer p a {
    color: white !important;
    margin-top:5px;
    text-decoration:none;
}

/*@media(max-width:991px) {
    footer ul li a {
        padding: 5px 0;
    }
}*/

/*******************************************************
LISTE
********************************************************/

.liste-magasin-portail {
    background-color: #DFE5F1;
    padding: 40px 0;
}

    .liste-magasin-portail h2 {
        font-size: 30px;
        font-family: Anton;
        position: relative;
        display: inline-block;
        margin-bottom: 50px;
        text-align: start;
        padding-left: 255px;
    }

        .liste-magasin-portail h2 span:not(.side) {
            font-size: 44px;
            color: #0C4DA2;
            display: block;
        }

        .liste-magasin-portail h2 .side {
            position: absolute;
            font-size: 56px;
            color: white;
            text-transform: uppercase;
            display: inline-block;
            transform: rotate(-5deg);
            background-color: #0C4DA2;
            padding: 2px 5px;
            top: 15px;
            left: 0;
        }

@media(max-width:991px) {
    .liste-magasin-portail h2 {
        display: block;
        padding-left: 0;
        padding-top: 100px;
    }

        .liste-magasin-portail h2 span:not(.side) {
            font-size: 36px;
        }

        .liste-magasin-portail h2 .side {
            font-size: 50px;
        }
}

.liste-magasin-portail .content {
    padding:50px;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.liste-magasin-portail .col-lg-4 {
    margin-bottom: 30px;
}


.liste-magasin-portail .content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0C4DA2;
    height: 340px;
    width: 100%;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.liste-magasin-portail .content:after {
    content: "";
    position: absolute;
    height: 69px;
    width: 85px;
    top: 25px;
    background-size: cover !important;
    left: 25px;
    background: url(/docs/templates/46/pinceau-blanc.svg);
    z-index: 2;
    opacity: 0.9;
}


@media(max-width:767px) {
    .liste-magasin-portail .content:before {
        height: 280px;
    }
}

@media(min-width:992px){
    .liste-magasin-portail .content .img-container {
        aspect-ratio: 6 / 5;
    }
}

.liste-magasin-portail .content img {
    border: 10px solid #DFE5F1;
    margin-bottom: 20px;
    border-radius: 5px;
}

.liste-magasin-portail .content h3 {
    font-size: 24px;
    font-family: Anton;
    color: #0C4DA2;
    margin-bottom: 20px;
    border-radius: 5px;
}

.liste-magasin-portail .content .horaire-today {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .liste-magasin-portail .content .horaire-today p {
        margin: 0;
        display: inline-block;
    }

    .liste-magasin-portail .content .horaire-today .horaire {
        font-family: Anton;
        font-size: 18px;
        padding-left: 25px;
        position: relative;
        padding-right: 15px;
    }

.liste-magasin-portail .content .horaire:before {
    content: "";
    position: absolute;
    height: 15px;
    left: 0;
    top: 50%;
    width: 15px;
    border-radius: 100%;
    transform: translateY(-50%);
}

.liste-magasin-portail .content .horaire.open:before {
    background-color: #96BE28;
}

.liste-magasin-portail .content .horaire.closed:before {
    background-color: #DA0812;
}

.liste-magasin-portail .content .horaire-today .today {
    position: relative;
    padding-right: 15px;
}

    .liste-magasin-portail .content .horaire-today .today:after {
        content: "\f105";
        position: absolute;
        color: #FDB813;
        font-family: 'Font Awesome 6 Pro';
        right: 0;
        top: 0;
    }

.liste-magasin-portail .content .adresse {
    margin: 20px 0;
}

.info-horaire {
    text-align: left;
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid #FEE4A7;
    background: #FEF7E5;
    margin-top: 20px;
}


.liste-magasin-portail .description {
    padding: 50px 70px;
    background-color: #0C4DA2;
    border-radius: 10px;
    color: white;
}

@media(max-width:767px){
    .liste-magasin-portail .description {
        padding: 20px;
    }
}

    .liste-magasin-portail .description p {
        margin: 0;
    }

    .liste-magasin-portail .description .title {
        font-size: 34px;
        font-family: Anton;
        color: white;
        line-height: 1;
        margin: 0;
        display: inline-block;
        padding-left: 30px;
        vertical-align: middle;
        border-left: 4px solid #FDB813;
        margin-bottom: 30px;
    }

.situer {
    background-color: #DFE5F1;
    position: relative;
    overflow: hidden;
}

    .situer h2 {
        font-size: 56px;
        color: white;
        text-transform: uppercase;
        display: inline-block;
        transform: rotate(-5deg);
        background-color: #0C4DA2;
        padding: 2px 5px;
        font-family: Anton;
    }

@media(max-width:767px) {
    .situer h2 {
        font-size: 50px;
    }
}

.mapContainer:before {
    content: "";
    position: absolute;
    height: 190px;
    width: 120%;
    z-index: 1;
    left: 50%;
    top: -147px;
    transform: translateX(-50%);
    background-color: #DFE5F1;
    border-radius: 100%;
}

@media(max-width:991px) {
    .mapContainer:before {
        width: 160%;
        top: -169px;
    }
}

    

/*******************************************************
COOKIE BAR
********************************************************/

.weCookieBar .btn {
    height: 40px;
    margin: 5px;
    display: inline-block;
}

.weCookieBar .btn-default:before {
    box-shadow: inset 0 0 0 4px #DFE5F1;
}

.weCookieBar #weCookieButton1 {
    color: white;
}

#cookiesModal .modal-content {
    background-color: #dfe5f1;
    border: 2px solid #86a6d1;
}

#cookiesModal .modal-header {
    border: none;
}

#cookiesModal .modal-title {
    font-family: Anton;
    font-size: 36px;
    color: #0c4da2;
}

#cookiesModal h3 {
    font-family: Anton;
    font-size: 26px;
    margin-top: 20px;
}

#cookiesModal .btn {
    height: 40px;
    padding: 0 20px;
}

#cookiesModal .form-group + .form-group {
    margin-top: 15px;
}

#cookiesModal .close {
    background-color: transparent;
    font-size: 45px;
    color: #0c4da2;
}

/*******************************************************
PAGE 404
********************************************************/

.page-error {
    text-align: center;
}

    .page-error .max-width {
        padding: 80px 0;
    }

    .page-error .row:last-child .col-md-12 {
        display: flex;
        margin-top: 40px;
        justify-content: center;
    }


    .page-error h1 {
        color: #0C4DA2;
        display: inline-block;
        position: relative;
        padding-bottom: 100px;
        padding-left: 60px;
    }

        .page-error h1 span {
            font-size: 30px;
            position: absolute;
            text-transform: uppercase;
            background-color: #FDB813;
            padding: 3px 5px;
            top: 60px;
            left: 60px;
            transform: rotate(-5deg);
        }

        .page-error h1:before {
            content: "";
            position: absolute;
            background: url(/docs/templates/41/point-exclamation.svg);
            height: 96px;
            width: 27px;
            left: 0;
            top: 10px;
            background-repeat: no-repeat;
            transform: rotate(-8deg);
        }


    .page-error img {
        display: block;
        margin: 0 auto;
    }

    .page-error .title {
        font-size: 26px;
        color: #0C4DA2;
        font-family: Anton;
    }

        .page-error .title + p strong {
            display: block;
            margin-bottom: 5px;
        }


/*******************************************************
MENTIONS LEGALES
********************************************************/

.mention-legale {
    padding-bottom: 50px;
}

    .mention-legale h3 {
        font-family: Anton;
        margin-top: 30px;
    }


.fil-ariane {
    margin: 0;
    padding: 30px 0;
}

    .fil-ariane li {
        display: inline-block;
        color: #0C4DA2;
    }

        .fil-ariane li a {
            font-weight: 400 !important;
        }

        .fil-ariane li + li {
            margin-left: 45px;
            position: relative;
        }

            .fil-ariane li + li:before {
                content: "\f105";
                font-family: 'Font Awesome 6 Pro';
                position: absolute;
                font-weight: 400;
                color: #0C4DA2;
                left: -28px;
                top: 50%;
                transform: translateY(-50%);
            }

        .fil-ariane li a {
            color: #0C4DA2;
            text-decoration: none;
        }

        .fil-ariane li:last-child a {
            font-weight: 500 !important;
        }

@media(max-width:768px) {
    .fil-ariane li {
        margin-left: 17px !important;
        display: block;
    }

        .fil-ariane li + li {
            margin-top: 5px;
        }

            .fil-ariane li + li:before {
                left: -17px;
                top: 0;
                transform: none;
            }
}