body > #going-modal {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: none;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999;
}

body > #going-modal > #going-modal-frame {
    background-color: black;
    border-radius: 1rem;
    max-height: 90vh;
    max-width: 90vw;
    width: 100%;
    margin: auto;
    overflow: scroll;
    padding: 0 2rem;
    height: 100%;
}

body > #going-modal > #going-close {
    display: flex;
    color: black;
    font: normal 400 24px sans-serif;
    border-radius: 50%;
    background-color: yellow;
    position: absolute;
    line-height: 1;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    transition: all 250ms ease-in-out;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

body > #going-modal > #going-close:hover {
    color: yellow;
    background-color: black;
}
