<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* 
Shine
https: //uiverse.io/neerajbaniwal/hungry-mule-59
*/
.shine {
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    */
    pa1dding: 0 8px;
    background: linear-gradient(to right, #ffffffff 0, var(--lai-color-blue) 20%, #ffffffff 30%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
}

@keyframes shine {
    0% {
        background-position: 0;
    }
/*
    50% {
        background-position: 50px;
    }
*/
    100% {
        background-position: 200px;
    }
}

/*
@-moz-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@-o-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

*/



/* 
�仂弍舒于仍�亠仄 "于亳弍�舒�亳�" 仗�亳 仆舒于亠亟亠仆亳亳 亟仍� 弍仂仍��亠亞仂 于仆亳仄舒仆亳�
use it like this
.lai-cta-link:hover {
  animation: shake 0.3s ease-in-out infinite alternate;
}
*/
@keyframes shake {
    0% {
        transform: scale(1.05) rotate(1deg);
    }

    50% {
        transform: scale(1.05) rotate(-1deg);
    }

    100% {
        transform: scale(1.05) rotate(1deg);
    }
}

/* �亠亞从舒� 舒仆亳仄舒�亳� "亟��舒仆亳�" */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-shadow-size {
    0% {
        box-shadow: 0 0 5px 0px var(--lai-color-blue);
    }

    50% {
        box-shadow: 0 0 25px 0px var(--lai-color-blue);
    }

    100% {
        box-shadow: 0 0 5px 0px var(--lai-color-blue);
    }
}</pre></body></html>