.modalWrapperBg.closed {
    display: none;
}

.modalWrapperBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* background: #0c0d14; */
    z-index: 9999999;

    display: flex;
    justify-content: center;
    align-items: center;

    overscroll-behavior: contain;
    overflow: hidden;
}

.modalWrapperBg .modalWrapper {
    background: #212233;
    position: relative;
    border-radius: 10px;
    margin: 10px;
    padding: 30px 20px;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.modalWrapperBg .modalWrapper h1 {
    font-size: 24px;
    line-height: 31px;
    padding-right: 36px;
}

.modalWrapperBg .modalWrapper h2 {
    font-size: 18px;
    line-height: 24px;
    margin: 1.25rem 0 0.5rem 0;
}

.modalWrapperBg .modalWrapper p {
    padding: 0.5rem 0 0.75rem 0;
    line-height: 1.55;
}

.modalWrapperBg .modalWrapper a {
    color: var(--brand-colour);
    text-decoration: underline;
}

.closeIcon {
    mask-image: url("/assets/close-47848069.svg");
    background-color: #fff;
    height: 30px;
    width: 30px;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    cursor: pointer;
    margin: 0 0 0 5px;
    position: absolute;
    top: 20px;
    right: 20px;
}
