/* Scroll lock */
html.cmr-lock, html.cmr-lock body { overflow: hidden; }

/* Hidden by aria */
.cmr-modal[aria-hidden="true"] { display: none; }


.cmr-modal {
    position: fixed; inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
}

.cmr-backdrop {
    position: absolute; inset: 0;
    background: rgb(36 78 38 / 88%);
}

.cmr-panel {
    position: relative;
    width: min(860px, calc(100% - 32px));
    max-height: calc(100% - 32px);
    overflow: auto;
    margin: 16px auto;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 20px 80px rgba(0,0,0,.25);
}

.cmr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 5px;
    display: flex;
    justify-content: center;
    border: 0;
    background: #25693b;
    z-index: 99;
    font-size: 30px;
    line-height: 10px;
    cursor: pointer;
}

.cmr-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.cmr-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cmr-btn {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #13EC25;
    font-weight: 600;
    cursor: pointer;
}

.cmr-btn:hover {
    background: #efefef;
}
