/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 18 2025 | 23:14:17 */
/* ========================================
   АНИМАЦИЯ БЛИКА ДЛЯ КНОПКИ "ЗАГРУЗИТЬ БОЛЬШЕ"
======================================== */

/* Основные стили кнопки с цветом и курсором */
.eael-gallery-load-more.elementor-button {
  overflow: hidden;
  position: relative;
  background: #F44145;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Эффект внешнего свечения при наведении */
.eael-gallery-load-more.elementor-button:hover {
  box-shadow: 0 15px 35px rgba(244, 65, 69, 0.4);
}

/* Псевдоэлемент для анимации блика */
.eael-gallery-load-more.elementor-button:after {
  content: "";
  margin-left: 60px;
  width: 50px;
  height: 300px;
  background: #fff;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -150px;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  filter: blur(20px);
}

/* Анимация движения блика (webkit) */
@-webkit-keyframes slideme { 
  0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } 
}

/* Анимация движения блика (стандартная) */
@keyframes slideme { 
  0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } 
}