#qca-popup{
    max-width:420px;
    margin:30px auto;
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    animation:qcaPopup .3s ease;
}

.qca-popup-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    color:#fff;
    font-size:52px;
    font-weight:bold;
    line-height:90px;
}

#qca-popup h2{
    margin:10px 0;
    font-size:28px;
    color:#222;
}

#qca-popup p{
    margin:0;
    font-size:18px;
    color:#666;
}

@keyframes qcaPopup{

    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}