﻿.custom-cardIdioma {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .custom-cardIdioma:hover {
        background-color: #d6e4f0;
    }

.chevron-icon {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.custom-cardIdioma:hover .chevron-icon {
    animation: moveChevron 0.6s infinite alternate;
}

@keyframes moveChevron {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(6px);
    }
}

