.oiw-orbit-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.oiw-orbit {
    --oiw-orbit-size: 430px;
    position: relative;
    width: var(--oiw-orbit-size);
    height: var(--oiw-orbit-size);
    max-width: none;
    flex: 0 0 auto;
}

.oiw-orbit-inner-bg {
    position: absolute;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    top: 11%;
    left: 11%;
    background-color: #e9f8fe;
    z-index: 0;
}

.oiw-orbit-line {
    position: absolute;
    inset: 0;
    border-width: 5px;
    border-style: double;
    border-radius: 50%;
    border-color: #12aef5;
    z-index: 1;
    box-sizing: border-box;
}

.oiw-rotator {
    transform-origin: 50% 50%;
    animation-name: oiwRotate360;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 28s;
}

.oiw-items-rotator {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.oiw-item-position {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--oiw-angle)) translate(calc(var(--oiw-orbit-size) / 2)) rotate(var(--oiw-counter-angle));
    transform-origin: 0 0;
    animation-name: oiwOrbitItemMove;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 28s;
    will-change: transform;
}

.oiw-item {
    --oiw-item-size: 100px;
    --oiw-normal-bg: #08b6f4;
    --oiw-active-bg: #062f7a;
    width: var(--oiw-item-size);
    height: var(--oiw-item-size);
    border-radius: 50%;
    background: var(--oiw-normal-bg);
    border: 4px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    transition: background-color .35s ease, transform .35s ease;
    overflow: hidden;
}

.oiw-item-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: inherit;
    justify-content: center;
    text-align: inherit;
    transform-origin: center center;
}

.oiw-item.is-active {
    background: var(--oiw-active-bg);
}

.oiw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    color: #fff;
    margin-bottom: 7px;
}

.oiw-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.oiw-title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
    max-width: 85%;
}

.oiw-center-content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72%;
    text-align: center;
    box-sizing: border-box;
}

.oiw-center-text {
    display: none;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    color: #202020;
}

.oiw-center-text.is-visible {
    display: block;
    animation: oiwFadeIn .4s ease both;
}

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

@keyframes oiwOrbitItemMove {
    from { transform: rotate(var(--oiw-angle)) translate(calc(var(--oiw-orbit-size) / 2)) rotate(var(--oiw-counter-angle)); }
    to { transform: rotate(var(--oiw-end-angle)) translate(calc(var(--oiw-orbit-size) / 2)) rotate(var(--oiw-end-counter-angle)); }
}

@keyframes oiwFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
