/* Радужный лоадер */
.t-loader {
    background: linear-gradient(
        90deg,
        #ff0000 0%,
        #ff8000 15%,
        #ffff00 30%,
        #00ff00 45%,
        #00ffff 60%,
        #0000ff 75%,
        #8000ff 90%,
        #ff0000 100%
    ) !important;
    background-size: 200% auto !important;
    animation: t-loader-animation 2s linear infinite !important;
    height: 4px !important;
}

@keyframes t-loader-animation {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.cards {
  position: relative;
  overflow: visible; /* Чтобы содержимое не обрезалось */
  height: 70vh; /* Подстройте под высоту ваших блоков */
  margin-bottom: 90px; /* Отступ после */
}

/* Только необходимые стили */
#rec1431983451, #rec1431986151, #rec1431986131, #rec1431986141 {
  position: absolute;
  top: 0;
  left: 10%; /* Подстройте */
  width: 80%; /* Подстройте под вашу ширину в Zero Block */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Начальные позиции без z-index (теперь в JS) */
#rec1431983451 {
  left: 10%;
}

#rec1431986151 {
  left: calc(10% + 40px);
}

#rec1431986131 {
  left: calc(10% + 80px);
}

#rec1431986141 {
  left: calc(10% + 120px);
}