.popup {
    display: none;
    position: fixed;
    padding: 50%;
    top: 0;
    /* width: 100%; */
    left: 0;
    background-color: rgb(216, 215, 215,.5) !important;
    z-index: 9999999999999999;
}
.popupClose{
    cursor:pointer;
    text-decoration:underline;
    background-color: #2084B6;
}
.popupIn{
    /* display:none; */
    position:fixed;
    top:10%;
    width:50%;
    left:25%;
    background-color: #330D70!important;
    border-radius: 10px;
    overflow: hidden;
    /* z-index: 999; */
}
.pop_msg{
    color: #ffff;
    background-color: #2084B6;
    font-size: 14px;
    padding: 7px 10%;
    margin: 10px 0 0;
    /* background-image: url(../images/favicon.png);
        background-size: 50% 50%;
        background-repeat: no-repeat;
        background-position: center; */
    /* overflow: scroll; */
}
.btn_close{
    text-align: center;
    /* right: 0; */
    float: right;
    margin:5px 20px;
    

}
.pop_msg p, a{
    font-size: 14px;
    line-height: 1.5;
    color: #fff
}
.pop_msg a:hover{
    color: #FC8528;
    font-weight: 700;
}
@media (max-width: 701px){
    .popupIn{
        /* display:none; */
        position:fixed;
        top:10%;
        width:100%;
        left:0;
        background-color: #330D70!important;
        border-radius: 10px;
        overflow: hidden;
        /* z-index: 999; */
    }
    .pop_msg p, a {
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
    }
    .popup {
       
        background-color: rgb(216, 215, 215,.5) !important;
    }
}