
#circle-orbit-container {
    position: relative;
    top: 25px;
    left: 25px;
    height: 300px;
    width: 300px;
    margin: 0 auto;
  }
  
  #inner-orbit {
    position: absolute;
    top: 76px;
    left: 77px;
    width: 45%;
    height: 45%;
    
  }
    
  
  #middle-orbit {
    position: absolute;
    top: 35px;
    left: 35px;
    width: 225px;
    height: 225px;
    border: 1px #fff;
    border-radius: 100%;
    -webkit-animation: spin-right 2s linear infinite;
    animation: spin-right 2s linear infinite;
    animation-delay: 1s;
    animation-timing-function: ease-in-out;
  }
  
  
  .star {
    position: absolute;
    top: 25px;
    left: 25px;
  }
  
  
  
  @-webkit-keyframes spin-right {
    from { 
        -webkit-transform: rotate(105deg); 
    } to { 
        -webkit-transform: rotate(460deg); 
    }
  }
  .lds-ring {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 8px;
    border: 25px solid #14213D;
    border-radius: 50%;
    animation: lds-ring 2.2s cubic-bezier(0.9, 0, 0.3, 0) infinite;
    border-color: #14213D transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -1.1s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.85s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.65s;
  }
  .lds-ring div:nth-child(4) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(4) {
    animation-delay: -0.30s;
  }
  .lds-ring div:nth-child(5) {
    animation-delay: -0.0s;
  }

  @keyframes lds-ring {
    0% {
      transform: rotate(105deg);
    }
    100% {
      transform: rotate(460deg);
    }
  }