.error {
    position: relative;
    background: var(--primary);
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#error-windows-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}
.error-window {
    position: absolute;
    width: 260px;
    pointer-events: auto;
    user-select: none;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid white;
    display: inline-block;
    background: var(--primary);
    max-width: 300px;
    z-index: 1;
}
.error-window .top {
    padding: 10px 20px;
    display: block;
    color: white;
    text-align: right;
    border-bottom: 2px solid white;
    display: flex;
    gap: 4px;
    cursor: move;
}
.error-window .top span {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    display: block;
    border-radius: 100px;
}
.error-window .bot {
    padding: 20px 60px 20px 20px;
    display: block;
    color: white;
    background-size: 50px, 50px;
}
.error-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px 11px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}