.popup-window{
    position: absolute;
    width: 100%;
    height: 120%;
    top: 0;
    bottom: 0;
}
.popup-content{
    background-color: #fff;
    border: solid #007bff;
    border-width: 1px;
    width: 600px;
    min-height: 200px;
    border-radius: 23px;
    position: absolute;
    color: #212529;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    padding: 2%;
}

@media (max-width: 767px) {
    .popup-content{
        width: 80%;
    }
    

}

.popup-background{
    width: 100%;
    height: 120%;
    z-index: 99999;
    background-color: hsla(0, 0%, 0%, 0.34);
}










/*
========================================================= Edit check
*/
.pop-edit{
 width: 100%;
}

.pop-edit h1{
    margin: 1rem;
    width: 100%;
    font-size: 2rem;
}

.pop-edit-close{
    top:0;
    right: 0;
    transform: translate(50%, -50%);
    position: fixed;
}
.pop-edit-btnarray{
    margin: 1rem;
    width: 100%;
}

.pop-edit-btnarray input{
    margin: 0.5rem;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.pop-edit-btn{
    margin: 2rem;
    aspect-ratio: 1 / 1;
    width: 15%;
    cursor: pointer;
    transition: 50ms;
}
.pop-edit-btn:active{
    transform: scale(0.9);
}