.error-overlay{
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0 , 0.6);
    z-index: 99999;
}

.on-error-overlay {
    position: relative;
    z-index: 100000;
}

.error-overlay-highlight{
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    background: #ffd7d7;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5em;
    border: 0.2em solid #a90000;
    border-radius: 0.5em;
    z-index: -1;
}
