/* body.modal-open {
    overflow: hidden;
} */

.overlayer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    /* position: absolute; */
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    animation: fadeInOverlay 0.3s ease-in-out;
    z-index: 999;
}


/* Styles for the modal */

.modalew {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    /* top: 50%;
    left: 50%; */
    /* top: 0;
    left: 0; */
    /* transform: translate(-50%, -50%); */
    z-index: 999;
    animation: zoomInModal 0.3s ease-in-out;
}


/* Close button styles */

.close-btn {
    cursor: pointer;
    font-size: 18px;
    color: #333;
    float: right;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomInModal {
    from {
        top: -150px;
        /* transform: translate(-50%, -50%) scale(0); */
    }
    to {
        top: 0;
        /* transform: translate(-50%, -50%) scale(1); */
    }
}