html,body{
	margin: 0;
	padding: 0;
	background-color: #212121;	
}

body{
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}

#ajax{
	font-family: arial;
	background-color: #212121;
	
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	display: flex;
	color: #fff;
	background: #202020;
	text-align: center;
	z-index: 999999;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 100;
}

#ajax .loader{
      width: 48px;
      height: 48px;
      border-radius: 50%;
      position: relative;
      animation: rotate 1s linear infinite
    }
	
#ajax .loader::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 5px solid #FFF;
	animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
	100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
	0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
	25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
	50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
	75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
	100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}