/* container */
#ctaf1-qr-popup {

    position: absolute;

    z-index: 9999;

    pointer-events: none;

}



/* popup box */
.ctaf1-popup-box {

    width: 260px;

    background: #fff;

    padding: 22px;

    border-radius: 14px;

    text-align: center;

    box-shadow: 0 18px 45px rgba(0,0,0,.18);

    transform: translateY(40px);

    opacity: 0;

    transition: .35s ease;

}



/* active animation */

#ctaf1-qr-popup.ctaf1-active .ctaf1-popup-box {

    transform: translateY(-10px);

    opacity: 1;

    pointer-events: auto;

}



/* close button */

.ctaf1-close {

    position: absolute;

    right: 12px;

    top: 8px;

    font-size: 22px;

    cursor: pointer;

}



/* title */

.ctaf1-popup-box h4 {

    margin-bottom: 12px;

}



/* number text */

.ctaf1-popup-box p {

    margin-top: 8px;

    font-weight: bold;

}