:root {
    --overlay: #9b9b9b;
    --card-bg: #ffffff;
    --divider: #e9e9e9;
    --text: #111111;
    --subtext: #4b4b4b;
    --accent: #1677ff;
    --radius: 14px;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    background: var(--overlay);
    color: var(--text);
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.modal {
    width: min(92vw, 420px);
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
}
.modal__body {
    padding: 28px 22px 18px;
}
.title {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
}
.desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: var(--subtext);
}
.actions {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    padding: 14px 16px 18px;
    justify-items: end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.btn-link {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin: 6px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
}
.btn-link_cancel {
    font-weight: 400;
    color: #a4a4a4;
}
.btn-link:focus-visible {
    outline: 2px solid rgba(22,119,255,.35);
    outline-offset: 2px;
}
body.ios .modal__body {
    text-align: center;
}
body.ios .actions {
    justify-items: normal;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}
body.ios .divider {
    height: 1px;
    background: var(--divider);
}
body.ios .modal {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
body.ios .title {
    font-weight: 700;
}
.km_er__success {
    position: absolute;
    font-size: 1px;
    top: 0;
    left: 0;
    opacity: 0.2;
}