#activityLoader{text-align:center}
#activityLoader .loader{transform-origin:center;animation:rotate 4s linear infinite}
#activityLoader .loader .path{stroke-dasharray:100.5;stroke-dashoffset:100.5;animation:draw 4s ease-in-out infinite}
#activityLoader .loading-text{font-family:'Manrope','Arial',sans-serif;font-size:1.6rem;font-weight:400;line-height:150%;color:#000;margin-top:2.4rem}
@keyframes rotate{0{transform:rotate(0);animation-timing-function:ease-in-out}
75%{transform:rotate(360deg);animation-timing-function:linear}
100%{transform:rotate(360deg)}
}
@keyframes draw{0{stroke-dashoffset:100.5;animation-timing-function:ease-in-out}
37.5%{stroke-dashoffset:0}
75%{stroke-dashoffset:100.5;animation-timing-function:linear}
100%{stroke-dashoffset:100.5}
}