/* ===========================
   Advanced Category Popup CTA PRO
=========================== */

#acp-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:20px;
    animation:acpFade .25s ease;
}

#acp-popup{
    position:relative;
    width:100%;
    max-width:560px;
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 70px rgba(0,0,0,.35);
    animation:acpZoom .35s ease;
}

.acp-popup-content{
    padding:45px 40px 40px;
    text-align:center;
}

#acp-popup-close{
    position:absolute;
    top:14px;
    right:16px;
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:#f5f5f5;
    color:#555;
    cursor:pointer;
    font-size:24px;
    line-height:36px;
    transition:.25s;
}

#acp-popup-close:hover{
    background:#e60023;
    color:#fff;
}

.acp-title{
    margin:0;
    font-size:36px;
    font-weight:800;
    line-height:1.2;
    color:#111;
}

.acp-red-title{
    margin:16px 0 22px;
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    color:#d60000;
}

.acp-description{
    margin:0 auto 28px;
    max-width:460px;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.acp-product{
    display:block;
    margin-top:18px;
    font-size:24px;
    font-weight:800;
    color:#d60000;
}

.acp-button{
    display:block;
    width:100%;
    background:#d60000;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    padding:18px;
    border-radius:12px;
    transition:.25s;
    box-sizing:border-box;
}

.acp-button:hover{
    background:#b90000;
    transform:translateY(-2px);
    color:#fff;
}

@keyframes acpFade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes acpZoom{
    from{
        opacity:0;
        transform:scale(.85);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Tablet */

@media(max-width:768px){

    .acp-popup-content{
        padding:35px 28px;
    }

    .acp-title{
        font-size:30px;
    }

    .acp-red-title{
        font-size:28px;
    }

    .acp-description{
        font-size:17px;
    }

    .acp-product{
        font-size:22px;
    }

    .acp-button{
        font-size:20px;
    }

}

/* Mobile */

@media(max-width:480px){

    #acp-popup{
        max-width:95%;
        border-radius:18px;
    }

    .acp-popup-content{
        padding:30px 22px;
    }

    .acp-title{
        font-size:26px;
    }

    .acp-red-title{
        font-size:24px;
    }

    .acp-description{
        font-size:16px;
        line-height:1.7;
    }

    .acp-product{
        font-size:20px;
    }

    .acp-button{
        font-size:18px;
        padding:16px;
    }

    #acp-popup-close{
        width:32px;
        height:32px;
        line-height:32px;
        font-size:20px;
    }

}