.rev-bootstrap-splash {
    --rev-splash-color: #19A0A8;
    --rev-splash-size: 132px;
    --rev-splash-speed: 2.5s;
    --rev-splash-a: calc(var(--rev-splash-speed) / -2);
    --rev-splash-b: calc(var(--rev-splash-speed) / -6);
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 2147483647;
}

.rev-bootstrap-splash__helix {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--rev-splash-size);
    height: var(--rev-splash-size);
}

.rev-bootstrap-splash__slice {
    position: relative;
    width: 100%;
    height: calc(var(--rev-splash-size) / 6);
}

.rev-bootstrap-splash__slice::before,
.rev-bootstrap-splash__slice::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - var(--rev-splash-size) / 12);
    width: calc(100% / 6);
    height: 100%;
    border-radius: 50%;
    background-color: var(--rev-splash-color);
    animation: rev-bootstrap-splash-orbit var(--rev-splash-speed) linear infinite;
}

.rev-bootstrap-splash__slice:nth-child(1)::after {
    animation-delay: var(--rev-splash-a);
}

.rev-bootstrap-splash__slice:nth-child(2)::before {
    animation-delay: var(--rev-splash-b);
}

.rev-bootstrap-splash__slice:nth-child(2)::after {
    animation-delay: calc(var(--rev-splash-a) + var(--rev-splash-b));
}

.rev-bootstrap-splash__slice:nth-child(3)::before {
    animation-delay: calc(var(--rev-splash-b) * 2);
}

.rev-bootstrap-splash__slice:nth-child(3)::after {
    animation-delay: calc(var(--rev-splash-a) + var(--rev-splash-b) * 2);
}

.rev-bootstrap-splash__slice:nth-child(4)::before {
    animation-delay: calc(var(--rev-splash-b) * 3);
}

.rev-bootstrap-splash__slice:nth-child(4)::after {
    animation-delay: calc(var(--rev-splash-a) + var(--rev-splash-b) * 3);
}

.rev-bootstrap-splash__slice:nth-child(5)::before {
    animation-delay: calc(var(--rev-splash-b) * 4);
}

.rev-bootstrap-splash__slice:nth-child(5)::after {
    animation-delay: calc(var(--rev-splash-a) + var(--rev-splash-b) * 4);
}

.rev-bootstrap-splash__slice:nth-child(6)::before {
    animation-delay: calc(var(--rev-splash-b) * 5);
}

.rev-bootstrap-splash__slice:nth-child(6)::after {
    animation-delay: calc(var(--rev-splash-a) + var(--rev-splash-b) * 5);
}

@keyframes rev-bootstrap-splash-orbit {
    0% {
        transform: translateX(calc(var(--rev-splash-size) * 0.25)) scale(0.73684);
        opacity: 0.65;
    }
    5% {
        transform: translateX(calc(var(--rev-splash-size) * 0.235)) scale(0.684208);
        opacity: 0.58;
    }
    10% {
        transform: translateX(calc(var(--rev-splash-size) * 0.182)) scale(0.631576);
        opacity: 0.51;
    }
    15% {
        transform: translateX(calc(var(--rev-splash-size) * 0.129)) scale(0.578944);
        opacity: 0.44;
    }
    20% {
        transform: translateX(calc(var(--rev-splash-size) * 0.076)) scale(0.526312);
        opacity: 0.37;
    }
    25% {
        transform: translateX(0%) scale(0.47368);
        opacity: 0.3;
    }
    30% {
        transform: translateX(calc(var(--rev-splash-size) * -0.076)) scale(0.526312);
        opacity: 0.37;
    }
    35% {
        transform: translateX(calc(var(--rev-splash-size) * -0.129)) scale(0.578944);
        opacity: 0.44;
    }
    40% {
        transform: translateX(calc(var(--rev-splash-size) * -0.182)) scale(0.631576);
        opacity: 0.51;
    }
    45% {
        transform: translateX(calc(var(--rev-splash-size) * -0.235)) scale(0.684208);
        opacity: 0.58;
    }
    50% {
        transform: translateX(calc(var(--rev-splash-size) * -0.25)) scale(0.73684);
        opacity: 0.65;
    }
    55% {
        transform: translateX(calc(var(--rev-splash-size) * -0.235)) scale(0.789472);
        opacity: 0.72;
    }
    60% {
        transform: translateX(calc(var(--rev-splash-size) * -0.182)) scale(0.842104);
        opacity: 0.79;
    }
    65% {
        transform: translateX(calc(var(--rev-splash-size) * -0.129)) scale(0.894736);
        opacity: 0.86;
    }
    70% {
        transform: translateX(calc(var(--rev-splash-size) * -0.076)) scale(0.947368);
        opacity: 0.93;
    }
    75% {
        transform: translateX(0%) scale(1);
        opacity: 1;
    }
    80% {
        transform: translateX(calc(var(--rev-splash-size) * 0.076)) scale(0.947368);
        opacity: 0.93;
    }
    85% {
        transform: translateX(calc(var(--rev-splash-size) * 0.129)) scale(0.894736);
        opacity: 0.86;
    }
    90% {
        transform: translateX(calc(var(--rev-splash-size) * 0.182)) scale(0.842104);
        opacity: 0.79;
    }
    95% {
        transform: translateX(calc(var(--rev-splash-size) * 0.235)) scale(0.789472);
        opacity: 0.72;
    }
    100% {
        transform: translateX(calc(var(--rev-splash-size) * 0.25)) scale(0.73684);
        opacity: 0.65;
    }
}
