.popup *{
    margin: 0;
    padding: 0;
    list-style: none;

}
.popup{
    width: 400px;
    max-width: 80%;
    height: 300px;
    background-color: #ffffff;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-100%);
    pointer-events: all;
    display: none;
}
.popup-div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-div ul{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.popup-div ul li:nth-child(1) {
    margin-top: 10px;
    height: 50px;
}
.popup-div ul li:nth-child(2){
    margin-top: 10px;
    margin-bottom: 10px;
}
.popup-button{
    position: absolute;
    height: 30px;
    width: 50px;
    bottom: 30px;
    right: 50px;
    border-radius: 5px;
    pointer-events: all;
}
#overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, .5);
    pointer-events: none;
}