div#PopUpBody {
    display: none;
}

div#PopUpBody.active {
    position: fixed;
    display: block;
    width: 50vw;
    z-index: 9999999;
    right: 25vw;
    background: var(--Secondery);
    box-sizing: border-box;
    padding: 0 16px;
    border-radius: 8px;
    top: 35vh;
    border: 1px dashed var(--Primary);
    border-width: 6px;
}

p#PopUpTitle {
    font-size: 20px;
    text-align: center;
    font-weight: 900;
    color: var(--Primary);
}

#PopUpText * {
    font-size: 17px;
}

@media screen and (max-width: 1300px) {
    div#PopUpBody.active {
        width: 80vw;
        right: 10vw;
    }
}

@media screen and (max-width: 768px) {
    #PopUpText * {
        font-size: 14px;
    }

    #PopUpText ol {
        padding: 0 20px 0 0;
    }
}

@media screen and (max-width: 500px) {
    div#PopUpBody.active {
        width: 90vw;
        right: 5vw;
    }
    p#PopUpTitle {
        font-size: 16px;
    }
}
@media screen and (max-width: 400px) {
    div#PopUpBody.active {
        top: 25vh;
    }
    #PopUpText * {
        font-size: 13px;
    }
}