body.booting{
  text-align:center;
  }
body.booting .pace{
  display: none;
  } 
body.booting .booting-dots {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  }
  
body.booting > .center{
  overflow-y: auto;
  transition: background-color .1s;
  align-items: center;
  display: flex;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  justify-content: center;
  padding: .625em;
  overflow-x: hidden;
  }
body.booting > .center > div{
    background: #767676;
    width: 120px;
    height: 120px;
    padding: 55px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0px 5px 15px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 20%);
  }
body.booting .booting-dots::before, body.booting .booting-dots::after {
    content: '';
    display: inline-block;
    position: absolute;
  }
  
body.booting .booting-dots::before {
    left: 0;
    top: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    transform-origin: 5px 20px;
    -webkit-animation: booting-dots 1.4s linear infinite;
    animation: booting-dots 1.4s linear infinite;
  }
  
body.booting .booting-dots::after {
    left: 0;
    top: -30px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    transform-origin: 5px 35px;
    -webkit-animation: booting-dots 1s linear infinite;
    animation: booting-dots 1s linear infinite;
  }
  
  @-webkit-keyframes booting-dots {
    0% {
      transform: rotateZ(0deg) translate3d(0, 0, 0);
    }
    100% {
      transform: rotateZ(360deg) translate3d(0, 0, 0);
    }
  }
  
  @keyframes booting-dots {
    0% {
      transform: rotateZ(0deg) translate3d(0, 0, 0);
    }
    100% {
      transform: rotateZ(360deg) translate3d(0, 0, 0);
    }
  }