import styled, { keyframes } from 'styled-components'; import { colors } from '../../../constants/colors'; const animateDots = keyframes` 0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; } 40% { box-shadow: 0 2.5em 0 0; } `; const ThreeDotsSpinner = styled.div` color: ${colors.brand}; font-size: 0.375em; margin: 2.25em auto; position: relative; text-indent: -9999em; transform: translateZ(0); animation-delay: -0.16s; &, &:before, &:after { border-radius: 50%; width: 2.5em; height: 2.5em; animation-fill-mode: both; animation: ${animateDots} 1.8s infinite ease-in-out; } &:before { content: ''; position: absolute; top: 0; } &:after { content: ''; position: absolute; top: 0; } &:before { left: -3.5em; animation-delay: -0.32s; } &:after { left: 3.5em; animation-delay: 0.64s; } `; export default ThreeDotsSpinner;