#preloader {
  z-index: 10;
}

.SiteLoader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  text-align: center;
  border-radius: 5px;
  background: none;
}
.SiteLoader > .content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.SiteLoader.has-background {
  background: #ffffff;
}
.SiteLoader.has-background.is-transparent {
  background: rgba(255, 255, 255, 0.4);
}
.SiteLoader > .content svg {
  animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}
.SiteLoader svg path {
  fill: #1ea160;
}
.SiteLoader.white svg path {
  fill: #ffffff;
}
.SiteLoader.widget svg path {
  fill: #dcdcdc;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}