#loading-bg {
    width: 100%;
    height: 100%;
    /*background: #FFF;*/
    /*background: linear-gradient(to bottom, rgba(77, 177, 226, 1), rgba(0, 143, 213, 1));*/
    /*background: linear-gradient(to bottom, rgba(235, 173, 12, 1), rgba(187, 89, 0, 1));*/
    background: linear-gradient(to bottom, rgb(240 240 240), rgb(0 0 0));
    display: block;
    position: absolute;
    z-index: 999999;
}

@keyframes loading-bg-polly1-draw {
    0% {
        fill: rgb(255, 255, 255);
    }

    12.5% {
        fill: rgb(255, 255, 255);
    }

    49.9% {
        fill: rgb(255, 255, 255);
    }

    50% {
        fill: rgb(208, 41, 32);
    }
}

@keyframes loading-bg-polly1-draw2 {
    25% {
        fill: rgb(208, 41, 32);
    }

    50% {
        fill: rgb(208, 41, 32);
    }

    75% {
        fill: rgb(208, 41, 32);
    }

    100% {
        fill: rgb(208, 41, 32);
    }
}

@keyframes loading-bg-polly2-draw {
    50% {
        fill: rgb(255, 255, 255);
    }

    75% {
        fill: rgb(255, 255, 255);
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes loading-bg-polly3-draw {
    75% {
        fill: rgb(255, 255, 255);
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes loading-bg-polly4-draw {
    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes loading-bg-body-draw {
    0% {
        fill: rgb(208, 41, 32);
    }

    12.5% {
        fill: rgb(208, 41, 32);
    }

    49.9% {
        fill: rgb(208, 41, 32);
    }

    50% {
        fill: rgb(255, 255, 255);
    }
}

#loading-bg div.loadingText {
    position: relative;
    left: -6px;
    right: 0px;
    top: calc(50% + 80px);
    /*width: fit-content;*/
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: rgb(243, 243, 243);
    text-shadow: rgb(33, 33, 33) 1px 1px 5px;
}

#loading-bg svg {
    width: 123px;
    height: 160px;
    position: absolute;
    left: calc(50% - 67px);
    top: calc(50% - 80px);
}

#loading-bg svg defs filter.shadow feDropShadow {
    flood-color: rgba(33, 33, 33, 0.5);
}

#loading-bg svg path.polly1 {
    stroke-width: 1;
    stroke: transparent;
    opacity: 1;
    fill: rgb(208, 41, 32);
    animation: 4s loading-bg-polly1-draw 0.5s infinite forwards normal linear;
}

#loading-bg svg path.polly2 {
    stroke-width: 1;
    stroke: transparent;
    opacity: 1;
    fill: rgb(208, 41, 32);
    animation: 4s loading-bg-polly1-draw 1s infinite forwards normal linear;
}

#loading-bg svg path.polly3 {
    stroke-width: 1;
    stroke: transparent;
    opacity: 1;
    fill: rgb(208, 41, 32);
    animation: 4s loading-bg-polly1-draw 1.5s infinite forwards normal linear;
}

#loading-bg svg path.polly4 {
    stroke-width: 1;
    stroke: transparent;
    opacity: 1;
    fill: rgb(208, 41, 32);
    animation: 4s loading-bg-polly1-draw 2s infinite forwards normal linear;
}

#loading-bg svg path.head {
    stroke-width: 1;
    opacity: 1;
    stroke: transparent;
}

#loading-bg svg path.body {
    stroke-width: 1;
    opacity: 1;
    stroke: transparent;
    /*fill: rgb(255, 255, 255);
	animation: 4s loading-bg-polly1-draw 0s infinite forwards normal linear;*/
}

.loading-logo {
    position: absolute;
    left: calc(50% - 45px);
    top: 40%;
}

.loading {
    position: absolute;
    left: calc(50% - 35px);
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid transparent;
}

.loading .effect-1,
.loading .effect-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left: 3px solid rgba(121, 97, 249, 1);
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loading .effect-1 {
    animation: rotate 1s ease infinite;
}

.loading .effect-2 {
    animation: rotateOpacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left: 3px solid rgba(121, 97, 249, 1);
    -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
    animation: rotateOpacity 1s ease infinite 0.2s;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loading .effects {
    transition: all 0.3s ease;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotateOpacity {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 0.1;
    }

    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
        opacity: 1;
    }
}
