/*------------------------------------*\
-------- Couleurs
\*------------------------------------*/

/*
--lightgreen : #8BC34A;
lightgreen --- : #C5E1A5;

red --- : #FFCDD2;

lime: #8BC34A;

blanc + : #FaFaFa;

gris ++++ : #212121;
gris +++ : #424242;

*/

:root {
    --lightgreen: #8BC34A;
    --red: #F44336;
}

/*------------------------------------*\
-------- FONTS
\*------------------------------------*/

@font-face {
    font-family: "Lato";
    src: url('../fonts/Lato/Lato-Regular.ttf');
}

@font-face {
    font-family: "Lato";
    font-weight: bold;
    src: url('../fonts/Lato/Lato-Bold.ttf');
}

@font-face {
    font-family: "Lato";
    font-style: italic;
    src: url('../fonts/Lato/Lato-LightItalic.ttf');
}

@font-face {
    font-family: "Raleway";
    src: url('../fonts/Raleway/Raleway-Regular.ttf');
}

@font-face {
    font-family: "Raleway";
    font-weight: bold;
    src: url('../fonts/Raleway/Raleway-SemiBold.ttf');
}

/*------------------------------------*\
-------- GENERAL
\*------------------------------------*/

* {
    box-sizing: border-box;
}

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

body {
    color: #212121;
    min-height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Lato';
    background: #FaFaFa;
    position: relative;
}

/*couleur texte*/

.color-lime {
    color: #8BC34A;
}

.color-red {
    color: #F44336;
}


.bg {
    background: red;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Raleway";
    font-weight: bold;
}

h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1.8rem;
}

h2 {
    font-size: 1.5em;
    text-align: center;
}

h3 {
    font-size: 1.6em;
}

hr{
    margin-top: 0;
}


.page-faq h2 {
    font-size: 1.5em;
}

.page-prono h1 {
    font-size: 1.7em;
}

.btn-success,
.btn-primary, .btn-danger {
    margin: 10px 0;
    font-size: 1.1em;
    line-height: 1.1em;
}

.link-red{
    color: var(--red);
    transition: .2s
}

.link-red:hover{
    color: #212121;
}

.font-size-0-6 {
    font-size: 0.6em;
}

.font-size-0-8 {
    font-size: 0.8em;
}

.font-size-1-2 {
    font-size: 1.2em;
}

.alert-danger {
    background: #FFCDD2;
    color: #F44336
}

/*------------------------------------*\
-------- HEADER
\*------------------------------------*/

header {
    width: 100%;
    background: #424242;
    padding: .5em 0;
    background-image: url("../images/header-site.jpg");
    background-size: cover;
    background-position: 0%;
}

header .container {
    display: flex;
}

header .container .titre-header {
    margin: auto 0 auto 0;
    font-size: 40px;
    line-height: 0.9em;
}

#home-link {
    color: #fff;
    text-decoration: none;
}

#home-link:hover {
    opacity: 0.8;
}

.sous-titre {
    font-size: 0.6em;
    margin: 0;
    font-weight: 100;
    font-style: italic;
    color: #fff;
}

header .logo {
    margin: auto 20px auto 0;
}

header .logo img {
    width: 70px;
}

@media screen and (max-width: 578px) {
    header .container{
      display:block;
    }
}

/*------------------------------------*\
-------- Menu
\*------------------------------------*/

.navbar{
    margin-bottom: 1em;
}
.navbar ul{
    margin: 0;
}

.navbar li{
    border-bottom: #ddd 1px solid;
}

.navbar li a.nav-link{
    display:block;
    margin-right: 12px;
}

.navbar .active {
    border-bottom: #8BC34A 5px solid;
}

.navbar-light .navbar-nav .active > .nav-link{
    color: #8BC34A;
}

/*------------------------------------*\
-------- Titre de page
\*------------------------------------*/

.etape{
    text-align: center;
}

.etape *{
    display: inline-block;
        margin-bottom: 0;
}

.big-title {
    font-size: 1.6em;
    color: #8BC34A;
    font-weight: 600;
    text-shadow: 0px 1px 0px #689F38;
}

/*------------------------------------*\
-------- Fil d'Ariane
\*------------------------------------*/

#breadcrumbs {
    margin-bottom: 1.8rem;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
}

#breadcrumbs li {
    text-align: center;
    margin: 0 .5em 0 1em;
    background: #ddd;
    padding: .2em 1em;
    text-decoration: none;
    position: relative;
    width: 25%;
}

#breadcrumbs li:first-child {
    margin-left: 0
}

#breadcrumbs li::before,
#breadcrumbs li::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1em;
    background: #ddd;
    transform: skew(-10deg);
}

#breadcrumbs li::before {
    left: -.5em;
    border-radius: 5px 0 0 5px;
}

#breadcrumbs li::after {
    right: -.5em;
    border-radius: 0 5px 5px 0;
}

#breadcrumbs li:first-child {
    border-radius: 5px 0 0 5px;
}

#breadcrumbs li:first-child::before {
    content: normal;
}

#breadcrumbs li a{
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

#breadcrumbs .innactive{
    cursor: not-allowed;
    color: #868e96;
}

#breadcrumbs .current,
#breadcrumbs .current::before,
#breadcrumbs .current::after {
    background: #8BC34A;
}

#breadcrumbs .passed,
#breadcrumbs .passed::after,
#breadcrumbs .passed::before {
    background: #C5E1A5;
    color: #f5f5f5
}


/*------------------------------------*\
-------- Colonne droite
\*------------------------------------*/

.bloc-phone p {
    font-size: 1.6rem;
    color: #212121;
}

.bloc-engagement {
    overflow: hidden;
    margin-bottom: 20px;
    /*
    border-radius: 0.4rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
*/
}

.bloc-engagement i {
    color: #8BC34A;
}

.bloc-engagement > ul {
    list-style: none;
    padding: 0;
}

.bloc-engagement > ul > li {
    padding-left: 1.3em;
}

.bloc-engagement > ul > li:before {
    content: "\f00c";
    /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
    color: #8BC34A;
}

.bloc-engagement > ul > li > ul > li {
    list-style-type: disc;
}

/*------------------------------------*\
-------- Colonne gauche
\*------------------------------------*/


.box-form {
    border-radius: 0.4rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.box-form-title {
    text-align: center;
    background: #424242;
    color: #fff;
}

.box-form-title h3 {
    margin: 0;
}

.box-form-content {
    padding: 10px;
    background: #EEEEEE;
}

.link-green {
    color: #8BC34A;
}

.link-green:hover {
    color: #C5E1A5;
}

.p-question {
    font-size: 1em;
}

.p-question i {
    font-size: 1.2em;
}

.p-tel{
    font-weight: bold;
    font-size: 1.2em;
    
}

.help .btn{
    display: block;
    position: fixed;
    z-index:9999;
    right: 25px;
    top: 20%;
    border: 1px solid #F44336;
    color: #F44336;
    background: #fff;
    font-size: 1.5em;  
    cursor: pointer;
}

.help .assist{
    display: none;
}

@media (max-width: 768px) { 
        .help .btn{
            position: initial;
            margin: .5em auto;
    }
    
    .help .assist{
        display: inline-block;
    }
}

.help .btn:hover, .help .btn:active{
    background: #F44336;
    color: #fff;
}

.help .btn:focus{
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

/*------------------------*\
-------- ETAPE 1 - Code Fiche Pratique
\*------------------------*/

.en-tete-rouge {
    font-weight: bold;
    color: #F44336;
    font-size: 1.4em;
}

.avertissement .col-1 {
    display: flex;
}

.avertissement p {
    margin: 0;
}

.avertissement i {
    margin: auto;
    font-size: 4rem;
    color: #F44336;
}

.scale {
    transform: scale(2);
}


.fancybox {
    color: #212121;
}

.fancybox:hover {
    color: #999;
}

.accordion-etape1 .btn{
    font-size: 1.4em
}

/*------------------------------------*\
-------- ETAPE 2 - AIDE ALLOPASS
\*------------------------------------*/

.bloc-video {
    position: relative;
    height: 400px;
}

.bloc-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.etape-allopass {
    counter-reset: allo;
    margin: 10px 0 10px 20px;
    padding: 0;
}

/* on initialise et nomme un compteur */

.etape-allopass li {
    list-style-type: none;
    counter-increment: allo;
    /* on incrémente le compteur à chaque nouveau li */
}

.etape-allopass li:before {
    content: counter(allo) " .";
    /* on affiche le compteur */
    font-weight: bold;
    font-size: 1.2em;
    color: #8BC34A;
    margin-right: 10px;
}

.p-secure{
    color: #212121;
    text-align: center;
    margin-bottom: 1em;
}

.btn-allopass{
    width:100%;
}

/*------------------------*\
-------- ETAPE 3 PRONOSTIC DU JOUR
\*------------------------*/

.pronostic-res {
    width: 100%;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 0.4rem;
    background: #EEEEEE;
}

td {
    font-weight: bold;
}

.card-header {
    padding: 0;
}

.card-header:hover {
    background: #e5e5e5;
}

.card-header .btn-link {
    font-weight: bold;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    border-radius: 0;
}

.accordion-etape3 .card-header .btn-link{
    text-align: left;
    padding: 10px 20px;
}

.bandeau-pub{
    margin-top: 1em;
    margin-bottom: 1em;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .125); 
    border-radius: .5em;
}

#section-pub-1 img{
    height: 40px;
}

#section-pub-1 p{
    display: inline-block;
}

.section-pub a{
    display: block;
    text-align: center;
    background: #fff;
    color:#212121;
    padding: 0 .25em;
}

.section-pub a:hover{
    background: #e5e5e5;
}

#section-pub-1 .col-md-4{
        padding: 0;
}

.link-grey {
    color: #999;
}

.link-grey:hover{
    color: #000;
}




/*------------------------------------*\
-------- CONSULTER PRONOSTIC TELEPRONO
\*------------------------------------*/

.link-faq {
    counter-reset: allo;
    margin: 10px 0 30px 0;
    padding: 0;
}

/* on initialise et nomme un compteur */

.link-faq  .slide-link {
    list-style-type: none;
    counter-increment: allo;
    /* on incrémente le compteur à chaque nouveau li */
    color: #000;
}

.link-faq  .slide-link:before {
    content: counter(allo) " .";
    /* on affiche le compteur */
    font-weight: bold;
    font-size: 1.2em;
    color: #8BC34A;
    margin-right: 10px;
}

.link-faq  .slide-link:hover {
    background: #f5f5f5;
    color: #000;
}

.link-faq  .slide-link.faq-actif,
.link-faq  .slide-link.faq-actif:hover {
    background: #8BC34A;
    color: #fff;
}

.link-faq  .slide-link.faq-actif:before {
    color: #fff;
}

.col-faq {
    border: 1px solid #ddd;
    border-radius: .25em;
    text-align: center;
    padding: 5px;
    background: #fff;
}

.col-faq-mid-center {
    display: flex;
    height: 60px;
}

.col-faq-head {
    font-weight: bold;
    margin: auto;
    color: #8BC34A;
}

.faq{
    margin-top: 1em;
}

.faq .col-sm-6 {
    text-align: center;
}

.faq-chiffre {
    text-align: center;
    color: #F44336;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: .25em;
    font-weight: bold;
    margin: 5px 0;
    padding: 5px;
    display: inline-block;
}

.triangle {
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 40px 0 40px;
    border-color: #8BC34A transparent transparent transparent;
}


/*------------------------------------*\
-------- ARCHIVES PRONO
\*------------------------------------*/

#tab-prono td {
    font-weight: normal;
}

/*------------------------------------*\
-------- FOOTER
\*------------------------------------*/

main {
    padding-bottom: 8em;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    color: #fff;
}

.footer-lime {
    background: #8BC34A;

}

.footer-dark {
    background: #424242;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

.reseaux-sociaux-btn {
    background: #8BC34A;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    line-height: 1.5;
    border-radius: 2rem;
    color: #fff;
    margin: 0 0.25rem;
}

.link-white {
    color: #ffffff;
}

.link-white:hover {
    color: #eeeeee;
}

/* CSS PASS ABO */
.pass_abo {
    color: #4109a7;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    font-weight: bold;
}

.pass_abo_desc {
    text-align: center;
}

.pass_abo_desc a {
    color: #4109a7;
    text-decoration: underline;
    cursor: pointer;
}

.pass_abo_unsubscribe {
    color: #8BC34A;
    text-decoration: underline;
    padding: 10px 0;
}

.pass_abo_unsubscribe:hover,
.pass_abo_unsubscribe:active {
    color:#218838;
}

#espace-abonne .p-question,
#espace-abonne .big-title {
    margin-top: 20px;
}

#espace-abonne h1,
#espace-abonne h2 {
    margin-top: 30px;
}

#espace-abonne .small-title {

}

#espace-abonne .big-title {

}

#espace-abonne .pass_abo {
    margin-top: 20px;
    margin-bottom: 15px;
}

#espace-abonne .pass_abo_exp {
    margin-bottom: 30px;
}

#espace-abonne .btn {
    margin-bottom: 30px;
}

.waiting_box {
    width: 350px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -175px;
    margin-top: -50px;
    height: 100px;
}

.waiting_box p {
    margin-top: 20px;
}

.pass_abo_red {
    font-size: 1.25em;
    line-height: 1.15em;
    margin-top: 35px;
    font-weight: bold;
    color: red;
    margin-bottom: 100px;
}

.big-title-td {
    font-size: 1.6em;
    margin: 1em 0;
    text-align: center;
    color: #8BC34A;
    font-weight: 600;
    text-shadow: 0px 1px 0px #689F38;
}

/*------------------------------------*\
-------- RESPONSIVE
\*------------------------------------*/

@media (max-width: 576px) {
    header {
        text-align: center;
    }

    .btn-allopass{
        display:block;

    }
}

/*------------------------------------*\
-------- ANIMATION
\*------------------------------------*/

.btn-success{
    animation: pulseGreen 1.8s infinite;
}

.btn-primary{
    animation: pulseBlue 1.8s infinite;
}

.btn-danger{
    animation: pulseRed 1.8s infinite;
}


@keyframes pulseGreen {
    0% {
      box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.4);
    }
    70% {
        box-shadow: 0 0 1px 4px rgba(139, 195, 74, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.4);
    }
  }

  @keyframes pulseBlue {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 1px 4px rgba(0, 123, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
  }

  @keyframes pulseRed {
    0% {
      box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }
    70% {
        box-shadow: 0 0 1px 4px rgba(244, 67, 54, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }
  }

.banniereFricAmerique{
    width:300px;
    display: block;
    margin: auto auto 20px auto;
}