.popup-overlay-20{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, .7);
    z-index: -1;
    opacity: 0;
    user-select: none;
    transition: 1s;
}

.popup-overlay-98{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, .7);
    z-index: -1;
    opacity: 0;
    user-select: none;
    transition: 1s;
}

.popup-box-container{
    background-color: #ffff;
    width: 400px;
    height: 50vh;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%);
    border-radius: 10px;
}

.check-container img{
    background-color: #ffff;
    height: 100px;
}

.popup-message-container{
    margin-top: 15px;
}

.btn20{
    background-color: #0D6EFD;
    border: transparent;
    border-radius: 10px;
    padding: 15px;
    color: #ffff;
    margin-top: 30px;
    width: 25%;
    font-size: 90%;
    cursor: pointer;
}

.btn98{
    background-color: #0D6EFD;
    border: transparent;
    border-radius: 10px;
    padding: 15px;
    color: #ffff;
    margin-top: 30px;
    width: 25%;
    font-size: 90%;
    cursor: pointer;
}

@media only screen and (max-width:400px){
    .popup-box-container{
        width: 300px;
    }
}

.active_20{
    opacity: 1;
    z-index: 1;
}

.active_98{
    opacity: 1;
    z-index: 1;
}