.custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.custom-modal-content {
    overflow: scroll;
    position: relative;
    background: white;
    padding: 2rem;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-modal-btn {
    position: absolute;
    z-index: 1112;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media screen and (max-width:760px){
    .close-modal-btn {
     top: 14px !important;
    right: 14px !important;
        
    }
}