.jmodal {
    position: fixed;
    width: 900px;
    height: 600px;
    background-color: #fff;
    z-index: 1099;
    display: none;
    overflow-y: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 20px -3px rgb(0 0 0 / 25%);
    border-radius: 5px;
}

.jmodal-overlay {
    position: fixed;
    z-index: 1098;
    background: rgba(255, 255, 255, 0.3);
    width: 100%!important;
    height: 100vh!important;
    display: none;
    top: 0px;
}

.jmodal-btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background-image: url("cancel.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    cursor: pointer;
    border-radius: 50px;
    z-index: 99;
}

.jmodal-btn-close:hover {
    background-color: #dedede;
}

.jmodal-inside {
    height: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .jmodal {
        width: 100%!important;
        max-width: 100%!important;
    }
}