1.loader{2width: 48px;3height: 48px;4border-radius: 50%;5display: inline-block;6position: relative;7border: 10px solid;8box-sizing: border-box;9animation: animloader 1s linear infinite alternate;10}1112@keyframes animloader{130%{14border-color: white rgba(255, 255, 255, 0)rgba(255, 255, 255, 0)rgba(255, 255, 255, 0);15}161733%{18border-color: white white rgba(255, 255, 255, 0)rgba(255, 255, 255, 0);19}202166%{22border-color: white white white rgba(255, 255, 255, 0);23}2425100%{26border-color: white white white white;27}28}