#preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    background-color: #f3f3f3
}

.preloader-inner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center
}

.preloader-inner img {
    display: block;
    margin: 0 auto 5px auto
}

.beat-loader {
    stroke: rgba(7, 204, 236, 1);
    stroke-dasharray: 175;
    stroke-dashoffset: 350;
    -webkit-animation: draw 1.4s linear;
    animation: draw 1.4s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}