.container-popup{
    width: 100%;
    /* height: 100vh; */
    background: #3c5077;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup{
    width: 700px;
    background: #fff;
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s, visibility 0.4s;
    z-index: 100;
    pointer-events: all;
}
.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
}
.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

/* CSS */
body.modal-open {
    pointer-events: none;
    overflow: hidden;
    touch-action: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Make sure this is higher than the z-index of other elements */
    pointer-events: all;
}