error-view
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    height: calc(100vh - 80px);
    background-color: #FAFAFA;
}
error-view .banner
{
    width: 100%;
    max-height: 60vh;
}
error-view div
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
error-view a svg
{
    max-width: calc((100vw - 84px) / 5);
}
@media screen and (max-width: 720px)
{
    error-view
    {
        height: calc(100vh - 96px);
    }
}