.fmecc-progressbar-container {
margin: 20px auto;
width: 100%;
text-align: center;
}
.fmecc-progressor {
text-align: center;
color: #ffffff;
font-size: 12px;
width: 0%;
height: 18px;
line-height: 18px;
transition: width 0.7s;
}
.fmecc-progress {
padding: 3px;
background: rgba(0, 0, 0, 0.25);
border-radius: 6px;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.fmecc-progress-bar {
background-color: #ee303c;
border-radius: 4px;
transition: 0.4s linear;
transition-property: width, background-color;
}
.fmecc-progress-striped .fmecc-progress-bar {
background-color: #3c6e71;
width: 0%;
background-image: linear-gradient(45deg, #353535 25%, transparent 25%, transparent 50%, #353535 50%, #353535 75%, transparent 75%, transparent);
}
@keyframes progressAnimationStrike {
from {
width: 0;
}
to {
width: 100%;
}
}
.fmecc-progress2 {
padding: 3px;
border-radius: 30px;
background: rgba(0, 0, 0, 0.25);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.fmecc-progress-bar2 {
border-radius: 30px;
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
transition: 0.4s linear;
transition-property: width, background-color;
}
.fmecc-progress-moved .fmecc-progress-bar2 {
width: 0%;
background-color: #ef476f;
}
@keyframes progressAnimation {
0% {
width: 0%;
background-color: #f9bcca;
}
100% {
width: 100%;
background-color: #ef476f;
}
}
.fmecc-progress-bar3 {
border-radius: 4px;
background-image: linear-gradient(to right, #355070, #6d597a, #b56576, #e56b6f, #eaac8b, #ff2d55);
transition: 0.4s linear;
transition-property: width, background-color;
}
.fmecc-progress-infinite .fmecc-progress-bar3 {
width: 0%;
background-image: linear-gradient(to right, #355070, #6d597a, #b56576, #e56b6f, #eaac8b, #ff2d55);
animation: colorAnimation 1s infinite;
}
@keyframes colorAnimation {
0% {
background-image: linear-gradient(to right, #355070, #6d597a, #b56576, #e56b6f, #eaac8b, #ff2d55);
}
20% {
background-image: linear-gradient(to right, #6d597a, #b56576, #e56b6f, #eaac8b, #ff2d55, #355070);
}
40% {
background-image: linear-gradient(to right, #b56576, #e56b6f, #eaac8b, #ff2d55, #355070, #6d597a);
}
60% {
background-image: linear-gradient(to right, #e56b6f, #eaac8b, #ff2d55, #355070, #6d597a, #b56576);
}
100% {
background-image: linear-gradient(to right, #eaac8b, #ff2d55, #355070, #6d597a, #b56576, #e56b6f);
}
}