/* container */
#ctad2-qr-popup {

    position: absolute;

    z-index: 9999;

    pointer-events: none;

}



/* popup box */
.ctad2-popup-box {

    width: 260px;

    background: var(--ebctad2-ctad-text);

    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 */

#ctad2-qr-popup.ctad2-active .ctad2-popup-box {

    transform: translateY(-10px);

    opacity: 1;

    pointer-events: auto;

}



/* close button */

.ctad2-close {

    position: absolute;

    right: 12px;

    top: 8px;

    font-size: 25px;

    cursor: pointer;

    color: var(--ebctad2-primary);

}



/* title */

.ctad2-popup-box h4 {

    margin-bottom: 12px;
    color: var(--ebctad2-primary);
}



/* number text */

.ctad2-popup-box p {

    margin-top: 8px;

    font-weight: bold;

    color: var(--ebctad2-secondary);

}