.waitingLoader{
width: 7rem;
height: 8rem;
margin: 0 auto;
margin-top: 10rem;
border-radius: 100%;
border: 10px dotted #0000;
border-top-color: #280503;
animation: spinner 0.9s linear infinite;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}