body {
    margin: 0;
}
html {
    overflow-x: hidden;
    overflow-y: scroll;
}
.preloader{
    width: 100%;
    height: 100vh;
    background-color: #f4f6f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.preloader .loading {
    width: 300px;
    height: 25px;
    position: relative;
    margin-top: 24px;
}
.preloader .logo{
    width: 300px;
}

.preloader .logo .fil0{
    fill:#135FA4;
}
.preloader .logo .fil1{
    fill:#7AC25C;
}

.preloader .loading span {
    background-color: #eee;
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 300px;
    bottom: 0;
    position: absolute;
    overflow: hidden;
    &:before {
       position: absolute;
       content: "";
       width: 101%;
       height: 100%;
       background-color: #8dbceb;
       border-radius: inherit;
       animation: app-preloader-anim 3.5s ease both infinite;
    }
}

@keyframes app-preloader-anim {
    0% {
       transform: translateX(0px);
       width: 16px;
    }

    40% {
       transform: translateX(0%);
       width: 80%;
    }

    70% {
       width: 100%;
       transform: translateX(0px);
    }

    90% {
       width: 16px;
        transform: translateX(284px);
    }
    100% {
       transform: translateX(300px);
       width: 16px;
    }
}

.loading-text{
    font-family: Roboto,sans-serif;
    height:20px;
    margin:10px;
    text-align: center;
}