.menu-item-personnaliser .mm_menu_content_title .animation-personalisation-container {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 6px;
}

.menu-item-personnaliser .mm_menu_content_title .personalisation-without-border-svg {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-item-personnaliser .mm_menu_content_title .animation-personalisation-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(#ed1a32, #f8d01a, #aad733, #34a0b4, #624a9c, #c81a82, #ed1a32);
    border-radius: 50%;
    z-index: 0;
    animation: spin 1.4s linear infinite;
    animation-play-state: paused;
}

.menu-item-personnaliser .mm_menu_content_title .personalisation-without-border-svg::before {
    content: "";
    background-color: white;
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    right: 25px;
    top: 25px;
    border: 5px solid #eee;
    z-index: 2;
}

.menu-item-personnaliser .mm_menu_content_title:hover .animation-personalisation-container::before {
    animation-play-state: running;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}