
/* :root {
    --noir: #262626;
    --gris: #575757;
    --bleu: #184477; 
  
    --blanc: #FFF;
}
   */

#newsletter_popup {
    position: fixed;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0.59999999);
    display: none;
    justify-content: center;
    align-items: center;

    z-index: 10000000;
    opacity: 0;
    transition: 0.3s all;
    overflow: hidden;
}
#newsletter_popup.show {
    opacity: 1;
    display: flex;
}
#newsletter_popup .box{
    position: relative;
    width: 580px;
    height: auto;

    background: url('https://1.bp.blogspot.com/-Mjx7lwIWVYA/TlxU5nkAJYI/AAAAAAAABBY/rv4IOphqLeI/s1600/abstract-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    /* border-left: 10px solid var(--bleu); */

    padding: 20px 30px;

    margin-top: -400px !important;
    opacity: 0;
    transition: 0.3s all;
    border-radius: 10px;
}
#newsletter_popup .box::before {
    position: absolute;
    content: "";
    top: 0;
    left:0;
    bottom: 0;
    right: 0;

    background-color: rgba(255, 255, 255, 0.9702);
    display: block;

    z-index: 1;
}
#newsletter_popup.show .box{
    margin-top: 0px !important;
    opacity: 1;
}
#newsletter_popup .box .content{
    position: relative;
    width: 100%;
    height: 100%;

    /* background-color: var(--blanc); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden !important;
    transition: all ease-in-out 0.3s;

    visibility: hidden;
    opacity: 0;
    z-index: 2;
}
#newsletter_popup.show .box .content{
    visibility: visible;
    opacity: 1;
    transform: scale(1.0);

    animation: animContent 0.5s !important;
}
@keyframes animContent{
    0%{
        visibility: hidden;
        opacity: 0;
        transform: scale(0.1);
    }
    15%{
        visibility: hidden;
        opacity: 0;
        transform: scale(0.1);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: scale(1.0);

    }
}
#newsletter_popup .box .content .texte{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden !important;
}
#newsletter_popup .box .content .texte .inner{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 25px 0;
}
#newsletter_popup .box .content .texte .inner img{
    position: relative;
    width: 70px;
}

#newsletter_popup .box .content .texte h2{
    position: relative;
    width: 80%;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    color: var(--bleu);
    margin-bottom: 6px;
}
#newsletter_popup .box .content .texte h3{
    position: relative;
    width: 85%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
#newsletter_popup .box .content .texte p{
    position: relative;
    width: 80%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
#newsletter_popup .box .content .texte p b{
    position: relative;
    width: 75%;
    text-align: center;
    font-size: 20px;
    font-weight: 650;

    text-decoration: underline;
    text-decoration-color: var(--bleu);
}
#newsletter_popup .box .content form{
    position: relative;
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
#newsletter_popup .box .content form label{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 63%;

    border-radius: 35px;
    padding: 12px;
    border: 1px solid var(--bleu);
    height: 40px;
    overflow: hidden;
}
#newsletter_popup .box .content form label span{
    position: relative;
    display: inline-block;color: var(--bleu);
    font-size: 16px;
    margin-right: 6px;
}
#newsletter_popup .box .content form label input{
    position: relative;
    display: inline-block;
    color: var(--bleu);
    font-size: 14px;
    min-width: 250px;
    border: none;
    outline: 0;

    transition: ease-in 0.3s all;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

#newsletter_popup .box .content form button{
    position: relative;
    background: linear-gradient(to right, rgba(24, 68, 119, 0.999), rgba(0, 90, 193, 0.922));
    color: var(--blanc);
    border-radius: 35px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 25px;
    width: 36%;
    height: 40px;
    border: none;
    outline: 0;
    transition: ease-in-out 0.3s all;
    margin-top: -6px;
    margin-left: 2px;

}
#newsletter_popup .box .content form button:hover{
    position: relative;
    background: linear-gradient(to left, rgba(24, 68, 119, 0.999), rgba(0, 90, 193, 0.922));
}



#newsletter_popup .close{    /*************   close   ****************/
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;

    /* background-color: var(--bleu); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
}
#newsletter_popup .close span{
    color: var(--gris);
    font-size: 30px;
    font-weight: 400;
    transform: scale(1.0);
    transition: ease 0.3s all;
}
#newsletter_popup .close:hover span{
    color: var(--bleu);
    transform: scale(1.05);
}