body.sifency-preloader-active {
    overflow: hidden;
    height: 100vh
}

.sifency-preloader-wrapper {
    position: relative;
    z-index: 999999
}

.sifency-preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: var(--sifency-addons-whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out, clip-path 0.5s ease-in-out;
}

.sifency-loader-bars span,
.sifency-loader-cube div,
.sifency-loader-dots-1 span,
.sifency-loader-dots-2,
.sifency-loader-pulse {
    background-color: var(--sp-color-1)
}

.sifency-exit-fade.sifency-loaded {
    opacity: 0;
    visibility: hidden;
}

.sifency-exit-slide-up.sifency-loaded {
    transform: translateY(-100%);
    visibility: hidden;
}

.sifency-exit-split.sifency-loaded {
    clip-path: inset(0 0 0 100%);
    transition-duration: .8s;
    visibility: hidden;
}

.sifency-loader-spinner-1 {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    border-top-color: var(--sp-color-1);
    animation: 1s ease-in-out infinite sifencySpin
}

@keyframes sifencySpin {
    to {
        transform: rotate(360deg)
    }
}

.sifency-loader-spinner-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--sp-color-1);
    border-bottom-color: var(--sp-color-2);
    animation: 1.5s linear infinite sifencySpin
}

.sifency-loader-dots-1 span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    animation: .6s infinite alternate sifencyBounce
}

.sifency-loader-dots-1 span:nth-child(2) {
    animation-delay: .2s;
    background-color: var(--sp-color-2)
}

.sifency-loader-dots-1 span:nth-child(3) {
    animation-delay: .4s
}

@keyframes sifencyBounce {
    to {
        transform: translateY(-20px);
        opacity: .5
    }
}

.sifency-loader-dots-2 {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    animation: 1s ease-in-out infinite sifencyScaleOut
}

@keyframes sifencyScaleOut {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

.sifency-loader-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px
}

.sifency-loader-bars span {
    width: 6px;
    height: 100%;
    animation: 1s infinite sifencyEqualizer
}

.sifency-loader-bars span:nth-child(odd) {
    background-color: var(--sp-color-2);
    animation-delay: .5s
}

@keyframes sifencyEqualizer {

    0%,
    100% {
        height: 10%
    }

    50% {
        height: 100%
    }
}

.sifency-loader-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 115, 230, .7);
    animation: 1.5s cubic-bezier(.66, 0, 0, 1) infinite sifencyPulseRing
}

@keyframes sifencyPulseRing {
    to {
        box-shadow: 0 0 0 30px rgba(0, 115, 230, 0)
    }
}

.sifency-loader-circle {
    width: 50px;
    height: 50px;
    border: 4px solid var(--sp-color-2);
    border-radius: 50%;
    border-top-color: var(--sp-color-1);
    animation: 1s linear infinite sifencySpin
}

.sifency-loader-cube {
    width: 40px;
    height: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px
}

.sifency-loader-cube div {
    width: 100%;
    height: 100%;
    animation: 1.3s ease-in-out infinite sifencyCube
}

.sifency-loader-cube div:nth-child(odd) {
    background-color: var(--sp-color-2)
}

.sifency-loader-cube div:first-child {
    animation-delay: .2s
}

.sifency-loader-cube div:nth-child(2) {
    animation-delay: .3s
}

@keyframes sifencyCube {

    0%,
    100%,
    70% {
        transform: scale3D(1, 1, 1)
    }

    35% {
        transform: scale3D(0, 0, 1)
    }
}

.sifency-loader-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--sp-color-1);
    position: relative
}

.sifency-loader-text:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sp-color-2);
    width: 0%;
    overflow: hidden;
    animation: 2s infinite sifencyTextFill;
    white-space: nowrap
}

@keyframes sifencyTextFill {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

.sifency-anim-pulse {
    animation: 2s infinite sifencyScaleOut
}

.sifency-anim-spin {
    animation: 2s linear infinite sifencySpin
}

.sifency-anim-bounce {
    animation: 1s infinite sifencyBounce
}

.sifency-loader-fill-counter {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.sifency-fc-count {
    position: relative;
    z-index: 10;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--sp-color-text);
    mix-blend-mode: difference;
    pointer-events: none
}

.sifency-fc-icon {
    display: none;
    position: relative;
    z-index: 10;
    color: var(--sp-color-text);
    mix-blend-mode: difference;
    pointer-events: none
}

.sifency-fc-fill-left,
.sifency-fc-fill-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--sp-color-1)
}

.sifency-fc-fill-left {
    left: 0
}

.sifency-fc-fill-right {
    right: 0
}

.sifency-fc-fill-top,
.sifency-fc-fill-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--sp-color-2);
}

.sifency-fc-fill-top {
    top: 0
}

.sifency-fc-fill-bottom {
    bottom: 0
}

.sifency-fc-mask-tl,
.sifency-fc-mask-tr,
.sifency-fc-mask-bl,
.sifency-fc-mask-br {
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: var(--sp-color-3);
    z-index: 5
}

.sifency-fc-mask-tl {
    top: 0;
    left: 0;
    transform-origin: top left
}

.sifency-fc-mask-tr {
    top: 0;
    right: 0;
    transform-origin: top right
}

.sifency-fc-mask-bl {
    bottom: 0;
    left: 0;
    transform-origin: bottom left
}

.sifency-fc-mask-br {
    bottom: 0;
    right: 0;
    transform-origin: bottom right
}