#page-loader .loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1001;
    text-align: center;
    transition: all 0s;
    font-size: 0;
}

#page-loader.pl-imgFilling #loader {
    width: 86px;
}

#page-loader.pl-imgFilling #loader {
    width: auto;
    height: auto;
    max-width: 90vw;
}

#page-loader .loader-inner #loader {
    position: relative;
    z-index: 1002;
    top: auto;
    left: auto;
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none !important;
    color: #248acc;
}

#page-loader.pl-imgFilling #loader {
    width: 86px;
}

#page-loader.pl-imgFilling #loader {
    width: auto;
    height: auto;
    max-width: 90vw;
}

#page-loader .loader-inner #loader {
    position: relative;
    z-index: 1002;
    top: auto;
    left: auto;
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none !important;
    color: #248acc;
}

#page-loader.pl-imgFilling #loader img {
    opacity: 0.3;
}

#page-loader.pl-imgFilling #loader img {
    position: relative;
    z-index: 1;
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto;
}

#page-loader.pl-imgFilling #loader span {
    background-size: cover;
}

#page-loader.pl-imgFilling #loader span {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    transition: 0s;
}

#page-loader.pl-imgFilling #loader .imgFilling-container {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 0%;
    transition: 0s;
    overflow: hidden;
    -webkit-animation: imgFilling 6s linear infinite;
    animation: imgFilling 6s linear infinite;
    will-change: height, opacity;
    transform-origin: 0 100%;
}

#page-loader .loader-section.section-fade {
    top: 0;
    left: 0;
    width: 100%;
    will-change: opacity;
}

#page-loader .loader-section {
    opacity: 0.95;
}

#page-loader .loader-section {
    background: #000000;
}

#page-loader .loader-section {
    position: fixed;
    z-index: 999;
    width: 50%;
    height: 100%;
    background: #000;
    opacity: 0.95;
    transition: all 0s;
    will-change: transform;
}

@-webkit-keyframes imgFilling {
    0% {
        height: 0%;
        opacity: 1;
    }

    95% {
        height: 100%;
        opacity: 1;
    }

    100% {
        height: 100%;
        opacity: 0;
    }
}

@keyframes imgFilling {
    0% {
        height: 0%;
        opacity: 1;
    }

    95% {
        height: 100%;
        opacity: 1;
    }

    100% {
        height: 100%;
        opacity: 0;
    }
}