| 1 |
.rt-progress-bar .progress-top { |
| 2 |
display: flex; |
| 3 |
align-items: center; |
| 4 |
justify-content: space-between; |
| 5 |
} |
| 6 |
.rt-progress-bar .progress-top .title { |
| 7 |
color: var(--e-global-color-primary); |
| 8 |
font-weight: 500; |
| 9 |
margin-bottom: 15px; |
| 10 |
} |
| 11 |
.rt-progress-bar .progress-top .percent { |
| 12 |
color: var(--e-global-color-primary); |
| 13 |
font-weight: 500; |
| 14 |
} |
| 15 |
.rt-progress-bar .progress { |
| 16 |
height: 8px; |
| 17 |
background: #f2f2f2; |
| 18 |
overflow: hidden; |
| 19 |
} |
| 20 |
.rt-progress-bar .progress .progress-bar { |
| 21 |
width: 0%; |
| 22 |
height: 100%; |
| 23 |
background: var(--e-global-color-primary); |
| 24 |
transition: width 1.5s ease; |
| 25 |
} |
| 26 |
|
| 27 |
.progress-style2 { |
| 28 |
position: relative; |
| 29 |
} |
| 30 |
.progress-style2 .title { |
| 31 |
position: absolute; |
| 32 |
margin: 0; |
| 33 |
top: 50%; |
| 34 |
transform: translateY(-50%); |
| 35 |
left: 30px; |
| 36 |
font-size: 16px; |
| 37 |
text-transform: uppercase; |
| 38 |
font-weight: 700; |
| 39 |
line-height: 1; |
| 40 |
color: var(--e-global-color-secondary); |
| 41 |
} |
| 42 |
.progress-style2 .progress { |
| 43 |
height: 40px; |
| 44 |
background: linear-gradient(90deg, rgba(32, 40, 45, 0.1607843137) 0%, rgba(242, 242, 242, 0.0196078431) 100%); |
| 45 |
opacity: 1; |
| 46 |
border-radius: 40px; |
| 47 |
background-color: transparent; |
| 48 |
} |
| 49 |
.progress-style2 .progress span { |
| 50 |
position: absolute; |
| 51 |
right: 25px; |
| 52 |
top: 50%; |
| 53 |
transform: translateY(-50%); |
| 54 |
font-size: 16px; |
| 55 |
color: var(--e-global-color-secondary); |
| 56 |
font-weight: 700; |
| 57 |
} |
| 58 |
.progress-style2 .progress .progress-bar { |
| 59 |
background-color: transparent; |
| 60 |
} |