.shimmer-icon path {
    animation: blink 3s ease-in-out infinite;
}


@keyframes blink {

    0%,
    100% {
        fill: #00BF63;
    }

    /* เขียวเข้ม */
    50% {
        fill: red;
    }

    /* เขียวอ่อน */
}

.-colorpower {
    background-color: #929292FF;
}

.item-list li.active {
    padding: 10px;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

/* สีตอน active */
.item-list li.active.phase-0 {
    background-color: rgb(214, 214, 214);
}

.item-list li.active.phase-1 {
    background-color: rgba(229, 57, 53, 0.3);
}

.item-list li.active.phase-2 {
    background-color: rgba(46, 204, 113, 0.3);
}

.item-list li.active.phase-3 {
    background-color: rgba(74, 144, 226, 0.3);
}

.item-list li.active.phase-4 {
    background-color: rgba(241, 196, 15, 0.3);
}