.infograf {
    display: block;
    max-width: 610px;
    width: 100%;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid red;
}

.infograf, .infograf * {
    font-family: 'Roboto', sans-serif;
}

.infograf p {
    text-align: center;
    margin-bottom: 8px;
}

.infograf .infograf-title {
    color: red;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.infograf .infograf-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #faac9d;
    border-radius: 107px;
    border: 1px solid red;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar:last-child {
    margin-bottom: 0px;
}

.progress-bar .progress-bar-inner {
    position: absolute;
    left: 0px;
    top: -1px;
    width: 10%;
    height: 40px;
    background-color: red;
    border-radius: 107px;
    padding-right: 15px;
    text-align: right;
}

.progress-bar-inner.prog-100.progress-animated {
    -webkit-animation: progressBar100 2s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar100 2s ease-in-out;
    -moz-animation-fill-mode: both;
}

.progress-bar-inner.prog-80.progress-animated {
    -webkit-animation: progressBar80 2s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar80 2s ease-in-out;
    -moz-animation-fill-mode: both;
}

.progress-bar-inner.prog-75.progress-animated {
    -webkit-animation: progressBar75 2s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar75 2s ease-in-out;
    -moz-animation-fill-mode: both;
}

.progress-bar-inner.prog-70.progress-animated {
    -webkit-animation: progressBar70 2s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar70 2s ease-in-out;
    -moz-animation-fill-mode: both;
}

.progress-animated {
    -webkit-animation: progressBar 2s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar 2s ease-in-out;
    -moz-animation-fill-mode: both;
}

.progress-bar .progress-bar-inner span {
    width: 100%;
    color: #fff;
    font-size: 17px;
    line-height: 40px;
    font-weight: 600;
}

@-webkit-keyframes progressBar100 {
    0% {
        width: 10%;
    }
    100% {
        width: 100%;
    }
}

@-moz-keyframes progressBar100 {
    0% {
        width: 10%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes progressBar80 {
    0% {
        width: 10%;
    }
    100% {
        width: 80%;
    }
}

@-moz-keyframes progressBar80 {
    0% {
        width: 10%;
    }
    100% {
        width: 80%;
    }
}

@-webkit-keyframes progressBar75 {
    0% {
        width: 10%;
    }
    100% {
        width: 75%;
    }
}

@-moz-keyframes progressBar75 {
    0% {
        width: 10%;
    }
    100% {
        width: 75%;
    }
}

@-webkit-keyframes progressBar70 {
    0% {
        width: 10%;
    }
    100% {
        width: 70%;
    }
}

@-moz-keyframes progressBar70 {
    0% {
        width: 10%;
    }
    100% {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .infograf {
        padding: 20px 15px;
        margin: 30px auto;
    }

    .infograf .infograf-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .infograf .infograf-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .infograf p {
        margin-bottom: 10px;
    }

    .progress-bar, .progress-bar .progress-bar-inner {
        height: 30px;
    }

    .progress-bar .progress-bar-inner span {
        font-size: 14px;
        line-height: 30px;
    }

}
