.tmc-progress-bar {

	&__wrapper {
		background-color: #dcdcdc;
		border-radius: 5px;
		height: 10px;
		overflow: hidden;
	}

	&__inner {
		animation: progressBarAnimation 2s linear infinite;
		background-color: #74a336;
		background-image: linear-gradient(-45deg, rgba(255, 255, 255, .125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .125) 50%, rgba(255, 255, 255, .125) 75%, transparent 75%, transparent);
		background-size: 35px 35px;
		border-radius: 5px;
		height: 10px;
		position: relative;
		transition: all .5s ease;
		width: 0;
	}

	&__text {
		display: block;
		margin-bottom: 5px;
	}
}
