/* Styles pour le 4ème élément de la liste add__list */
.add__list li:nth-child(4) i {
    border: 0.125rem solid rgba(255, 165, 0, 0.6);
    background: linear-gradient(to bottom, rgba(255, 165, 0, 0.4), rgba(255, 165, 0, 0.6));
    box-shadow: 0 0 0.375rem rgba(255, 165, 0, 0.6), 0 0 1.125rem rgba(255, 165, 0, 0.4);
    opacity: 0.75;
}

/* Animation pour le 4ème élément */
.add__list._watcher-view li:nth-child(4) {
    animation: to-bottom 0.45s ease 0.5s forwards;
}

/* Effet hover pour le 4ème élément */
.add__list li:nth-child(4):hover i {
    opacity: 1;
}
