@charset "UTF-8";
@-webkit-keyframes fadeIn
{
0%
{
opacity: 0;
}
to
{
opacity: 1;
}
}
@keyframes fadeIn
{
0%
{
opacity: 0;
}
to
{
opacity: 1;
}
}
.fadeIn
{
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.animated
{
-webkit-animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite
{
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.delay-1s
{
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.animated.delay-2s
{
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.animated.delay-3s
{
-webkit-animation-delay: 3s;
animation-delay: 3s;
}
.animated.delay-4s
{
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.animated.delay-5s
{
-webkit-animation-delay: 5s;
animation-delay: 5s;
}
@media (prefers-reduced-motion)
{
.animated
{
-webkit-animation: unset !important;
-webkit-transition: none !important;
animation: unset !important;
transition: none !important;
}
}
