.orbit {
    float: left;
    width: 100%;
}

.orbitIcon {
    line-height: 1.6em;
    font-size: 1.2em;
    background: transparent;
    color: #fff;
    text-align: center;
    display: block;
}

.orbitWrap {
    height: 40em;
    list-style: none;
    font-size: 1.3em;
}

.orbitWrap > li {
    position: absolute;
    left: 50%;
    top: 57%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbitWrap > li:hover ul {
    border-width: 2px;
    border-color: #d2c8ff;
    animation-play-state: paused;
}
.orbitWrap > li:hover ul li img {
    animation-play-state: paused;
}
/* 
.orbitWrap > li:hover ~ li ul li {
    opacity: 0.4;
} */

/* Ensure this selector is scoped */
.orbit .ring0,
.orbit .ring1,
.orbit .ring2 {
    border: dotted 2px #efecff;
    position: relative;
    padding: 0;
    border-radius: 50%;
    list-style: none;
    box-sizing: content-box;
    transition: all 300ms ease-in-out;
}

.orbit .ring0 li,
.orbit .ring1 li,
.orbit .ring2 li {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -0.8em;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #efecff;
}
.orbit .ring1 li {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -0.8em;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit .ring2 li {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    margin: -0.8em;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbitCenter {
    z-index: 5;
    font-size: 2em;
    width: 120px;
    height: 120px;
    line-height: 1.8em;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #f6f4ff;
}

.orbitCenter:hover {
    box-shadow: unset;
}
.orbitCenter:hover .orbitCenterIcon {
    transform: rotateZ(0deg);
}

.orbitCenterIcon {
    transform: rotateZ(-360deg);
    transition: all 300ms ease-in-out;
}

.orbitWrap > li.orbitCenter:hover ~ li > ul {
    width: 0;
    height: 0;
}

.orbitWrap > li.orbitCenter:hover ~ li > ul * {
    transform: translate(0, 0);
}

.orbit .ring0 {
    width: 700px;
    height: 700px;
    animation: clockwiseRotate 100s linear infinite;
    animation-play-state: running;
}
.orbit .ring0 img {
    animation: counterClockwiseRotate 100s linear infinite;
    animation-play-state: running;
}
.orbit .ring1 {
    width: 500px;
    height: 500px;
    animation: counterClockwiseRotate 100s linear infinite;
    animation-play-state: running;
}
.orbit .ring1 img {
    animation: clockwiseRotate 100s linear infinite;
    animation-play-state: running;
}
.orbit .ring2 {
    width: 300px;
    height: 300px;
    animation: clockwiseRotate 50s linear infinite;
    animation-play-state: running;
}
.orbit .ring2 img {
    animation: counterClockwiseRotate 50s linear infinite;
    animation-play-state: running;
}

/* Scoped individual item transformations */
.orbit .ring0 > *:nth-of-type(1) {
    transform: rotate(0deg) translate(calc(8.3em - 0px)) rotate(0);
}

.orbit .ring0 > *:nth-of-type(2) {
    transform: rotate(45deg) translate(calc(8.3em - 0px)) rotate(-45deg);
}

.orbit .ring0 > *:nth-of-type(3) {
    transform: rotate(90deg) translate(calc(8.3em - 0px)) rotate(-90deg);
}

.orbit .ring0 > *:nth-of-type(4) {
    transform: rotate(135deg) translate(calc(8.3em - 0px)) rotate(-135deg);
}
.orbit .ring0 > *:nth-of-type(5) {
    transform: rotate(180deg) translate(calc(8.5em - 0px)) rotate(-180deg);
}
.orbit .ring0 > *:nth-of-type(6) {
    transform: rotate(225deg) translate(calc(8.6em - 0px)) rotate(-225deg);
}
.orbit .ring0 > *:nth-of-type(7) {
    transform: rotate(270deg) translate(calc(8.5em - 0px)) rotate(-270deg);
}
.orbit .ring0 > *:nth-of-type(8) {
    transform: rotate(315deg) translate(calc(8.3em - 0px)) rotate(-315deg);
}

.orbit .ring1 > *:nth-of-type(1) {
    transform: rotate(0deg) translate(calc(6.1em - 0px)) rotate(0deg);
}
.orbit .ring1 > *:nth-of-type(2) {
    transform: rotate(72deg) translate(calc(6.1em - 0px)) rotate(-72deg);
}
.orbit .ring1 > *:nth-of-type(3) {
    transform: rotate(144deg) translate(calc(6.1em - 0px)) rotate(-144deg);
}
.orbit .ring1 > *:nth-of-type(4) {
    transform: rotate(216deg) translate(calc(5.9em - 0px)) rotate(-216deg);
}
.orbit .ring1 > *:nth-of-type(5) {
    transform: rotate(288deg) translate(calc(6.1em - 0px)) rotate(-288deg);
}

.orbit .ring2 > *:nth-of-type(1) {
    transform: rotate(0deg) translate(calc(3.7em - 0px)) rotate(0deg);
}

.orbit .ring2 > *:nth-of-type(2) {
    transform: rotate(120deg) translate(calc(3.7em - 0px)) rotate(-120deg);
}

.orbit .ring2 > *:nth-of-type(3) {
    transform: rotate(240deg) translate(calc(3.3em - 0px)) rotate(-240deg);
}

@keyframes clockwiseRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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