@-webkit-keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sx-boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1003;
  /*background: black;*/
  /*background: linear-gradient(180deg,  #8891a1 50%, #060e22);*/

  background: linear-gradient(90deg,  rgb(239, 81, 94) 50%, rgb(224, 61, 75));
  overflow: hidden;
}
.sx-boot-screen div:first-child {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  /*box-shadow: 0 3px 3px 0 rgb(233, 40, 7);*/
  box-shadow: 0 3px 3px 0 white;
  transform: translate3d(0, 0, 0);
  animation: spin 2s linear infinite;
}
.sx-boot-screen div:first-child:after,
.sx-boot-screen div:first-child:before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.sx-boot-screen div:first-child:before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  /*box-shadow: 0 3px 3px 0 rgb(233, 40, 7);*/
  box-shadow: 0 3px 3px 0 white;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.sx-boot-screen div:first-child:after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  /*box-shadow: 0 3px 3px 0 rgb(233, 40, 7);*/
  box-shadow: 0 3px 3px 0 white;
  animation: spin 1.5s linear infinite;
}


.sx-boot-screen-image-wrapper{
    width: 100%;
    text-align: center;
}

.sx-boot-screen-image{
  height: 150px;
}