#download-loader-popin
{
    width: 100%;
    max-width: 450px;
}

h2
{
    font-size:26px;
    margin-bottom: 30px;
}

.fake-loader-container {
    background: #ccc;
    height: 20px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    line-height: 20px;
}

.fake-loader-progress-bar {
    width: 0%;
    height: 100%;
    background: #2175d9;
    position: absolute;
}

.fake-loader-progress-indicator {
    width: 100%;
    height: 100%;
    padding-top: 1px;
    text-align: center;
    position: absolute;
    color: #fff;
}

@keyframes animatedBackground {
    from { background-position: 0 0; }
    to { background-position: -2000px 0; }
}