:root {
  --current-progress: 60%;
}

.progress-container {
  /*margin: 100px auto;*/
  width: 100%/*500px*/;
  /*text-align: center;*/
  position: relative;
}

.progress-walking {
  padding-left: var(--current-progress);
  animation: progressAnimationImage 3s;
  position: absolute;
  width: 100%;
  top: -8px;
  z-index: 10;
}

.progress-img {
    width: 60px;
	margin-left: 5px;
}

.counter-text {
  margin-left: -40px;
  padding-left: var(--current-progress);
  max-width: 700px;
  margin: 7px -50px 50px;
  position: relative;
  z-index: 1;
}

.counter-text-animation {
  animation: progressAnimationImage 3s;
}

.counter-text .bottom-text {
  font-size: 14px;
  margin-bottom: 8px;
  display: inline-block;
}

.progress {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0px;
  background: unset;
  border-radius: 6px;
}

.progress-bar {	
  opacity: 0.9;
  height: 100%;
  border-radius: 4px; 
  transition: 0.4s linear;  
  transition-property: width;
  background-color: unset;  
}

.progress-bar-background { 	
  opacity: 0.9;
  background-image: url(../../assets/images/homero-belso-szin.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: 100%;
}


.progress-striped .progress-bar { 	
  width: var(--current-progress); 
  animation: progressAnimationStrike 3s;
}

.progress-background .progress-bar { 	
  width: var(--current-progress); 
  animation: progressAnimationStrike 3s;
}


@keyframes progressAnimationStrike {
     from { width: 0 }
     to   { width: var(--current-progress) }
}

@keyframes progressAnimationImage {
     from { padding-left: 0% }
     to   { padding-left: var(--current-progress) }
}
