.full-acf-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-acf-popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    /*max-width: 500px;*/
    max-width: 70%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-acf-popup-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.full-acf-popup-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.full-acf-popup-message {
    margin-bottom: 15px;
    font-size: 16px;
}

.full-acf-popup-price {
    font-size: 20px;
    color: #d00;
    font-weight: bold;
    margin-bottom: 20px;
}

.full-acf-popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: left;
}

.full-acf-popup-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 150px;
}

.full-acf-popup-accept {
    background: #4CAF50;
    color: white;
}

.full-acf-popup-decline {
    background: #f44336;
    color: white;
}

/*--------------*/
.full-acf-popup-content .left_side {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.full-acf-popup-content .left_side img {
    margin-bottom: 0px;
}

.full-acf-popup-content .right_side {
    width: 50%;
    box-sizing: border-box;
    text-align: left;
    padding-left: 30px;
}

/*-----------Responsive-Starts------------*/


@media only screen and (max-width: 1025px){
    .full-acf-popup-content {
        max-width: 95%;
    }
}

@media only screen and (max-width: 800px) {

    .full-acf-popup-content {
        flex-wrap: wrap;
    }

    .full-acf-popup-content .left_side,
    .full-acf-popup-content .right_side {
        width: 100% !important;
    }

    .full-acf-popup-content .left_side img{
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .full-acf-popup-content .right_side {
        padding-left: 0px;
        margin-top: 15px;
    }

    .full-acf-popup-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

}