.stars.render_animation .star {
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.stars .star:nth-of-type(1) {
    animation-delay: 0s;
}

.stars .star:nth-of-type(2) {
    animation-delay: 0.2s;
}

.stars .star:nth-of-type(3) {
    animation-delay: 0.4s;
}

.stars .star:nth-of-type(4) {
    animation-delay: 0.6s;
}

.stars .star:nth-of-type(5) {
    animation-delay: 0.6s;
}

.rating {
    display: flex;
    gap: 12px;
    margin: 40px 0;
}

.stars {
    display: flex;
    gap: 1.57px;
}

.star:hover {
    cursor: pointer;
}

.star svg,
.star-choice svg {
    fill: #DEE2ED;
}

.star.glow svg,
.star-choice.glow svg {
    fill: #3761E9;
}


.rating-count {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #969AA5;
}