@charset "UTF-8";

/* ===============================================
  Animation
=============================================== */

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes load-circle {
    to { transform: rotate(360deg); }
}

@keyframes horizontal {
    0%, 12%, 24% { transform: translate(0, 0); }
    6%, 18% { transform: translate(3px, 0); }
}

.c-icon--new::before {
    content: 'fiber_new';
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    margin-left: 0.35rem;
    vertical-align: middle;
    color: var(--color-accent);
    animation: horizontal 2s ease infinite;
}

.anim-fade-in {
    animation: fade-in 0.6s ease forwards;
}

.anim-fade-in-up {
    animation: fade-in-up 0.6s ease forwards;
}

.anim-loading {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-left-color: var(--color-white);
    border-radius: 50%;
    animation: load-circle 0.9s linear infinite;
}
