Skip to content

Instantly share code, notes, and snippets.

@mariomc
Created March 3, 2021 14:00
Show Gist options
  • Save mariomc/bb2a208342b7c08f79d13ad70e0af39a to your computer and use it in GitHub Desktop.
Save mariomc/bb2a208342b7c08f79d13ad70e0af39a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@mixin sequential-opacity-animation-of-tiles {
@for $i from 1 through 10 {
.section-container__tray-item.animated {
&:nth-of-type(#{$i}) {
@for $j from 1 through 50 {
.swiper-slide {
// Delay the animation. Delay increases as items sequence.
&:nth-of-type(#{$j}) {
$animation-delay: ($i * 0.05s) + $j * 0.025s;
animation-delay: $animation-delay;
}
}
}
}
}
}
}
.section-container__tray-item.animated .swiper-slide {
animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) .5 both fade-in;
}
@include sequential-opacity-animation-of-tiles();
.section-container__tray-item.animated .swiper-slide {
animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5 both fade-in;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(1) {
animation-delay: 0.075s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(2) {
animation-delay: 0.1s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(3) {
animation-delay: 0.125s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(4) {
animation-delay: 0.15s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(5) {
animation-delay: 0.175s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(6) {
animation-delay: 0.2s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(7) {
animation-delay: 0.225s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(8) {
animation-delay: 0.25s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(9) {
animation-delay: 0.275s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(10) {
animation-delay: 0.3s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(11) {
animation-delay: 0.325s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(12) {
animation-delay: 0.35s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(13) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(14) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(15) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(16) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(17) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(18) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(19) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(20) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(21) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(22) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(23) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(24) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(25) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(26) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(27) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(28) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(29) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(30) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(31) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(32) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(33) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(34) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(35) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(36) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(37) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(38) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(39) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(40) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(41) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(42) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(43) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(44) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(45) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(46) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(47) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(48) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(49) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(50) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(1) {
animation-delay: 0.125s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(2) {
animation-delay: 0.15s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(3) {
animation-delay: 0.175s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(4) {
animation-delay: 0.2s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(5) {
animation-delay: 0.225s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(6) {
animation-delay: 0.25s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(7) {
animation-delay: 0.275s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(8) {
animation-delay: 0.3s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(9) {
animation-delay: 0.325s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(10) {
animation-delay: 0.35s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(11) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(12) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(13) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(14) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(15) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(16) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(17) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(18) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(19) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(20) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(21) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(22) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(23) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(24) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(25) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(26) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(27) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(28) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(29) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(30) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(31) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(32) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(33) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(34) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(35) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(36) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(37) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(38) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(39) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(40) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(41) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(42) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(43) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(44) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(45) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(46) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(47) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(48) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(49) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(50) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(1) {
animation-delay: 0.175s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(2) {
animation-delay: 0.2s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(3) {
animation-delay: 0.225s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(4) {
animation-delay: 0.25s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(5) {
animation-delay: 0.275s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(6) {
animation-delay: 0.3s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(7) {
animation-delay: 0.325s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(8) {
animation-delay: 0.35s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(9) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(10) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(11) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(12) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(13) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(14) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(15) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(16) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(17) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(18) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(19) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(20) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(21) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(22) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(23) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(24) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(25) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(26) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(27) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(28) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(29) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(30) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(31) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(32) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(33) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(34) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(35) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(36) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(37) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(38) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(39) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(40) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(41) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(42) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(43) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(44) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(45) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(46) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(47) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(48) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(49) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(50) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(1) {
animation-delay: 0.225s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(2) {
animation-delay: 0.25s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(3) {
animation-delay: 0.275s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(4) {
animation-delay: 0.3s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(5) {
animation-delay: 0.325s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(6) {
animation-delay: 0.35s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(7) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(8) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(9) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(10) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(11) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(12) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(13) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(14) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(15) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(16) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(17) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(18) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(19) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(20) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(21) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(22) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(23) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(24) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(25) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(26) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(27) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(28) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(29) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(30) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(31) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(32) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(33) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(34) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(35) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(36) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(37) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(38) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(39) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(40) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(41) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(42) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(43) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(44) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(45) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(46) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(47) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(48) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(49) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(50) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(1) {
animation-delay: 0.275s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(2) {
animation-delay: 0.3s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(3) {
animation-delay: 0.325s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(4) {
animation-delay: 0.35s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(5) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(6) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(7) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(8) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(9) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(10) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(11) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(12) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(13) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(14) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(15) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(16) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(17) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(18) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(19) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(20) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(21) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(22) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(23) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(24) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(25) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(26) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(27) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(28) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(29) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(30) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(31) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(32) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(33) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(34) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(35) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(36) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(37) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(38) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(39) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(40) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(41) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(42) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(43) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(44) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(45) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(46) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(47) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(48) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(49) {
animation-delay: 1.475s;
}
.section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(50) {
animation-delay: 1.5s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(1) {
animation-delay: 0.325s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(2) {
animation-delay: 0.35s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(3) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(4) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(5) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(6) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(7) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(8) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(9) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(10) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(11) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(12) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(13) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(14) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(15) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(16) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(17) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(18) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(19) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(20) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(21) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(22) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(23) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(24) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(25) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(26) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(27) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(28) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(29) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(30) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(31) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(32) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(33) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(34) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(35) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(36) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(37) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(38) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(39) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(40) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(41) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(42) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(43) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(44) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(45) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(46) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(47) {
animation-delay: 1.475s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(48) {
animation-delay: 1.5s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(49) {
animation-delay: 1.525s;
}
.section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(50) {
animation-delay: 1.55s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(1) {
animation-delay: 0.375s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(2) {
animation-delay: 0.4s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(3) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(4) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(5) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(6) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(7) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(8) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(9) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(10) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(11) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(12) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(13) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(14) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(15) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(16) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(17) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(18) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(19) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(20) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(21) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(22) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(23) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(24) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(25) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(26) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(27) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(28) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(29) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(30) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(31) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(32) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(33) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(34) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(35) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(36) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(37) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(38) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(39) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(40) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(41) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(42) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(43) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(44) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(45) {
animation-delay: 1.475s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(46) {
animation-delay: 1.5s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(47) {
animation-delay: 1.525s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(48) {
animation-delay: 1.55s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(49) {
animation-delay: 1.575s;
}
.section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(50) {
animation-delay: 1.6s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(1) {
animation-delay: 0.425s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(2) {
animation-delay: 0.45s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(3) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(4) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(5) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(6) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(7) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(8) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(9) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(10) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(11) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(12) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(13) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(14) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(15) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(16) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(17) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(18) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(19) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(20) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(21) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(22) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(23) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(24) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(25) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(26) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(27) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(28) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(29) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(30) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(31) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(32) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(33) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(34) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(35) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(36) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(37) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(38) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(39) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(40) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(41) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(42) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(43) {
animation-delay: 1.475s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(44) {
animation-delay: 1.5s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(45) {
animation-delay: 1.525s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(46) {
animation-delay: 1.55s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(47) {
animation-delay: 1.575s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(48) {
animation-delay: 1.6s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(49) {
animation-delay: 1.625s;
}
.section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(50) {
animation-delay: 1.65s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(1) {
animation-delay: 0.475s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(2) {
animation-delay: 0.5s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(3) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(4) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(5) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(6) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(7) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(8) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(9) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(10) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(11) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(12) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(13) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(14) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(15) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(16) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(17) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(18) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(19) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(20) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(21) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(22) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(23) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(24) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(25) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(26) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(27) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(28) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(29) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(30) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(31) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(32) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(33) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(34) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(35) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(36) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(37) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(38) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(39) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(40) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(41) {
animation-delay: 1.475s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(42) {
animation-delay: 1.5s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(43) {
animation-delay: 1.525s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(44) {
animation-delay: 1.55s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(45) {
animation-delay: 1.575s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(46) {
animation-delay: 1.6s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(47) {
animation-delay: 1.625s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(48) {
animation-delay: 1.65s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(49) {
animation-delay: 1.675s;
}
.section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(50) {
animation-delay: 1.7s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(1) {
animation-delay: 0.525s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(2) {
animation-delay: 0.55s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(3) {
animation-delay: 0.575s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(4) {
animation-delay: 0.6s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(5) {
animation-delay: 0.625s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(6) {
animation-delay: 0.65s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(7) {
animation-delay: 0.675s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(8) {
animation-delay: 0.7s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(9) {
animation-delay: 0.725s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(10) {
animation-delay: 0.75s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(11) {
animation-delay: 0.775s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(12) {
animation-delay: 0.8s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(13) {
animation-delay: 0.825s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(14) {
animation-delay: 0.85s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(15) {
animation-delay: 0.875s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(16) {
animation-delay: 0.9s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(17) {
animation-delay: 0.925s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(18) {
animation-delay: 0.95s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(19) {
animation-delay: 0.975s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(20) {
animation-delay: 1s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(21) {
animation-delay: 1.025s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(22) {
animation-delay: 1.05s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(23) {
animation-delay: 1.075s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(24) {
animation-delay: 1.1s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(25) {
animation-delay: 1.125s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(26) {
animation-delay: 1.15s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(27) {
animation-delay: 1.175s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(28) {
animation-delay: 1.2s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(29) {
animation-delay: 1.225s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(30) {
animation-delay: 1.25s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(31) {
animation-delay: 1.275s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(32) {
animation-delay: 1.3s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(33) {
animation-delay: 1.325s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(34) {
animation-delay: 1.35s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(35) {
animation-delay: 1.375s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(36) {
animation-delay: 1.4s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(37) {
animation-delay: 1.425s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(38) {
animation-delay: 1.45s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(39) {
animation-delay: 1.475s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(40) {
animation-delay: 1.5s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(41) {
animation-delay: 1.525s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(42) {
animation-delay: 1.55s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(43) {
animation-delay: 1.575s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(44) {
animation-delay: 1.6s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(45) {
animation-delay: 1.625s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(46) {
animation-delay: 1.65s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(47) {
animation-delay: 1.675s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(48) {
animation-delay: 1.7s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(49) {
animation-delay: 1.725s;
}
.section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(50) {
animation-delay: 1.75s;
}
{
"sass": {
"compiler": "dart-sass/1.26.11",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment