
body {
    font-family: sans-serif;
    padding: 10px;
}

h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-left: 10px;
    font-weight: bold;
    unicode-bidi: isolate;
    background :  #00D7D7 ;
}

.loader {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
    margin-left: 50px;
    width: 100%;
    min-height: 100%;
    z_text-align: center;
    text-align: left;
}

.loader * {
    animation-play-state: paused
}

.loader:hover {
    opacity: 0.5 ;
}

.loader:hover * {
    animation-play-state: running
}

.loading-bars {
    text-align: center;
    text-align: left;
}

.loading-bars .bar {
    display: inline-block;
    display: block;
    z_margin-right: 2px;
    margin-left: 60px;
    margin-top: 5px;
    height: 30px;
    width: 30px;
    animation: loader 3s infinite ease-out;
    background: #fff
}

.loading-bars .bar:nth-of-type(0n+1) {
    align-content:left;
    animation-delay: 0s;
    background: #0078c7
}

.loading-bars .bar:nth-of-type(0n+2) {
    animation-delay: .1s;
    background: #c7143d
}

.loading-bars .bar:nth-of-type(0n+3) {
    animation-delay: .2s;
    background: #f9c300
}

.loading-bars .bar:nth-of-type(0n+4) {
    animation-delay: .3s;
    background: #33b533
}

.loading-bars .bar:nth-of-type(0n+5) {
    animation-delay: .4s;
    background: #000
}


@keyframes loader {
    0% {
        translate: 0%;
        transform: scale(1);
    }
    40% {
        translate: 250%;
        transform: scale(6.0, 1);
    }
    70% {
        translate: 500%;
        transform: scale(1.0, 1);
    }
}
