.pulse {
    animation: pulse 1s infinite;
}

.pulse:hover{
    animation: none;
}

.hover-anim:hover .pulseX50-on-hover{
    animation: pulseX50 1s infinite;
}

.hover-anim:hover .pulseX50-on-hover:hover{
    animation: none;
}

.hover-anim:hover .pulse-on-hover{
    animation: pulse 1s infinite;
}

.hover-anim:hover .pulse-on-hover:hover{
    animation: none;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulseX50 {
    0% {
        transform: scale(1) translateX(-50%);
    }
    50% {
        transform: scale(1.05) translateX(-47.5%);
    }
    100% {
        transform: scale(1) translateX(-50%);
    }
}



.trans-bg{
    transition: background-color 0.25s linear;
}
.trans-bg::before{
    transition: background-color 0.25s linear;
}


.line-expand {
    display: block;
    width: 100%;
    opacity: 0;
    transform: scale(0, 1); /* Csak szélességre vonatkozik */
    transform-origin: center;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

/* Aktív animáció */
.line-expand-activate:hover .line-expand {
    opacity: 1;
    transform: scale(1, 1);
}