#appError {
    background-color: #F4F6F8;
    height: 100%;
    width: 100%;

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

#appError.hidden-error {
    display: none;
    z-index: -10;
}

#appError .error-panel {
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: solid 1px #e4e4e4;
    padding: 40px;
    border-radius: 20px;
    margin: 10px;
}

@media (max-width: 720px) {
    #appError .error-panel {
        padding: 20px;
    }
}

#appError .error-panel .title {
    color: #CD3131;
    text-align: center;
    margin-bottom: 0;
}

#appError .error-panel .sub-title {
    text-align: center;
}

#appError .error-panel .error-section {
    max-width: 520px;
}

#appError .error-panel .error-section .section-title {
    text-align: center;
    margin-bottom: 0;
}

#appError .error-panel .error-section ul {
    padding-left: 10px;
    margin-top: 14px;
}

#appError .error-panel .error-section li {
    padding: 5px 0;
}

#appError .error-panel .error-section .section-paragraph {
    margin-top: 14px;
}

#appError #errorStacktrace {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff7f7;
    border: solid 1px #CD3131;
    border-radius: 5px;
    font-family: monospace;
}

#appError #errorUserAgent {
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 15px;
    font-family: monospace;
}
