.c-header {
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    /*height: 48px;*/
    width: 100%;
    position: relative;
}
.c-header-loader {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.c-slidingLoader {
    position: relative;
    height: 4px;
    width: 100%;
    overflow: hidden;
}
.c-slidingLoader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: loading 1s infinite alternate cubic-bezier(0.77, 0, 0.175, 1);
}
.c-slidingLoader-inner::before {
    content: '';
    display: block;
    background-color: #a9c22b;
    position: relative;
    height: 100%;
    width: 30%;
    transform: translateX(-50%);
}
@keyframes loading {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(100%);
   }
}
