.loading {
    width: 100%;
	height:100%;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgb(255, 255, 255);
    font-family: monospace;
}

.loading .logo {
    height: 200px;
    width: 100%;
    top: 40%;
    text-align: center;
    position: absolute;
    background: url('images/logo.png') no-repeat fixed center;
}

.loading .progress {
    width: 60%;
    height: 10px;
    top: 62%;
    left: 20%;
    padding: 1px;
    position: absolute;
    display: table;
    background: rgb(51, 83, 198);
}

.loading .message {
    width: 100%;
    top: 63%;
    text-align: center;
    position: absolute;
    color: rgb(51, 83, 198);
}

.loading .progress-bar {
    background: rgb(255, 255, 255);
}

.loading .progress-value {
    max-width: 100%;
    height: 10px;
    outline: rgb(255, 255, 255) 1px solid;
    background: rgb(51, 83, 198);
}

.loading-done {
    opacity: 0;
    transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.loading .animate {
    display: block;
    height: 100%;
    background-size: 12px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(50%, rgba(255, 255, 255, 0.1)), color-stop(50%, rgba(255, 255, 255, 0)));
    animation: progress 2s linear infinite;
    -o-animation: progress 2s linear infinite;
    -ms-animation: progress 2s linear infinite;
    -moz-animation: progress 2s linear infinite;
    -webkit-animation: progress 2s linear infinite;
}

@keyframes progress {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

@-o-keyframes progress {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

@-ms-keyframes progress {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

@-moz-keyframes progress {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

@-webkit-keyframes progress {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}