.preloader-wrapper {
	background: #fff;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:9999999;
}
.loader {
  border: 8px solid #000;
  border-radius: 50%;
  border-top: 8px solid #014a93;
  border-right: 8px solid #608EBC;
  border-bottom: 8px solid #A0BBD7;
  border-left: 8px solid DFE8F2;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }