.textpopup {
    
    background-color:rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:123;
    visibility:hidden;
    transform:scale(0);
    opacity:0;
    transition:all 0.3s;
}



.textpopup .icon {
    display: inline-block;
    width: 2em;
    height: 2em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    margin-bottom: 5px;
}


.textpopup svg {
    font-size:18px;
    color:#000;
}



.popuptextbtn {
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 25px;
    border: 0;
    border-radius: 15px;
    padding: 5px;
    transition: all 0.3s;
    width: 70%;
    margin: 0 auto;
    cursor:pointer;
    outline:none;
}


.closepopup {
    padding:15px;
}

.popuptextbtn:hover {
    transform:scale(1.05);
    color:#fff;
}

.popuptextinner {
    
    background: #fff;
    border-radius: 0px;
    max-height:90%;
    overflow-y:scroll;
    padding-bottom: 25px;
    max-width:45em;
    margin: 0 auto;
    padding-top: 10px;
    margin-top:55px;
}

.popupcontent {
    padding:0px 2em;
}

.popuptextinner .popuptextbtn , .popuptextinner .popupcontent {
    text-align:center;
    margin:0 auto;
}

.popuplogo {
    margin:0 auto;
    text-align:center;
    margin:25px;
}

.opened {
    
    visibility:visible;
    transform:scale(1);
    opacity:1;
}


@media(max-width:960px) {
    .popuptextinner {
        width:100%;
        height:100%;
        max-height:100%!important;
        border-radius:0px;
        margin-top:0px;
        
    }
    
    .autocompletepopup {
        padding:15px 0px;
    }
}