@-webkit-keyframes fm-loader {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1); }
    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4); }
    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1); } }
@keyframes fm-loader {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1); }
    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4); }
    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1); } }

.fm-loader > div:nth-child(1) {
    -webkit-animation: fm-loader 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: fm-loader 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.fm-loader > div:nth-child(2) {
    -webkit-animation: fm-loader 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: fm-loader 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.fm-loader > div:nth-child(3) {
    -webkit-animation: fm-loader 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: fm-loader 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.fm-loader > div:nth-child(4) {
    -webkit-animation: fm-loader 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: fm-loader 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.fm-loader > div:nth-child(5) {
    -webkit-animation: fm-loader 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: fm-loader 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.fm-loader > div {
    background-color: gray;
    width: 5px;
    height: 40px;
    border-radius: 2px;
    margin: 1px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block; }

.fm-loader.color-primary > div {
    background-color: #2196F3;
}

.page-loader {
    width: 100%;
    height: 40px;

    text-align: center;

    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;
}

.fade-out {
    opacity: 0.01;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.fade-in {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.fm-loader-cover {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1999;
    background-color: white;
}