.jqmWindow {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    z-index: 3000;
    transform: translateX(-50%);
    box-sizing: border-box;
    width: 1000px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2999;
    background-color: #000;
}

body.jqmOpen {
    overflow: hidden;
}

.jqmWindow .jqmClose {
    float: right;
    border: 0;
    border-radius: 6px;
    padding: 8px 14px;
    background-color: #5A70FB;
    color: #FFF;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.jqmWindow .jqmClose:focus {
    outline: 3px solid #07294A;
    outline-offset: 2px;
}
