.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: transparent;
    display: block;
}

.newloader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 2px solid #FF3D00;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.newloader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 4px;
  top: 4px;
  border: 2px solid #FFF;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

.preloader .cssload-speeding-wheel {
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px)
}
.loading {
  font-family:sans-serif;
  font-weight:200;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(17, 34, 51, 0.5);
  
}
.loading span {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  height: 10px;
  width: 10px;
  border: #FFF 3px solid;
  border-radius: 50%;
  -webkit-animation: loading 1.5s infinite;
  -webkit-animation-delay: 250ms;
  -webkit-transform: scale(0.6);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: -10px 0 0 -10px;
}
.loading span:first-child {
  margin: -10px 0 0 -35px;
  -webkit-animation-delay: 0;
}
.loading span:last-child {
  margin: -10px 0 0 15px;
  -webkit-animation-delay: 500ms;
}
.loading:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: 'loading';
  height: 20px;
  width: 100px;
  font-size: 20px;
  margin: 20px 0 0 -50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

@-webkit-keyframes loading {
  0%   { -webkit-transform: scale(0.6); }
  50%	{ -webkit-transform: scale(0.8); }
  100% { -webkit-transform: scale(0.6); }
}
