

/* ==========================================================
   FENÊTRE D'ERREUR
   ========================================================== */
#error-window {
    width: 90%;
    max-width: 400px;
}

.error-body {
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    color: black;
}

.error-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    background-color: #ff3b3b;
    border-radius: 50%;
    position: relative;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #ff3b3b;
}

.error-icon::before, .error-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 3px;
    background-color: white;
    transform-origin: center;
}
.error-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.error-icon::after { transform: translate(-50%, -50%) rotate(-45deg); }

.error-message {
    flex-basis: calc(100% - 60px);
    text-align: left;
    margin: 0;
    font-size: 12px;
}

.ok-button {
    min-width: 75px;
    height: 23px;
    margin-top: 20px;
    padding: 0 12px;
    border: 1px solid black;
    box-shadow: 1px 1px 0px black, inset 1px 1px 0 #fff;
    background: #c0c0c0;
    cursor: pointer;
    font-size: 12px;
}