.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999999;
}

.popup-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 100vw;
    height: 60vh;
    padding-top:40px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}
.popup-div {
    display: flex;
    background: #fff;
    justify-content: center;
}
.popup-name {
    position: absolute;
    top: 5px;
    font-size: 22px;
    color: black;
    cursor: pointer;
}

.popup-close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
}