/*************************
*** ORBITS
 ************************/
#orbits {
  position: relative;
  z-index: 100;
}
#orbits #orbits-stars {
  background: -webkit-linear-gradient(135deg, #66003a, #a83e7e);
  background: linear-gradient(-45deg, #66003a, #a83e7e);
  height: 100vh;
  min-height: 100vh;
  position: relative;
  width: 100vw;
  overflow: hidden;
}
#orbits #orbits-stars .sun-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
#orbits #orbits-stars .sun-holder .sun {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.3), 0px 0px 100px 100px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.3), 0px 0px 100px 100px rgba(255, 255, 255, 0.1);
}
#orbits #orbits-stars .orbit {
  top: 50%;
  left: 50%;
  width: 50%;
  position: relative;
  position: absolute !important;
  border: 2px dashed rgba(102, 0, 58, 0.5);
  border-radius: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-transition: border 0.5s linear;
  transition: border 0.5s linear;
}
#orbits #orbits-stars .orbit:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
#orbits #orbits-stars .orbit > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#orbits #orbits-stars .orbit:after {
  content: "";
  position: absolute;
  width: 0vw;
  left: 100%;
  top: 50%;
  -webkit-transition: width 2s linear;
  transition: width 2s linear;
  z-index: -1;
}
#orbits #orbits-stars .orbit:active {
  border: 2px dashed rgba(255, 204, 233, 0.5);
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
}
#orbits #orbits-stars .orbit:active:after {
  border-top: 2px dashed rgba(255, 204, 233, 0.5);
  width: 100vw;
  -webkit-transition: width 1s linear;
  transition: width 1s linear;
}
#orbits #orbits-stars .orbit .planet-arc {
  position: absolute;
  height: 100%;
  width: 0;
  left: 50%;
  top: 0px;
  -webkit-animation: orbit 20s linear infinite;
          animation: orbit 20s linear infinite;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
#orbits #orbits-stars .orbit .planet-arc .planet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 5px 3px 0px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 5px 3px 0px rgba(0, 0, 0, 0.3);
}
#orbits #orbits-stars .orbit .planet-arc .planet:before {
  display: block;
  content: "";
  background: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  width: 100%;
  height: 280px;
  position: absolute;
  bottom: 0px;
  border-radius: 10% 10% 30% 30%;
  z-index: -1;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  left: 50%;
  pointer-events: none;
}
#orbits #orbits-stars .orbit .planet-arc .planet .moon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-animation: orbit 5s linear infinite;
          animation: orbit 5s linear infinite;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}
#orbits #orbits-stars .orbit .planet-arc .planet .moon:after {
  content: "";
  background-color: #858585;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 50%;
  top: 0px;
  -webkit-transform: translate3d(-50%, -20px, 0);
          transform: translate3d(-50%, -20px, 0);
  display: block;
  border-radius: 50%;
  -webkit-animation: moon 1s linear forwards;
          animation: moon 1s linear forwards;
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
  opacity: 0;
}
#orbits #orbits-stars .orbit .planet-arc .planet .asteroid {
  position: absolute;
  top: 19%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: #00beff;
  border-radius: 50%;
  -webkit-transform: translate3d(0, -300px, 0);
          transform: translate3d(0, -300px, 0);
  -webkit-animation: asteroid 10s linear forwards;
          animation: asteroid 10s linear forwards;
  -webkit-box-shadow: inset 0px 5px 3px 0px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 5px 3px 0px rgba(0, 0, 0, 0.3);
}
#orbits #orbits-stars .orbit.orbit-one {
  width: 10%;
  z-index: 5;
}
#orbits #orbits-stars .orbit.orbit-one .planet-arc {
  -webkit-animation: orbit 5s linear infinite;
          animation: orbit 5s linear infinite;
}
#orbits #orbits-stars .orbit.orbit-one .planet-arc .planet {
  background-color: darkred;
  width: 10px;
  height: 10px;
}
#orbits #orbits-stars .orbit.orbit-two {
  width: 20%;
  z-index: 4;
}
#orbits #orbits-stars .orbit.orbit-two .planet-arc {
  -webkit-animation: orbit 30s linear infinite;
          animation: orbit 30s linear infinite;
}
#orbits #orbits-stars .orbit.orbit-two .planet-arc .planet {
  background-color: yellow;
}
#orbits #orbits-stars .orbit.orbit-three {
  width: 27%;
  z-index: 3;
}
#orbits #orbits-stars .orbit.orbit-three .planet-arc {
  -webkit-animation: orbit 60s linear infinite;
          animation: orbit 60s linear infinite;
}
#orbits #orbits-stars .orbit.orbit-three .planet-arc .planet {
  background-color: lightgreen;
  -webkit-box-shadow: inset 0px 5px 3px 0px rgba(0, 0, 0, 0.3), inset 4px 2px 3px 0px dodgerblue, 0px 0px 2px 4px rgba(157, 159, 249, 0.54);
          box-shadow: inset 0px 5px 3px 0px rgba(0, 0, 0, 0.3), inset 4px 2px 3px 0px dodgerblue, 0px 0px 2px 4px rgba(157, 159, 249, 0.54);
  width: 15px;
  height: 15px;
  -webkit-animation: atmosphere 5s linear forwards;
          animation: atmosphere 5s linear forwards;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
#orbits #orbits-stars .orbit.orbit-four {
  width: 50%;
  z-index: 2;
}
#orbits #orbits-stars .orbit.orbit-four .planet-arc {
  -webkit-animation: orbit 20s linear infinite;
          animation: orbit 20s linear infinite;
}
#orbits #orbits-stars .orbit.orbit-four .planet-arc .planet {
  background-color: brown;
}
@-webkit-keyframes orbit {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes orbit {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
@-webkit-keyframes orbitoffset {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes orbitoffset {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
@-webkit-keyframes asteroid {
  0% {
    -webkit-transform: translate3d(-200px, -400px, 0);
            transform: translate3d(-200px, -400px, 0);
    background-color: #00beff;
  }
  90% {
    background-color: #00beff;
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
    width: 4px;
    height: 4px;
  }
  91% {
    background-color: #37130b;
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
    width: 6px;
    height: 6px;
  }
  100% {
    background-color: rgba(176, 174, 178, 0);
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
    width: 10px;
    height: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@keyframes asteroid {
  0% {
    -webkit-transform: translate3d(-200px, -400px, 0);
            transform: translate3d(-200px, -400px, 0);
    background-color: #00beff;
  }
  90% {
    background-color: #00beff;
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
    width: 4px;
    height: 4px;
  }
  91% {
    background-color: #37130b;
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
    width: 6px;
    height: 6px;
  }
  100% {
    background-color: rgba(176, 174, 178, 0);
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
    width: 10px;
    height: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@-webkit-keyframes moon {
  0% {
    opacity: 0;
    background-color: rgba(133, 133, 133, 0);
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
    background-color: #858585;
    width: 5px;
    height: 5px;
  }
}
@keyframes moon {
  0% {
    opacity: 0;
    background-color: rgba(133, 133, 133, 0);
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
    background-color: #858585;
    width: 5px;
    height: 5px;
  }
}
#orbits .information {
  background-color: #3b091e;
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  width: 30vw;
  border: 2px dashed rgba(255, 204, 233, 0.5);
  z-index: 99;
  padding: 20px;
}