/*
 Theme Name:   Litronix 2025 WP child
 Theme URI:    https://litronix.eu/
 Description:  A custom child theme for the Twenty Twenty-Five default theme.
 Author:       Martin Pihrt
 Author URI:   https://litronix.eu/
 Template:     twentytwentyfive
 Version:      0.0.1
 Text Domain:  litronix-theme
*/

@keyframes showmore-anim{
    0% {
      transform: translateY(0);
    }
    10% {
      transform: translateY(10px); /* Down 1 */
    }
    20% {
      transform: translateY(0);   /* Up 1 */
    }
    30% {
      transform: translateY(10px); /* Down 2 */
    }
    40% {
      transform: translateY(0);   /* Up 2 */
    }
    /* "Pause" from 40% to 100% by staying at 0 */
    100% {
      transform: translateY(0);
    }
}

.showmore-container{

    animation: showmore-anim 2.5s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none !important;

  }
  .showmore-container a{
    text-decoration: none !important;
  }

.litronix-header-block-margin-fix{
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}





