


/* CSS Document */


.customp{

border:1px solid;
border-color:#21C2F8;
padding: 30px;

}

/* popup css */

 
#ac-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255,255,255,.6); */
    z-index: 10000;
}

#popup {
    width: 424px;
    height: 580px;
    background: #FFFFFF;
    border: 5px solid #000;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: #64686e 0px 0px 3px 3px;
    -moz-box-shadow: #64686e 0px 0px 3px 3px;
    -webkit-box-shadow: #64686e 0px 0px 3px 3px;
   /*  position: absolute;
    top: 150px; 
    left: 375px; */
    margin: 50px auto; /* Center the popup vertically and horizontally */
    display: none; /* Hide initially */
    position: relative; /* Add relative positioning */
}

#popup img {
    max-width: 90%;
    max-height: 90%;
    margin: 20px auto;
    display: block;
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


@media only screen and (max-width: 767px) {
    #popup {
        border-width: 3px; /* Decrease border width for smaller screens */
        border-radius: 15px; /* Decrease border radius for smaller screens */
        max-width: 95%; /* Adjusted for smaller screens */
        max-height: 67vh;
    }

    #popup img {
        border-radius: 15px; /* Adjust border radius for smaller screens */
    }

    .close-btn {
        top: 5px; /* Adjust close button position for smaller screens */
        right: 5px; /* Adjust close button position for smaller screens */
    }
}