.popup_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(48, 62, 101, 0.70);
    text-align: center;
    overflow: auto;
    padding: 15px;   
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.popup_wrapper.in{
    opacity: 1;
    visibility: visible;
}

.popup_wrapper:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 100%;
}
.popup_inner{
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 6px;
    text-align: left;
    padding: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
}
.popup_wrapper.in .popup_inner{
    opacity: 1;
    transform: translateY(0px) scale(1);
}
.popup_close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_overlay_close{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index:0;
}
.popup_heading_wrapper{
    margin-bottom: 20px;
}
.popup_heading{
    font-size: 28px;
    font-weight: 500;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 5px;
}
.popup_subheading{
    text-align: center;
    color: #7a85b1;
    margin: 0;
    font-size: 16px;
}

@media (max-width:768px){
    .popup_wrapper{
        padding-top: 15%;
    }
    .popup_wrapper::before{
        display: none;
    }
    .popup_heading{
        font-size: 18px;
    }
    .popup_subheading{
        font-size: 14px;
    }
}