#section-loading {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 999999;
    height: 100vh;
    /* display: -webkit-box; */
    display: -ms-flexbox;
    display: -webkit-box;
    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: #fff;
}

.loading-container {
    position: relative;
    /* text-align: center; */
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    -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;
    /*
    max-width: 350px;
    overflow: hidden;
*/
    width: 100%;
}

.loading-wrapper {
    text-align: center;
    width: 210px;
    display: block;
    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: #14acff
}

#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
}

@-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%
    }
}

.loading-container img {
    -webkit-animation: moveclouds 2s linear infinite;
    -moz-animation: moveclouds 2s linear infinite;
    -o-animation: moveclouds 2s linear infinite;
}


@-webkit-keyframes moveclouds {
    0% {
        margin-left: -100px;
    }

    100% {
        margin-left: 100%;
    }
}

@keyframes moveclouds {
    0% {
        margin-left: -100px;
    }

    100% {
        margin-left: 100%;
    }
}
