/**
 * This file is part of LACI.
 *
 * LACI is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
 *
 * LACI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License along with LACI.
 * If not, see <https://www.gnu.org/licenses/>.
 *
 * Copyright 2023-2024, Lone Star Legal Aid
 */
/**
 * @file
 * AJAX specific styles for flag links.
 *
 * @see flag.html.twig.
 */
.js-flag-message {
  display: inline;
  margin-left: 1.2em;
  animation: flag-flash 3s ease-in-out 1;*/
}

@keyframes flag-flash {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
