.loader0{ position: relative; width:180%; height: 3px; background: #fff; -webkit-box-reflect: below 1px linear-gradient(transparent, #0005); } .loader{ position: relative; width: 180%; height: 3px; background: #fff; -webkit-box-reflect: below 1px linear-gradient(transparent, #0005); } .loader::before{ content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #26a5b3, #fff, #26a5b3, #fff ); animation: animate 10s linear infinite; background-size: 500%; } .loader::after{ content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #fff, #26a5b3 ); animation: animate 10s linear infinite; background-size: 500%; filter: blur(30px); } @keyframes animate{ 0%{ background-position: 0 0; } 0%{ background-position: 500%, 0; } }