.container {
	max-width:98%;
}
.lds-ripple {
	width: 64px;
	height: 64px;
	display:none;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	z-index:99999999999;
	position: fixed;

}
.lds-ripple > div{
	position: relative;
	height: 100%;
	width:100%;
}
.lds-ripple > div div {
	position: absolute;
	border: 4px solid #98429b;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple > div div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
	top: 28px;
	left: 28px;
	width: 0;
	height: 0;
	opacity: 1;
  }
  100% {
	top: -1px;
	left: -1px;
	width: 58px;
	height: 58px;
	opacity: 0;
  }

}
