.popup_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.popup_inner {
    max-width: 600px;    
    background: #fff;
    position: relative; 
}

.popup_inner_block{
    display: block;
    width: 100%;
    height: 600px;
    overflow-y: auto;
    padding: 5%;
    box-sizing: border-box;
}

/* .popup_inner_block::-webkit-scrollbar {
    display: none;
}

.popup_inner_block {
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

.popup_inner h2 {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.popup_inner h2:before {
    content: '';
    position: absolute;
    width: 142px;
    height: 1px;
    background: #0091ff;
    z-index: 1;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
}


.popup_inner p {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #6d7278;
    text-align: center;
    margin: 13.5px 0 20px;
}

.popup_crs {
    width: 26px;
    height: 26px;
    position: absolute;
    z-index: 10;
    background: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    right: -10px;
    top: -10px;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0);
}