﻿.dtkprogress-bar {
    -webkit-animation: dtkprogress-bar-stripes 2s linear infinite;
    -o-animation: dtkprogress-bar-stripes 2s linear infinite;
    animation: dtkprogress-bar-stripes 2s linear infinite;
    background-color: #4a4a4a; /* Dark gray base color */
    box-shadow: none;
    height: 15px;
    margin-top: 1px;
    margin-bottom: 10px;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    border-radius: 25px;
    width: 95%;
    max-width: 180px;
}

@-webkit-keyframes dtkprogress-bar-stripes {
    from {
        background-position: 60px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes dtkprogress-bar-stripes {
    from {
        background-position: 60px 0;
    }

    to {
        background-position: 0 0;
    }
}
