.cookies{
    background-color: #f1f1f1;
    position: relative;
    z-index: 10000000;
}
.cookies--bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
}

.cookies__container{
    max-width: 1040px;
    padding:10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.cookies__text{
    font-size: 16px;
    line-height: 21px;
    color:#131313;
    margin-right: 20px;
}

.cookies__btn{
    border: 0;
    font: inherit;
    line-height: normal;
    overflow: visible;
    -webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;

    display: block;
    color:#fff;
    padding:5px 10px;
    background-color: #019b01;
    text-transform: uppercase;
    font-size:15px;
    cursor: pointer;
}

.cookies__confidence{
    padding:10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px auto 0;
    background-color: #f2f2f2;
}

.cookies__confidence p{
    font-size: 16px;
    line-height: 21px;
    color:#131313;
    margin-right: 20px;
}

.cookies__toggle-elm {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookies__toggle-elm input {display:none;}

.cookies__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookies__slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .cookies__slider {
    background-color: #019b01;
}

input:focus + .cookies__slider {
    box-shadow: 0 0 1px #019b01;
}

input:checked + .cookies__slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.cookies__slider.round {
    border-radius: 34px;
}

.cookies__slider.round:before {
    border-radius: 50%;
}

.cookies__link{
    color:#2c21a2;
    text-decoration: underline;
}

@media (max-width:991px){ /* à mettre si le font-size du site change en responsive */
    .cookies__confidence p{
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width:900px){
    .cookies__text{
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width:690px){
    .cookies__confidence{
        display: block;
        text-align: center;
    }

    .cookies__confidence p{
        text-align: center;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .formSuppDonnee__bouton{
        text-align: center;
    }
}

@media (max-width:500px){
    .cookies__container{
        display: block;
    }

    .cookies__text{
        margin-right: 0;
    }

    .cookies__btn{
        width: 110px;
        margin-top: 5px;
        margin-left: auto;
    }
}

/* formSuppDonnee */

#formSuppDonnee{
    margin:40px 0 0;
    max-width:750px;
}

#formSuppDonnee h2{
    text-transform: uppercase;
    margin-bottom:15px;
    font-size: 14px;
}

#formSuppDonnee div{
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
}

#formSuppDonnee div p{
    width:calc(50% - 10px);
    margin-top: 0;
}

#formSuppDonnee input[type="submit"]{
    width: 80px;
    height: 30px;
}

#footer-ml{
    color:#808080;
}

@media (max-width:380px){
    #formSuppDonnee div{
        display: block;
    }

    #formSuppDonnee div p{
        width:100%;
        margin-top: 15px;
    }
}
