#RS_modalWrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 800;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}

#RS_modal {
    background: var(--RS_BG_white);
    padding: 2rem;
    width: 100%;
    text-align: center;
}

#RSM_title {
    color: var(--font_blue_dark);
    line-height: 1.75rem;
}

#RSM_buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: space-evenly;
    align-items: flex-end;
}

#RSM_buttons > button {
    font-weight: 700;
    min-width: 40%;
}

#RSM_ok {
    background: var(--RS_blue_dark);
    color: var(--font_white);
}

#RSM_cancel {
    background: var(--RS_BG_grey);
    color: var(--font_black);
}