#section-loading {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 999999;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #000233;
}

/*
.loading-container {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
     justify-content: center; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loading-wrapper {
    text-align: center;
    width: 210px;
    display: table;
    margin: 0 auto;
    position: relative;
}

.loading-text {
    padding-left: 5px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 10px;
    margin-top: 15px;
}

#infinite-loader {
    width: 100%;
    height: 3px;
    bottom: -10px;
    display: block;
    overflow: hidden;
    position: absolute;
    background-color: #ffb90c;
}

#infinite-loader .indeterminate:before {
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
    position: absolute;
    background: #fff;
    will-change: left, right;
    background: -webkit-gradient(linear, left top, right top, from(##562E8Fbd), to(##562e8f));
    background: linear-gradient(to right, ##562E8Fbd, ##562e8f);
    background: -webkit-linear-gradient(to right, ##562E8Fbd, ##562e8f);
    animation: indeterminate 2.1s cubic-bezier(.65, .815, .735, .395) infinite;
    -webkit-animation: indeterminate 2.1s cubic-bezier(.65, .815, .735, .395) infinite;
}

#infinite-loader .indeterminate:after {
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
    position: absolute;
    background: #fff;
    will-change: left, right;
    background: -webkit-gradient(linear, left top, right top, from(##562E8Fbd), to(##562e8f));
    background: linear-gradient(to right, ##562E8Fbd, ##562e8f);
    background: -webkit-linear-gradient(to right, ##562E8Fbd, ##562e8f);
    animation: indeterminate-short 2.1s cubic-bezier(.165, .84, .44, 1) infinite;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(.165, .84, .44, 1) infinite;
    animation-delay: 1.15s;
    -webkit-animation-delay: 1.15s;
}

.loading-container img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%
    }

    60% {
        left: 100%;
        right: -90%
    }

    100% {
        left: 100%;
        right: -90%
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%
    }

    60% {
        left: 100%;
        right: -90%
    }

    100% {
        left: 100%;
        right: -90%
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%
    }

    60% {
        left: 107%;
        right: -8%
    }

    100% {
        left: 107%;
        right: -8%
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%
    }

    60% {
        left: 107%;
        right: -8%
    }

    100% {
        left: 107%;
        right: -8%
    }
}
*/

.loader-1 {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #E31E25;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

/* keyFrames */
@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
