.popup-container{
    position: fixed;
    top: -100%;
    width: 99vw;
    height: 100vh;
   z-index: -1;
}

.container-active{
    top: 0;
    z-index: 100;
}

.popup-green , .popup-red {
    width: 300px;
    background-color: rgb(240, 237, 237);
    border-radius: 10px;
    border: 2px solid rgb(85, 85, 85);
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px rgba(60, 64, 67, 0.15);
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    padding: 0 30px 30px;
    font-family:'Poppins', sans-serif;
}

.popup-active {
    top: 50%;
}

.popup-green img , .popup-red img {
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.popup-green h2 , .popup-red h2{
    font-size: 38px;
    font-weight: 900;
    margin: 30px 0 10px 0;
}

.popup-green button {
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    color: #fff;
    background-color: #32BA7C ;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
}

.popup-green button:hover{
    background-color: #2b9f6b;
    cursor: pointer;
}

.popup-red button {
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    color: #fff;
    background-color: #F15249 ;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);  
}

.popup-red button:hover {
    background-color: #c7413a;
}

@media ( max-width : 768px ){
    .popup-green , .popup-red {
        width: 180px;
    }

    .popup-green h2 , .popup-red h2 {
        font-size: 30px;
    }

    .popup-green p , .popup-red p {
        font-size: 13px;
    }
}