.circularProgress{position:absolute;top:0;right:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.circularProgress.fullscreen{position:fixed;height:calc(100vh - 100px);padding-top:50px}.circularProgress .loading{position:relative;display:flex;justify-content:center;align-items:center}.circularProgress .loading:after{content:"";position:absolute;display:block;top:0;right:0;width:100%;height:100%;border-radius:50%;-webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 2px),black calc(100% - 1px));mask:radial-gradient(farthest-side,transparent calc(100% - 2px),black calc(100% - 1px));animation:circular-rotate-animation .8s linear infinite}.circularProgress .loading.dark:after{background:conic-gradient(transparent,rgba(var(--action-color-rgb),.85))}.circularProgress .loading.light:after{background:conic-gradient(transparent,var(--reverse-color))}@keyframes circular-rotate-animation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}