body.poped-up{
    overflow:hidden;
}

/* The Modal (background) */
.modal, .unclosable-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 120; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    /* background-color: rgb(0,0,0); Fallback color */
    background-color: rgba(0,0,0,0.3);
    justify-content: center;
    align-items: center;
}

.modal.selected, .unclosable-modal.selected{
    display:flex;
}
  
/* Modal Content/Box */
.modal-content {
    /* background-color: #fefefe; */
    background: white;;
    /* margin: 15% auto; 15% from the top and centered */
    padding: 3vh 2%;
    border: 2px solid #e7d8d9;
    /* width: 80%; Could be more or less, depending on screen size */
    position: relative;
}
  
/* The Close Button */
.modal-content .close {
    position: absolute;
    top: 1.5vh;
    right: 1.5vw;
    cursor: pointer;
    width:1.2vw;
    height: 1.2vw;
    background: url('/membership-statics/images/close.png') no-repeat center center;
    background-size: contain;
}