.ball-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; } 
.ball-loader__icons { display: flex; flex-direction: row; justify-content: center; } 
.ball-loader__icon { margin: 0 0.5rem; border-radius: 50%; width: 20px; height: 20px; animation: bounce 0.5s ease-out infinite alternate; } 
.ball-loader__icon1 { background-color: var(--color-brand); /* Replace with actual $color-brand */ animation-delay: 0.25s; } 
.ball-loader__icon2 { background-color: var(--color-brand-two); /* Replace with actual $color-brand-two */ animation-delay: 0.5s; } 
.ball-loader__icon3 { background-color: var(--color-brand-light); /* Replace with actual $color-brand-light */ animation-delay: 0.75s; } 
.ball-loader__icon4 { background-color: var(--primary-dark-blue); /* Replace with actual $primary-dark-blue */ animation-delay: 1s; } 
.ball-loader__text { margin-top: 1rem; font-size: 1.5rem; text-align: center; font-weight: 600; color: var(--primary-dark-blue); /* Replace with actual $primary-dark-blue */ min-height: 2em !important; } 
.quotes { margin-top: 1rem; color: #002868; font-size: 25px; font-weight: 700; font-family: "Roboto", Arial, sans-serif; line-height: 1.2; } /* Keyframes */ 
@keyframes bounce { 0% { transform: translateY(0); } 100% { transform: translateY(-32.5px); } }