.modalBackground {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalValidation {
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: 2rem;
    min-width: 25% !important;
}

.modalAddDefectEL {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.modalError {
    background-color: white;
    padding: 1rem;
    color: black;
    transition: all 2s;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 15%);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    min-width: 35%;
    max-height: 90%;
    overflow-y: auto;
}

.open {
    animation: openModal 0.2s;
    margin: 2rem;
    color: black;
}

.close {
    animation: closeModal 0.2s;
}

@keyframes openModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes closeModal {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.row-title-modal {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: center;
    justify-content: space-between;
}

.row-followed {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.round {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 5px;
    margin: 10px;
}

.round:hover {
    cursor: pointer;
}

.round.valid {
    background-color: var(--success);
}

.round.select {
    width: 15px;
    height: 15px;
    border-radius: 10px;
}

.round.actual {
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background-color: transparent;
    border: solid var(--primary) 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ligne {
    height: 2px;
    background-color: var(--secondary);
}

.ligne.select {
    height: 3px;
}
