.postloader {
    position: fixed;
    z-index: 99999999999;
    background-color: transparent;
    width: 100%;
    height: 100%;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
}

.postloader-div {
    display: inline-block;
    left: 43%;
    right: 0;
    transform: translateY(41vh);
}

.postloader-div .postloader-div-dialog {
    background: #000000b3;
    border-radius: 12px;
    padding: 5px 10px;
}

.postloader-div-dialog * {
    color: #fff;
}

.preloader {
    position: fixed;
    z-index: 99999999999;
    background: #f5f5f5;
    width: 100%;
    height: 100%;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
}

.preloader>.infinityChrome, .preloader>.infinity {
    margin: 0 auto;
    transform: translateY(44vh);
}

.preloader .infinity {
    width: 120px;
    height: 60px;
    position: relative;
}

.preloader .infinity div, .preloader .infinity span {
    position: absolute;
}

.preloader .infinity div {
    top: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: rotate 6.9s linear infinite;
    animation: rotate 6.9s linear infinite;
}

.preloader .infinity div span {
    left: -8px;
    top: 50%;
    margin: -8px 0 0 0;
    width: 16px;
    height: 16px;
    display: block;
    background: #ff0000;
    box-shadow: 2px 2px 8px rgba(140, 111, 240, 0.09);
    border-radius: 50%;
    transform: rotate(90deg);
    -webkit-animation: move 6.9s linear infinite;
    animation: move 6.9s linear infinite;
}

.preloader .infinity div span:before, .preloader .infinity div span:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: inherit;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -7px;
    box-shadow: inherit;
}

.preloader .infinity div span:before {
    -webkit-animation: drop1 0.8s linear infinite;
    animation: drop1 0.8s linear infinite;
}

.preloader .infinity div span:after {
    -webkit-animation: drop2 0.8s linear infinite 0.4s;
    animation: drop2 0.8s linear infinite 0.4s;
}

.preloader .infinity div:nth-child(2) {
    -webkit-animation-delay: -2.3s;
    animation-delay: -2.3s;
}

.preloader .infinity div:nth-child(2) span {
    -webkit-animation-delay: -2.3s;
    animation-delay: -2.3s;
}

.preloader .infinity div:nth-child(3) {
    -webkit-animation-delay: -4.6s;
    animation-delay: -4.6s;
}

.preloader .infinity div:nth-child(3) span {
    -webkit-animation-delay: -4.6s;
    animation-delay: -4.6s;
}

.preloader .infinityChrome {
    width: 128px;
    height: 60px;
}

.preloader .infinityChrome div {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ff0000;
    box-shadow: 2px 2px 8px rgba(140, 111, 240, 0.09);
    border-radius: 50%;
    -webkit-animation: moveSvg 6.9s linear infinite;
    animation: moveSvg 6.9s linear infinite;
    filter: url(#goo);
    transform: scaleX(-1);
    offset-path: path("M64.3636364,29.4064278 C77.8909091,43.5203348 84.4363636,56 98.5454545,56 C112.654545,56 124,44.4117395 124,30.0006975 C124,15.5896556 112.654545,3.85282763 98.5454545,4.00139508 C84.4363636,4.14996252 79.2,14.6982509 66.4,29.4064278 C53.4545455,42.4803627 43.5636364,56 29.4545455,56 C15.3454545,56 4,44.4117395 4,30.0006975 C4,15.5896556 15.3454545,4.00139508 29.4545455,4.00139508 C43.5636364,4.00139508 53.1636364,17.8181672 64.3636364,29.4064278 Z");
}

.preloader .infinityChrome div:before, .preloader .infinityChrome div:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: inherit;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -7px;
    box-shadow: inherit;
}

.preloader .infinityChrome div:before {
    -webkit-animation: drop1 0.8s linear infinite;
    animation: drop1 0.8s linear infinite;
}

.preloader .infinityChrome div:after {
    -webkit-animation: drop2 0.8s linear infinite 0.4s;
    animation: drop2 0.8s linear infinite 0.4s;
}

.preloader .infinityChrome div:nth-child(2) {
    -webkit-animation-delay: -2.3s;
    animation-delay: -2.3s;
}

.preloader .infinityChrome div:nth-child(3) {
    -webkit-animation-delay: -4.6s;
    animation-delay: -4.6s;
}

@-webkit-keyframes moveSvg {
    0% {
        offset-distance: 0%;
    }

    25% {
        background: #ff0095;
    }

    75% {
        background: #ffc107;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes moveSvg {
    0% {
        offset-distance: 0%;
    }

    25% {
        background: #ff0095;
    }

    75% {
        background: #ffc107;
    }

    100% {
        offset-distance: 100%;
    }
}

@-webkit-keyframes rotate {
    50% {
        transform: rotate(360deg);
        margin-left: 0;
    }

    50.0001%, 100% {
        margin-left: -60px;
    }
}

@keyframes rotate {
    50% {
        transform: rotate(360deg);
        margin-left: 0;
    }

    50.0001%, 100% {
        margin-left: -60px;
    }
}

@-webkit-keyframes move {
    0%, 50% {
        left: -8px;
    }

    25% {
        background: #f42323;
    }

    75% {
        background: #ffc107;
    }

    50.0001%, 100% {
        left: auto;
        right: -8px;
    }
}

@keyframes move {
    0%, 50% {
        left: -8px;
    }

    25% {
        background: #ff0000;
    }

    75% {
        background: #ffc107;
    }

    50.0001%, 100% {
        left: auto;
        right: -8px;
    }
}

@-webkit-keyframes drop1 {
    100% {
        transform: translate(32px, 8px) scale(0);
    }
}

@keyframes drop1 {
    100% {
        transform: translate(32px, 8px) scale(0);
    }
}

@-webkit-keyframes drop2 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    100% {
        transform: translate(32px, -8px) scale(0);
    }
}

@keyframes drop2 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    100% {
        transform: translate(32px, -8px) scale(0);
    }
}

.preloader .infinity {
    display: none;
}

.sk-chase {
    width: 25px;
    height: 25px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
    margin: 0 auto;
    margin-top: 12px;
}

.postloader .sk-chase {
    width: 10px;
    height: 10px;
    margin-top: 0px;
    margin-right: 7px;
}

.preloader-div {
    display: inline-block;
    left: 43%;
    right: 0;
    transform: translateY(41vh);
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.preloader-logo {
    width: 76px !important;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #1d1d1d;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.postloader .sk-chase-dot:before {
    background-color: #fff;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1.0);
    }
}