/*==================================================
Quick View Popup
==================================================*/

.acd-quick-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

    padding:30px;

}

.acd-quick-popup.active{

    display:flex;

}

.acd-popup-box{

    background:#fff;

    width:100%;

    max-width:1000px;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    animation:acdPopup .35s ease;

}

@keyframes acdPopup{

    from{

        transform:translateY(40px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

.acd-popup-close{

    position:absolute;

    right:20px;

    top:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#8b5cf6;

    color:#fff;

    cursor:pointer;

    font-size:20px;

}

.acd-popup-content{

    padding:40px;

}

@media(max-width:768px){

.acd-popup-content{

padding:25px;

}

}