*, ::after, ::before {
    padding: 0;
    margin: 0;
}

.popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0,9);
    z-index: 98;
}

.popup-content {
    height: auto;
    padding: 5px;
    max-width: 655px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    background:orange;
    font-style: oblique;
}

.popup-content h2{
    font-size: 20px;
    text-align: center;
}

.popup-content .compteur{
  color : red
}

.popup-content p {
    margin: 10px 0;
}

.popup-formulaire {
    border : 1px solid black
}

.popup-formulaire h2 {
    color :red;
    font-size : 30px
}

.popup-formulaire p {
    color :  black;
    font-size: 20px;
}

.active h2,
.active p {
   color : red
}

.popup_exit{
    position: absolute;
    margin-top : -10px;
    top: -10px;
    right: -10px;
    text-decoration: none;
    background : green;
    padding: 5px 10px;
    border-radius: 5px ;
    cursor: pointer;
}