.ua-popup{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 11111;
    background-color: rgba(0, 0, 0, 0.4)
}
.ua-popup-inner{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.ua-container *{
    font-family: 'poppins', Sans-Serif;
}
.ua-container{
    width: 100%;
    text-align: center;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 0px;
}
@media(max-width: 600px){
    .ua-container{
        height: 90vh;
        overflow: scroll;
    }
}